methodwebscan 0.0.206__py3-none-any.whl → 0.0.207__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.
@@ -38,6 +38,11 @@ from .resources import (
38
38
  SaasFingerprintEntry,
39
39
  SaasFingerprintFile,
40
40
  SaasFingerprintProfile,
41
+ SensitiveContent,
42
+ SensitiveContentConfidenceLevel,
43
+ SensitiveContentFingerprint,
44
+ SensitiveContentFingerprints,
45
+ SensitiveContentType,
41
46
  WordlistSize,
42
47
  WordlistType,
43
48
  application,
@@ -84,6 +89,11 @@ __all__ = [
84
89
  "SaasFingerprintEntry",
85
90
  "SaasFingerprintFile",
86
91
  "SaasFingerprintProfile",
92
+ "SensitiveContent",
93
+ "SensitiveContentConfidenceLevel",
94
+ "SensitiveContentFingerprint",
95
+ "SensitiveContentFingerprints",
96
+ "SensitiveContentType",
87
97
  "WordlistSize",
88
98
  "WordlistType",
89
99
  "application",
@@ -22,7 +22,16 @@ from .directory import (
22
22
  WordlistSize,
23
23
  WordlistType,
24
24
  )
25
- from .page import DiscoverPageConfig, DiscoverPageReport, DiscoverPageResult
25
+ from .page import (
26
+ DiscoverPageConfig,
27
+ DiscoverPageReport,
28
+ DiscoverPageResult,
29
+ SensitiveContent,
30
+ SensitiveContentConfidenceLevel,
31
+ SensitiveContentFingerprint,
32
+ SensitiveContentFingerprints,
33
+ SensitiveContentType,
34
+ )
26
35
  from .probe import DiscoverProbeConfig, DiscoverProbeReport, DiscoverProbeResult
27
36
  from .route import (
28
37
  DiscoverRouteConfig,
@@ -81,6 +90,11 @@ __all__ = [
81
90
  "SaasFingerprintEntry",
82
91
  "SaasFingerprintFile",
83
92
  "SaasFingerprintProfile",
93
+ "SensitiveContent",
94
+ "SensitiveContentConfidenceLevel",
95
+ "SensitiveContentFingerprint",
96
+ "SensitiveContentFingerprints",
97
+ "SensitiveContentType",
84
98
  "WordlistSize",
85
99
  "WordlistType",
86
100
  "application",
@@ -5,5 +5,19 @@
5
5
  from .discover_page_config import DiscoverPageConfig
6
6
  from .discover_page_report import DiscoverPageReport
7
7
  from .discover_page_result import DiscoverPageResult
8
+ from .sensitive_content import SensitiveContent
9
+ from .sensitive_content_confidence_level import SensitiveContentConfidenceLevel
10
+ from .sensitive_content_fingerprint import SensitiveContentFingerprint
11
+ from .sensitive_content_fingerprints import SensitiveContentFingerprints
12
+ from .sensitive_content_type import SensitiveContentType
8
13
 
9
- __all__ = ["DiscoverPageConfig", "DiscoverPageReport", "DiscoverPageResult"]
14
+ __all__ = [
15
+ "DiscoverPageConfig",
16
+ "DiscoverPageReport",
17
+ "DiscoverPageResult",
18
+ "SensitiveContent",
19
+ "SensitiveContentConfidenceLevel",
20
+ "SensitiveContentFingerprint",
21
+ "SensitiveContentFingerprints",
22
+ "SensitiveContentType",
23
+ ]
@@ -11,6 +11,10 @@ from ....common.resources.method.request_method import RequestMethod
11
11
 
12
12
  class DiscoverPageConfig(UniversalBaseModel):
13
13
  target: str
14
+ sensitive_content_detection: bool = pydantic.Field(alias="sensitiveContentDetection")
15
+ sensitive_content_fingerprints_path: typing.Optional[str] = pydantic.Field(
16
+ alias="sensitiveContentFingerprintsPath", default=None
17
+ )
14
18
  response_codes: str = pydantic.Field(alias="responseCodes")
15
19
  screenshot: bool
16
20
  max_redirects: int = pydantic.Field(alias="maxRedirects")
@@ -5,11 +5,15 @@ import typing
5
5
  import pydantic
6
6
  from .....core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
7
7
  from ....common.resources.http.http_request_response import HttpRequestResponse
8
+ from .sensitive_content import SensitiveContent
8
9
 
9
10
 
10
11
  class DiscoverPageResult(UniversalBaseModel):
11
12
  request: typing.Optional[HttpRequestResponse] = None
12
13
  screenshot: typing.Optional[str] = None
14
+ sensitive_contents: typing.Optional[typing.List[SensitiveContent]] = pydantic.Field(
15
+ alias="sensitiveContents", default=None
16
+ )
13
17
 
14
18
  if IS_PYDANTIC_V2:
15
19
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
@@ -0,0 +1,19 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ import pydantic
6
+ from .....core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
7
+ from .sensitive_content_fingerprint import SensitiveContentFingerprint
8
+
9
+
10
+ class SensitiveContent(UniversalBaseModel):
11
+ value: str
12
+ fingerprint: SensitiveContentFingerprint
13
+
14
+ if IS_PYDANTIC_V2:
15
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
16
+ else:
17
+
18
+ class Config:
19
+ extra = pydantic.Extra.allow
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ SensitiveContentConfidenceLevel = typing.Union[typing.Literal["HIGH", "MEDIUM", "LOW"], typing.Any]
@@ -0,0 +1,22 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ import pydantic
6
+ from .....core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
7
+ from .sensitive_content_confidence_level import SensitiveContentConfidenceLevel
8
+ from .sensitive_content_type import SensitiveContentType
9
+
10
+
11
+ class SensitiveContentFingerprint(UniversalBaseModel):
12
+ name: str
13
+ type: SensitiveContentType
14
+ pattern: str
15
+ confidence: SensitiveContentConfidenceLevel
16
+
17
+ if IS_PYDANTIC_V2:
18
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
19
+ else:
20
+
21
+ class Config:
22
+ extra = pydantic.Extra.allow
@@ -0,0 +1,18 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ import pydantic
6
+ from .....core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
7
+ from .sensitive_content_fingerprint import SensitiveContentFingerprint
8
+
9
+
10
+ class SensitiveContentFingerprints(UniversalBaseModel):
11
+ fingerprints: typing.List[SensitiveContentFingerprint]
12
+
13
+ if IS_PYDANTIC_V2:
14
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
15
+ else:
16
+
17
+ class Config:
18
+ extra = pydantic.Extra.allow
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ SensitiveContentType = typing.Union[typing.Literal["CREDENTIAL", "PII_DATA"], typing.Any]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: methodwebscan
3
- Version: 0.0.206
3
+ Version: 0.0.207
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -50,8 +50,8 @@ methodwebscan/resources/common/resources/nuclei/resources/report/cwe_details.py,
50
50
  methodwebscan/resources/common/resources/nuclei/resources/report/nuclei_attempt_info.py,sha256=U4xhW25QbyicygJyW5DfAQNPyD_oR9TR5j0lNil5iF4,765
51
51
  methodwebscan/resources/common/resources/nuclei/resources/report/nuclei_finding_info.py,sha256=JlVd57qujL9WZ1Ny_DqJd-7tLQYk6CEnn-cOUTYnMaM,1106
52
52
  methodwebscan/resources/common/resources/nuclei/resources/report/nuclei_target_info.py,sha256=WjZydFAFX4NBsaEh3aJpySLiFW_kJ4BFBcAE5laIcgw,693
53
- methodwebscan/resources/discover/__init__.py,sha256=cZz21-QvqYfBAVa8vwiqg-dx7NVqqbZzrpJCCtktxJU,2283
54
- methodwebscan/resources/discover/resources/__init__.py,sha256=xt8C2MnYeQPJKdfsTaD-gT5ZiFyZMIXTx8YazfR5F9U,2357
53
+ methodwebscan/resources/discover/__init__.py,sha256=UUHI4e8nI_I6PwNAK8JB8QH2AXJ4nPYDMtx0mVhsmXc,2597
54
+ methodwebscan/resources/discover/resources/__init__.py,sha256=U3fYsEfKYRK0tWbwib0dmsMBUlwTwIeNHO38-8tTjNQ,2688
55
55
  methodwebscan/resources/discover/resources/application/__init__.py,sha256=HQBqH3GD3Hgh7kGZGzTVXENkgATUZKdI4WfH53Xvbng,1032
56
56
  methodwebscan/resources/discover/resources/application/application_detection_state.py,sha256=mAa9q4AzRCVV6cga9W7I3GOfv7Tj_K9wvnouobHXjuU,286
57
57
  methodwebscan/resources/discover/resources/application/application_fingerprint_attempt.py,sha256=bywgEO_ksWGG27ROAhbld03wKS4N776ADQjWPpTUzNE,1057
@@ -69,10 +69,15 @@ methodwebscan/resources/discover/resources/directory/discover_directory_report.p
69
69
  methodwebscan/resources/discover/resources/directory/discover_directory_result.py,sha256=VhfL1zGq9EhAs6iVg60VdPaBIZsOk-UYqOpOMY-ctv8,574
70
70
  methodwebscan/resources/discover/resources/directory/wordlist_size.py,sha256=I02I13L4ZXj1ZQ2qxLi3mGrjXjarIHikSN3boy_ADOE,172
71
71
  methodwebscan/resources/discover/resources/directory/wordlist_type.py,sha256=WeZ01UIG4Dvm85Y0DbRzf-iCfwqmS-WC_bRhk_l92PU,160
72
- methodwebscan/resources/discover/resources/page/__init__.py,sha256=TJd5VVdKXY0fEKIsXNv_65fjUNQynBLsrQi0utkmwo0,322
73
- methodwebscan/resources/discover/resources/page/discover_page_config.py,sha256=gQnVpcqO51GV02KE0ScrWhcSFSUfRd-RfQtOH4W5VLE,1255
72
+ methodwebscan/resources/discover/resources/page/__init__.py,sha256=ejKJfTs7HsnZhkp2nNq1IHV9kjcDxrRuoxcYGoRzyIo,828
73
+ methodwebscan/resources/discover/resources/page/discover_page_config.py,sha256=MOueUW5RMIVw-v9D2g-oJN7vXzcSlnUaj-2klTOjB0s,1494
74
74
  methodwebscan/resources/discover/resources/page/discover_page_report.py,sha256=5TEUBUQRRvo8jd3lXqchqe3ZzYMaCuBv2jVQgTbZ_FQ,665
75
- methodwebscan/resources/discover/resources/page/discover_page_result.py,sha256=sMFOpPOhNsdyafyhbm2hFetY8naEJFNgcacmQmT4k0Y,625
75
+ methodwebscan/resources/discover/resources/page/discover_page_result.py,sha256=c0pIpK8YTpLM9GJaWl54m9bNIHM7NlcHXe2ZCnu3K9Q,816
76
+ methodwebscan/resources/discover/resources/page/sensitive_content.py,sha256=hUNTPd3WUocGjNcxTaBe6k6_iAhX_6AhZctvSBoGuws,573
77
+ methodwebscan/resources/discover/resources/page/sensitive_content_confidence_level.py,sha256=71LokLJ2gV23R4oaFhN1T0O1V2VleHoN3LhsUOFRa6w,180
78
+ methodwebscan/resources/discover/resources/page/sensitive_content_fingerprint.py,sha256=WTghSdxcpITtePxj5xYUBy1-EoPqeMLKQhKJlfigr5E,700
79
+ methodwebscan/resources/discover/resources/page/sensitive_content_fingerprints.py,sha256=wxpzjgTANhnfwz0z8ddKNBkeb2os4MscMNcUw8-Vbtw,584
80
+ methodwebscan/resources/discover/resources/page/sensitive_content_type.py,sha256=TI6g_pudX_HyayV_BjKQJtWsl7zTK8D6rvaWAIxsu_o,170
76
81
  methodwebscan/resources/discover/resources/probe/__init__.py,sha256=7NHDdtP9_Gwm7FgXeoo50GtFGhgaGKXt-Gk04j1fijQ,331
77
82
  methodwebscan/resources/discover/resources/probe/discover_probe_config.py,sha256=GhGryy-Kw1lfNuqTkGdZn8i6rHBgKziy3N7Sk9QoEFc,1298
78
83
  methodwebscan/resources/discover/resources/probe/discover_probe_report.py,sha256=ras_SVXUN5PnD2CuzN68pOkR1Mv2ON7O8j1tyOW32JI,672
@@ -209,6 +214,6 @@ methodwebscan/resources/pentest/resources/waf/resources/detect/waf_detected.py,s
209
214
  methodwebscan/resources/pentest/resources/waf/resources/detect/waf_fingerprint.py,sha256=hxSP1xMBAqopraMJRjGUh0Gzx5h-fyR8kBRGvIyQAfc,698
210
215
  methodwebscan/resources/pentest/resources/waf/resources/detect/waf_provider_enum.py,sha256=n7k5KYNOOMUo2mG3cemiSyiyZ6D2s3mh-F7N-61Kl7M,247
211
216
  methodwebscan/resources/pentest/resources/waf/resources/detect/waf_rule_category_enum.py,sha256=RzZQd-XUtV6wpDmUCTiSwKLLVnSxTtyrAlnZwYq7DjU,166
212
- methodwebscan-0.0.206.dist-info/METADATA,sha256=kbPJKihu011l56enJ0ajmPWhWpw-cTUiYZfRAa1NDfg,976
213
- methodwebscan-0.0.206.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
214
- methodwebscan-0.0.206.dist-info/RECORD,,
217
+ methodwebscan-0.0.207.dist-info/METADATA,sha256=bRjtxtFb9kN1cQ-zVUh3XxsJ45H_DioQzQ4Lj-SGWvE,976
218
+ methodwebscan-0.0.207.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
219
+ methodwebscan-0.0.207.dist-info/RECORD,,