methodwebscan 0.0.156__py3-none-any.whl → 0.0.158__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,6 +10,7 @@ import pydantic
10
10
 
11
11
  class SaasActiveRequest(UniversalBaseModel):
12
12
  request: HttpRequestResponse
13
+ screenshot: typing.Optional[str] = None
13
14
  findings: typing.Optional[SaasActiveFinding] = None
14
15
 
15
16
  if IS_PYDANTIC_V2:
@@ -11,6 +11,7 @@ class PentestRouteStaticAssetTakeoverConfig(UniversalBaseModel):
11
11
  route_capture_config: DiscoverRouteConfig = pydantic.Field(alias="routeCaptureConfig")
12
12
  successful_only: bool = pydantic.Field(alias="successfulOnly")
13
13
  fingerprint_file_paths: typing.List[str] = pydantic.Field(alias="fingerprintFilePaths")
14
+ detect_404_responses: bool = pydantic.Field(alias="detect404Responses")
14
15
 
15
16
  if IS_PYDANTIC_V2:
16
17
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
@@ -9,7 +9,7 @@ from .......core.pydantic_utilities import IS_PYDANTIC_V2
9
9
  class StaticAssetTakeoverFingerprint(UniversalBaseModel):
10
10
  name: str
11
11
  description: str
12
- response_body: typing.List[str] = pydantic.Field(alias="responseBody")
12
+ response_body: typing.Optional[typing.List[str]] = pydantic.Field(alias="responseBody", default=None)
13
13
  status_code: int = pydantic.Field(alias="statusCode")
14
14
 
15
15
  if IS_PYDANTIC_V2:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: methodwebscan
3
- Version: 0.0.156
3
+ Version: 0.0.158
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -92,7 +92,7 @@ methodwebscan/resources/discover/resources/saas/discover_saas_result.py,sha256=A
92
92
  methodwebscan/resources/discover/resources/saas/saas_active_attempt.py,sha256=llHx2D_qhw6Otxv2DbUILSsJ20zWTMTB1bN5_Bhh8yE,592
93
93
  methodwebscan/resources/discover/resources/saas/saas_active_company.py,sha256=37-HC0TaP7mG4Tw-VhSw0B_NiWpE2JoDMewBWy8EiiA,619
94
94
  methodwebscan/resources/discover/resources/saas/saas_active_finding.py,sha256=_kL4lanRVHude3eMSNNoE5ddtOy9IYvSyhijFqjSqOE,657
95
- methodwebscan/resources/discover/resources/saas/saas_active_request.py,sha256=2U7eLkLEFzd2apEeLTj9S4pHylKLm2MhteLYnvHs8qA,702
95
+ methodwebscan/resources/discover/resources/saas/saas_active_request.py,sha256=2mXUPFL40DPeQP_2wGnk1D8EsOViwTZjxmvz0lLUXts,746
96
96
  methodwebscan/resources/discover/resources/saas/saas_fingerprint_entry.py,sha256=Jj-hhIF-zXNYVADC-5h5Picmc9Jo_eDmVzWlUdDI4_8,743
97
97
  methodwebscan/resources/discover/resources/saas/saas_fingerprint_file.py,sha256=c9G835b2QTucR0WBMHsJVWS1sc7qlnWHBmA5dRkbYpU,598
98
98
  methodwebscan/resources/discover/resources/saas/saas_fingerprint_profile.py,sha256=GE5vEJTO3FEDhwegciRI_IB6PvoXaRhojzic-2hmUls,734
@@ -189,10 +189,10 @@ methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlr
189
189
  methodwebscan/resources/pentest/resources/route/__init__.py,sha256=1FWb4aWnyQeI6jGJs171o72FX3DJSo3Xuc_AXEBrArY,721
190
190
  methodwebscan/resources/pentest/resources/route/resources/__init__.py,sha256=yxXj5sjKGmOvrm0gIQPQ3zNOWNCtKKxxNErwQvCSqvc,740
191
191
  methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/__init__.py,sha256=SlqZiSI2Rq54nvTGKpPszDEqHlYGNpihZIpWuzxf3sQ,966
192
- methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/pentest_route_static_asset_takeover_config.py,sha256=pxukS6TV7ImCmfInR09RMF27bDjnitVjRpYZjvDoixA,841
192
+ methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/pentest_route_static_asset_takeover_config.py,sha256=XjYw7hOUTxV_ozUYlQTGNQNe6w48J0IZ6riM9hBlnu0,917
193
193
  methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/pentest_route_static_asset_takeover_report.py,sha256=roaB3fa3W3SIRGn5HeR6FMiD312Tnc1PXq4r6esNdXI,847
194
194
  methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/pentest_route_static_asset_takeover_result.py,sha256=WRqwerch4xKeGMeP0-oH-2cTXa7-6rCepPd-zqQdwd0,628
195
- methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/static_asset_takeover_fingerprint.py,sha256=LitJanGNuMR5MUHRdRJbcm-YNCB-K0L25O5Shg9mI0I,667
195
+ methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/static_asset_takeover_fingerprint.py,sha256=zGH8_63qSVdelF9RDgQ5JhpLJxE3AnInYOjmhIOdUqA,698
196
196
  methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/static_asset_takeover_static_request.py,sha256=XuKspoZTFgXZK1rX7O9YgWfL1aeGF-oH53YohdowDPs,917
197
197
  methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/static_asset_takeover_test.py,sha256=y_RDH7q6R6w2JBV-Ec8QSj1AGkI2X0D-feWJ64W2TWc,933
198
198
  methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/static_asset_takeover_vulnerable_details.py,sha256=Ut6OUZi_d1P4VPpONg1up7cBKk_TWveph-ck2fZ0Ass,676
@@ -209,6 +209,6 @@ methodwebscan/resources/pentest/resources/waf/resources/detect/waf_detected.py,s
209
209
  methodwebscan/resources/pentest/resources/waf/resources/detect/waf_fingerprint.py,sha256=498nk-i5CG9-rcfoZTgV5wbTOKCSRiWhhLqgh2m_Ouk,739
210
210
  methodwebscan/resources/pentest/resources/waf/resources/detect/waf_provider_enum.py,sha256=n7k5KYNOOMUo2mG3cemiSyiyZ6D2s3mh-F7N-61Kl7M,247
211
211
  methodwebscan/resources/pentest/resources/waf/resources/detect/waf_rule_category_enum.py,sha256=RzZQd-XUtV6wpDmUCTiSwKLLVnSxTtyrAlnZwYq7DjU,166
212
- methodwebscan-0.0.156.dist-info/METADATA,sha256=xJ2lLnhYPMqa-TjwG7fG-o3XSQlh5WQz59D7P94DoSY,932
213
- methodwebscan-0.0.156.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
214
- methodwebscan-0.0.156.dist-info/RECORD,,
212
+ methodwebscan-0.0.158.dist-info/METADATA,sha256=WCqa7e9KecbvtJgKdGFKXCg_OcjD7ppFG469GThL36A,932
213
+ methodwebscan-0.0.158.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
214
+ methodwebscan-0.0.158.dist-info/RECORD,,