methodwebscan 0.0.166__py3-none-any.whl → 0.0.167__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.
- methodwebscan/resources/common/resources/nuclei/resources/config/nuclei_config.py +1 -0
- methodwebscan/resources/discover/resources/application/discover_application_config.py +1 -0
- methodwebscan/resources/pentest/resources/application/resources/dast/pentest_application_dast_config.py +1 -0
- methodwebscan/resources/pentest/resources/application/resources/scan/resources/cve/pentest_application_cve_config.py +1 -0
- methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/pentest_application_misconfiguration_config.py +1 -0
- methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/pentest_application_technology_config.py +1 -0
- methodwebscan/resources/pentest/resources/waf/resources/detect/pentest_waf_detect_config.py +1 -0
- {methodwebscan-0.0.166.dist-info → methodwebscan-0.0.167.dist-info}/METADATA +1 -1
- {methodwebscan-0.0.166.dist-info → methodwebscan-0.0.167.dist-info}/RECORD +10 -10
- {methodwebscan-0.0.166.dist-info → methodwebscan-0.0.167.dist-info}/WHEEL +0 -0
|
@@ -18,6 +18,7 @@ class NucleiConfig(UniversalBaseModel):
|
|
|
18
18
|
threads: int
|
|
19
19
|
proxy: typing.Optional[str] = None
|
|
20
20
|
verbose_logs: bool = pydantic.Field(alias="verboseLogs")
|
|
21
|
+
global_rate_limit: int = pydantic.Field(alias="globalRateLimit")
|
|
21
22
|
|
|
22
23
|
if IS_PYDANTIC_V2:
|
|
23
24
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
@@ -14,6 +14,7 @@ class DiscoverApplicationConfig(UniversalBaseModel):
|
|
|
14
14
|
threads: int
|
|
15
15
|
proxy: typing.Optional[str] = None
|
|
16
16
|
verbose_logs: bool = pydantic.Field(alias="verboseLogs")
|
|
17
|
+
global_rate_limit: int = pydantic.Field(alias="globalRateLimit")
|
|
17
18
|
|
|
18
19
|
if IS_PYDANTIC_V2:
|
|
19
20
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
@@ -22,6 +22,7 @@ class PentestApplicationDastConfig(UniversalBaseModel):
|
|
|
22
22
|
threads: int
|
|
23
23
|
proxy: typing.Optional[str] = None
|
|
24
24
|
verbose_logs: bool = pydantic.Field(alias="verboseLogs")
|
|
25
|
+
global_rate_limit: int = pydantic.Field(alias="globalRateLimit")
|
|
25
26
|
|
|
26
27
|
if IS_PYDANTIC_V2:
|
|
27
28
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
@@ -13,6 +13,7 @@ class PentestApplicationCveConfig(UniversalBaseModel):
|
|
|
13
13
|
threads: int
|
|
14
14
|
proxy: typing.Optional[str] = None
|
|
15
15
|
verbose_logs: bool = pydantic.Field(alias="verboseLogs")
|
|
16
|
+
global_rate_limit: int = pydantic.Field(alias="globalRateLimit")
|
|
16
17
|
|
|
17
18
|
if IS_PYDANTIC_V2:
|
|
18
19
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
@@ -16,6 +16,7 @@ class PentestApplicationMisconfigurationConfig(UniversalBaseModel):
|
|
|
16
16
|
threads: int
|
|
17
17
|
proxy: typing.Optional[str] = None
|
|
18
18
|
verbose_logs: bool = pydantic.Field(alias="verboseLogs")
|
|
19
|
+
global_rate_limit: int = pydantic.Field(alias="globalRateLimit")
|
|
19
20
|
|
|
20
21
|
if IS_PYDANTIC_V2:
|
|
21
22
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
@@ -16,6 +16,7 @@ class PentestApplicationTechnologyConfig(UniversalBaseModel):
|
|
|
16
16
|
threads: int
|
|
17
17
|
proxy: typing.Optional[str] = None
|
|
18
18
|
verbose_logs: bool = pydantic.Field(alias="verboseLogs")
|
|
19
|
+
global_rate_limit: int = pydantic.Field(alias="globalRateLimit")
|
|
19
20
|
|
|
20
21
|
if IS_PYDANTIC_V2:
|
|
21
22
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
@@ -18,6 +18,7 @@ class PentestWafDetectConfig(UniversalBaseModel):
|
|
|
18
18
|
threads: int
|
|
19
19
|
proxy: typing.Optional[str] = None
|
|
20
20
|
verbose_logs: bool = pydantic.Field(alias="verboseLogs")
|
|
21
|
+
global_rate_limit: int = pydantic.Field(alias="globalRateLimit")
|
|
21
22
|
|
|
22
23
|
if IS_PYDANTIC_V2:
|
|
23
24
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
|
|
@@ -31,7 +31,7 @@ methodwebscan/resources/common/resources/method/request_method.py,sha256=MTCORMJ
|
|
|
31
31
|
methodwebscan/resources/common/resources/nuclei/__init__.py,sha256=6AoyVbmSaPG9_S5G-a_EtnQzZz8zDk_rQ_fhGLTXB6E,945
|
|
32
32
|
methodwebscan/resources/common/resources/nuclei/resources/__init__.py,sha256=szU_IySPUpyz0Uh09IeQxysttb2O5vAyG8qZFf4rWO8,962
|
|
33
33
|
methodwebscan/resources/common/resources/nuclei/resources/config/__init__.py,sha256=RMbE3S5SpujGNmk50kV1SfQ3zoqRzbpfxO6xP_lAByA,282
|
|
34
|
-
methodwebscan/resources/common/resources/nuclei/resources/config/nuclei_config.py,sha256=
|
|
34
|
+
methodwebscan/resources/common/resources/nuclei/resources/config/nuclei_config.py,sha256=1nbtFBiS2WX6rhslloMmXkJar6FFIqV4pAItxEjiir4,1094
|
|
35
35
|
methodwebscan/resources/common/resources/nuclei/resources/config/nuclei_dast_config.py,sha256=jdkkfihVlaiAiWIjJTB5kIUHal-8iV_aRCKw349IYRU,801
|
|
36
36
|
methodwebscan/resources/common/resources/nuclei/resources/config/nuclei_run_mode.py,sha256=5mSNdExCb8EjXD4atw_iviZcSDrbAjvbd4Ee8oycZmk,153
|
|
37
37
|
methodwebscan/resources/common/resources/nuclei/resources/parameter/__init__.py,sha256=ezzED7O32JwtzJMQ59BRt2-4hRHMeMA-jdKLKbmKIVw,258
|
|
@@ -57,7 +57,7 @@ methodwebscan/resources/discover/resources/application/application_fingerprint_t
|
|
|
57
57
|
methodwebscan/resources/discover/resources/application/application_resource_config_type.py,sha256=sM-yH6FI3LshPC7BLOsFjSNU-DHMPzVem9Ou3fXmxaA,312
|
|
58
58
|
methodwebscan/resources/discover/resources/application/application_resource_type.py,sha256=ao1tPKKGq4vaM49MGJIRJGc2EV1QoY_gXJrX6fULLyA,393
|
|
59
59
|
methodwebscan/resources/discover/resources/application/application_resource_type_all.py,sha256=sRkPbetUqtIxZGqZGyo0tn0-uj2-RNhe3NL6K5GHVtQ,157
|
|
60
|
-
methodwebscan/resources/discover/resources/application/discover_application_config.py,sha256=
|
|
60
|
+
methodwebscan/resources/discover/resources/application/discover_application_config.py,sha256=oYVpWfCsUgYf_bpvbS58LrwdzzWr5aHc6EntrK29AgM,848
|
|
61
61
|
methodwebscan/resources/discover/resources/application/discover_application_report.py,sha256=hipET0fbcMlYOO0crjSei6a1y1qfSeev5lPBqoHxrRQ,714
|
|
62
62
|
methodwebscan/resources/discover/resources/application/discover_application_result.py,sha256=vUhDnX8HBIJzNSik080aQdiK68M1jgyFXt5tVR8FM00,603
|
|
63
63
|
methodwebscan/resources/discover/resources/directory/__init__.py,sha256=QAf6WeSXv7qriVaCiJD-QEVt2OhM9WRZhBXZ8p53hb0,584
|
|
@@ -155,22 +155,22 @@ methodwebscan/resources/pentest/resources/application/__init__.py,sha256=tncXrqZ
|
|
|
155
155
|
methodwebscan/resources/pentest/resources/application/resources/__init__.py,sha256=qLcbuLjjfARuhjOG5CTCX2CdfDV6ov7c2_b0LXroUZM,455
|
|
156
156
|
methodwebscan/resources/pentest/resources/application/resources/dast/__init__.py,sha256=2e3L3KNvU0CfOKJQvfDnxSaivCuFM60xE_Hq54mNl7U,546
|
|
157
157
|
methodwebscan/resources/pentest/resources/application/resources/dast/pentest_application_dast_category.py,sha256=WHUPvoUGN1DiJsbDyOL9WJy1nSeKb_IEMSnkQswU7fo,266
|
|
158
|
-
methodwebscan/resources/pentest/resources/application/resources/dast/pentest_application_dast_config.py,sha256=
|
|
158
|
+
methodwebscan/resources/pentest/resources/application/resources/dast/pentest_application_dast_config.py,sha256=ExfrO75tmHksrbq0c-OBYNnbfkCNRk87KfwDPF9k5Y0,1333
|
|
159
159
|
methodwebscan/resources/pentest/resources/application/resources/dast/pentest_application_dast_report.py,sha256=w1T82pntq7PqdE_oS1I2tKYKlYuUljlC1mzc2ItUeUs,739
|
|
160
160
|
methodwebscan/resources/pentest/resources/application/resources/dast/pentest_application_dast_result.py,sha256=-6SKD57dGgMHNNyvSHG7gslIKl4MHd4S0-zMo_JzOWY,617
|
|
161
161
|
methodwebscan/resources/pentest/resources/application/resources/scan/__init__.py,sha256=yPrg-gSQZci5vPrjZjqXssBnvt62qX9Xmb22vA1cQeg,1063
|
|
162
162
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/__init__.py,sha256=iJQjuoKiXxI5X9epSdOe1-TNHWCXcnLMLrVLm6084hk,1103
|
|
163
163
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/cve/__init__.py,sha256=-xC3epihx5LiM51IehcFp3gHySa9sEUCcB9z5bmzkJY,406
|
|
164
|
-
methodwebscan/resources/pentest/resources/application/resources/scan/resources/cve/pentest_application_cve_config.py,sha256=
|
|
164
|
+
methodwebscan/resources/pentest/resources/application/resources/scan/resources/cve/pentest_application_cve_config.py,sha256=vGrHlcycstrXrKJJ4BLbDolMkzHDpkdl9rGcXLb6b6Q,742
|
|
165
165
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/cve/pentest_application_cve_report.py,sha256=aIistTfngJa04y9ePe74ayzHYeW8PVRuUA4ZgRbmlrk,734
|
|
166
166
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/cve/pentest_application_cve_result.py,sha256=rw8-eJjy7gRXYfUHXraqPEhAQf3JiC0qV8x5X42ifgY,620
|
|
167
167
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/__init__.py,sha256=-wnqCH6ZVGowZoGD0MKIUjnbsCLf-16brwZP_FQlDqI,634
|
|
168
168
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/misconfiguration_category.py,sha256=-O9m3q_eWjawHHV_hOXQtSOgiFgMaqm_s-eOUpJj4Ro,158
|
|
169
|
-
methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/pentest_application_misconfiguration_config.py,sha256=
|
|
169
|
+
methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/pentest_application_misconfiguration_config.py,sha256=rWfPQgD_JMeCbw7JG-08f2mON91VXWkOPO7ljFZDFxk,936
|
|
170
170
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/pentest_application_misconfiguration_report.py,sha256=zwabG31h_NTEuSVIOXBlLZRfWsC8iLHQE1Kok6Hw4sc,825
|
|
171
171
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/pentest_application_misconfiguration_result.py,sha256=7eKW7nNY8-r2TdZF8-EHw0j9-6H-zKVi37leU6Ml6b8,633
|
|
172
172
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/__init__.py,sha256=2cINT2TQZ2T5pQwezpelqsyXSaCCEwGy1rE8-8pW6ek,550
|
|
173
|
-
methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/pentest_application_technology_config.py,sha256=
|
|
173
|
+
methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/pentest_application_technology_config.py,sha256=ln2W4xM2KRcf3XtNIqhuME6mJuCtiUIl5yZs1vbP3kA,878
|
|
174
174
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/pentest_application_technology_report.py,sha256=gaclaiXbOOSzUn0LKi2FUKFdgbkWOyIdXUF-iogLgmw,783
|
|
175
175
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/pentest_application_technology_result.py,sha256=69AF5l8DLboAdS1cXBot_wbuRH7IJ26dBuVoojVJNdk,627
|
|
176
176
|
methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/technology_type.py,sha256=52QQQ9fnNk9HHuWLGiGtB77PWMp-zGjZtgzUpMnwgUM,164
|
|
@@ -197,7 +197,7 @@ methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/st
|
|
|
197
197
|
methodwebscan/resources/pentest/resources/waf/__init__.py,sha256=BzNWCZTiWyEBzf6NB6LqJd91UHPFQ1GIFtui_t5ombk,605
|
|
198
198
|
methodwebscan/resources/pentest/resources/waf/resources/__init__.py,sha256=sC9zXouOOORR677BnZQ_w4dDaqlMMHlVkvBgDRMEoTo,611
|
|
199
199
|
methodwebscan/resources/pentest/resources/waf/resources/detect/__init__.py,sha256=zi2mQOojmkUrWOFtxo9n_YWl8dYqdgbarj1mzCzp1HQ,818
|
|
200
|
-
methodwebscan/resources/pentest/resources/waf/resources/detect/pentest_waf_detect_config.py,sha256
|
|
200
|
+
methodwebscan/resources/pentest/resources/waf/resources/detect/pentest_waf_detect_config.py,sha256=zhYF-v8qOWYi9_OttUiw2LIETl6i9DlXT4OQryyK7GU,1108
|
|
201
201
|
methodwebscan/resources/pentest/resources/waf/resources/detect/pentest_waf_detect_report.py,sha256=utu3dWk9HBluGpmNQUvDVKosNTGOeSWBJvi-UhHs2uo,675
|
|
202
202
|
methodwebscan/resources/pentest/resources/waf/resources/detect/waf_body.py,sha256=eiV5xroCp5LKMR1UULd2O0yBwM6jar4TLQ7BcaHaA30,547
|
|
203
203
|
methodwebscan/resources/pentest/resources/waf/resources/detect/waf_detect_attempt.py,sha256=-z-pwfo6sggFBl7-HLR3_4otqrAmm_gKNd6NLR3PvH0,712
|
|
@@ -207,6 +207,6 @@ methodwebscan/resources/pentest/resources/waf/resources/detect/waf_detected.py,s
|
|
|
207
207
|
methodwebscan/resources/pentest/resources/waf/resources/detect/waf_fingerprint.py,sha256=hxSP1xMBAqopraMJRjGUh0Gzx5h-fyR8kBRGvIyQAfc,698
|
|
208
208
|
methodwebscan/resources/pentest/resources/waf/resources/detect/waf_provider_enum.py,sha256=n7k5KYNOOMUo2mG3cemiSyiyZ6D2s3mh-F7N-61Kl7M,247
|
|
209
209
|
methodwebscan/resources/pentest/resources/waf/resources/detect/waf_rule_category_enum.py,sha256=RzZQd-XUtV6wpDmUCTiSwKLLVnSxTtyrAlnZwYq7DjU,166
|
|
210
|
-
methodwebscan-0.0.
|
|
211
|
-
methodwebscan-0.0.
|
|
212
|
-
methodwebscan-0.0.
|
|
210
|
+
methodwebscan-0.0.167.dist-info/METADATA,sha256=yDILEO_a88dR8QzuFPnoQMzFqK1OqUntxGrFFeinDbE,976
|
|
211
|
+
methodwebscan-0.0.167.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
212
|
+
methodwebscan-0.0.167.dist-info/RECORD,,
|
|
File without changes
|