websec-validator 0.2.0__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.
Files changed (50) hide show
  1. websec_validator/__init__.py +14 -0
  2. websec_validator/briefing.py +218 -0
  3. websec_validator/calibration.json +75 -0
  4. websec_validator/calibration.py +226 -0
  5. websec_validator/cli.py +395 -0
  6. websec_validator/constitution.py +81 -0
  7. websec_validator/corpus.json +49 -0
  8. websec_validator/dynamic.py +249 -0
  9. websec_validator/extractors/__init__.py +56 -0
  10. websec_validator/extractors/auth.py +77 -0
  11. websec_validator/extractors/authz.py +130 -0
  12. websec_validator/extractors/base.py +101 -0
  13. websec_validator/extractors/client_exposure.py +48 -0
  14. websec_validator/extractors/graphql.py +71 -0
  15. websec_validator/extractors/iac_ci.py +65 -0
  16. websec_validator/extractors/integrations.py +55 -0
  17. websec_validator/extractors/routes.py +215 -0
  18. websec_validator/extractors/schemas.py +75 -0
  19. websec_validator/extractors/stack.py +80 -0
  20. websec_validator/extractors/surface.py +86 -0
  21. websec_validator/extractors/tenant.py +33 -0
  22. websec_validator/findings.py +199 -0
  23. websec_validator/probes.py +79 -0
  24. websec_validator/proof.py +96 -0
  25. websec_validator/recon.py +28 -0
  26. websec_validator/report.py +114 -0
  27. websec_validator/scanners.py +248 -0
  28. websec_validator/templates/probes/bola-cross-tenant.sh +192 -0
  29. websec_validator/templates/probes/bola-write-verbs.py +147 -0
  30. websec_validator/templates/probes/compare-roles.sh +69 -0
  31. websec_validator/templates/probes/dlp-bypass-offline.py +149 -0
  32. websec_validator/templates/probes/hs256-brute-force.py +90 -0
  33. websec_validator/templates/probes/jwt-attacks.sh +161 -0
  34. websec_validator/templates/probes/mass-assignment.py +201 -0
  35. websec_validator/templates/probes/race-conditions.py +144 -0
  36. websec_validator/templates/probes/rate-limit-burst.sh +136 -0
  37. websec_validator/templates/probes/s3-assess.sh +120 -0
  38. websec_validator/templates/probes/ssrf-probes.sh +189 -0
  39. websec_validator/templates/probes/webhook-forgery.py +113 -0
  40. websec_validator/templates/reports/FINDINGS-SUMMARY.md.template +75 -0
  41. websec_validator/templates/reports/access-control-matrix.md.template +65 -0
  42. websec_validator/templates/reports/findings-triage.md.template +28 -0
  43. websec_validator/templates/reports/pentest-handover-brief.md.template +121 -0
  44. websec_validator/templates/reports/per-tool-FINDINGS.md.template +37 -0
  45. websec_validator-0.2.0.dist-info/METADATA +232 -0
  46. websec_validator-0.2.0.dist-info/RECORD +50 -0
  47. websec_validator-0.2.0.dist-info/WHEEL +5 -0
  48. websec_validator-0.2.0.dist-info/entry_points.txt +2 -0
  49. websec_validator-0.2.0.dist-info/licenses/LICENSE +21 -0
  50. websec_validator-0.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,50 @@
1
+ websec_validator/__init__.py,sha256=bKQnLZPcEF91PKz7So8uApkK0X6jV_BXKhvNKRceK80,666
2
+ websec_validator/briefing.py,sha256=j6us_ULN4JJ-89NYrHh0fjq6RnxGweVZGcXFdSysbIM,11093
3
+ websec_validator/calibration.json,sha256=xqcUd2yBWCdw-wOEoNzKva6pTZQOfxhBIj1RCv8C8mA,1239
4
+ websec_validator/calibration.py,sha256=euFEHzHl_Co0BVQHOSc8Oa96aPWuMUbBXfZLefoLb-M,10808
5
+ websec_validator/cli.py,sha256=rELYU_gzA_2Q_rPGT6kokrzVgLCkwUfZ8KUCNWq3wRE,20053
6
+ websec_validator/constitution.py,sha256=uI8Vh9kCK7FyFf6rGlu0wHEbK1k4DJqcFiPKa4g5avA,3809
7
+ websec_validator/corpus.json,sha256=h91cz9Sk2brEn0JEe3XqxzAmMC8xchuZMXhcCT7mGzY,1993
8
+ websec_validator/dynamic.py,sha256=aGFpKxjb5va8NgTBkPNlCxDks1utmQDI7m_fw6eG-rE,11256
9
+ websec_validator/findings.py,sha256=q17ncnDiwdDpYur58LIyKULgxfKsa_AJDv1TbUrDAcQ,11261
10
+ websec_validator/probes.py,sha256=3EKKZi0QUjMdYyPcIGCrqOhqWKjzhHv01EeLIhYZnhg,3906
11
+ websec_validator/proof.py,sha256=HexgcZMeYIF3Egl9bgljFNVWFpP6xwv-kgh5gGdtQT8,4204
12
+ websec_validator/recon.py,sha256=7Uesw7CmKREdsKS3c5Ehvvl0H6F4pO2KAh5w8PxJOTA,796
13
+ websec_validator/report.py,sha256=OTdAmqegE3brrZ1vFJvnBrck051kyR4oJxFkX5PoaHc,6168
14
+ websec_validator/scanners.py,sha256=1DwoPqO4FqIQUPCakfwgjf05uwnDwEtFkPNLFoCL9io,10719
15
+ websec_validator/extractors/__init__.py,sha256=ovylJZzospcexasfpP8c6QQ3ixfpeA05YVx5IlTW5LY,1781
16
+ websec_validator/extractors/auth.py,sha256=DXqdMY34LV0OiEytjJs152kEYQSzHG5gHBzxMB3J24U,3596
17
+ websec_validator/extractors/authz.py,sha256=0i0LJBrAbGHFPPdmyykR1xiSwRLJfDXYagd9v6VRrXg,5853
18
+ websec_validator/extractors/base.py,sha256=XariNWH7n5KJQ-MPYjF2acU5jxNipzEtHn7DSrqa0y0,3892
19
+ websec_validator/extractors/client_exposure.py,sha256=4AY3ohXMkj4N9GgUYphAnz1Tn1VYc0d7BsSM7fDuN1A,2348
20
+ websec_validator/extractors/graphql.py,sha256=4iNKNLCp4ux3E3oXKVQqfgiwNM9TQWFKyFW8BRPczRc,3722
21
+ websec_validator/extractors/iac_ci.py,sha256=OWHS0HAU8rnB2pXq1ofjLg2YyHhAHM1MvAzu8Kgch9Q,3304
22
+ websec_validator/extractors/integrations.py,sha256=f2P5C606I_gsB5jrJCmmtdxg6WrXoSK2Mr6EJ2CMT-Q,2703
23
+ websec_validator/extractors/routes.py,sha256=IXVoEtJ_CpaN672ibf5d-pCH5v9TOWYdyw7mHrdU8x4,8884
24
+ websec_validator/extractors/schemas.py,sha256=vePeKMj8x5LJ3WKnCrN6bUwZX8DNIfsumGN9dqdp9eE,3108
25
+ websec_validator/extractors/stack.py,sha256=WMxdJ4lahs3ugI4MbcqCj0KJrDBYqAt5BESxbZBTILI,3665
26
+ websec_validator/extractors/surface.py,sha256=QfNscaI6gjyH3TTFZ9QFCEEw9cloqX2PWOjJlO5cS94,4843
27
+ websec_validator/extractors/tenant.py,sha256=VZjoBUzIF0SiCLQhs77U3LvFKHVHatARIC6xBsC6C8w,1348
28
+ websec_validator/templates/probes/bola-cross-tenant.sh,sha256=UQ25p_2iAjGcP6HyVvqhxp3QpoG2PkJGNe31Yzp1Xfs,7015
29
+ websec_validator/templates/probes/bola-write-verbs.py,sha256=ah65N9mdG5SGCW8Z1S7x0LZYJK8D2HXck0QCAu5lbzk,6734
30
+ websec_validator/templates/probes/compare-roles.sh,sha256=Mcrkm118a2PBo2pRpPc_d2BHHcKQHiGgEZuDIv4U35I,3029
31
+ websec_validator/templates/probes/dlp-bypass-offline.py,sha256=yK3mtc4OI7n51yU5Z50nWP1nSy4WIT5VV7NS4c_gZsA,6413
32
+ websec_validator/templates/probes/hs256-brute-force.py,sha256=PM7Yhr6SYhk6maOTz3H5NgMGk66kuOeTH7u9Wy05aG4,3287
33
+ websec_validator/templates/probes/jwt-attacks.sh,sha256=7QBrf9qtdAPs6DIZPekho0-ynxwseDOS0VfwLeh8vDk,6868
34
+ websec_validator/templates/probes/mass-assignment.py,sha256=ggE1h8-NzUArlKLOvfGRkx4KxZZ1f1xQ3dw2IGRO0h0,8730
35
+ websec_validator/templates/probes/race-conditions.py,sha256=3G8SpUQFIip8OBwMh2R2TVpTIABSNPWWVpBx28-CNEE,5524
36
+ websec_validator/templates/probes/rate-limit-burst.sh,sha256=vYkpKCR8FyUiFPmUXtD_uU6MQFIGPQnXz7X9rZhi2m4,4925
37
+ websec_validator/templates/probes/s3-assess.sh,sha256=G6jEjqxhc7qAwxCv5LozkV-GpFU8tc_JSKCc-YQSDAY,5766
38
+ websec_validator/templates/probes/ssrf-probes.sh,sha256=3yb7UiFro9UUhJsK27RqAV8Lxm31IGMyZ30aVOVSr8w,7372
39
+ websec_validator/templates/probes/webhook-forgery.py,sha256=nZtzu3VobrGpl609Pvmt_RFcHRojYfjP9K_wMpdQeWY,5515
40
+ websec_validator/templates/reports/FINDINGS-SUMMARY.md.template,sha256=uegMNin-cyH3ulvZ1RcfuWd1S733tlWLs7JlOcubliU,2259
41
+ websec_validator/templates/reports/access-control-matrix.md.template,sha256=uH83IiX7nJn4xGmbTKK_iVQJMWdBcarf_TyqxE6RZM0,2680
42
+ websec_validator/templates/reports/findings-triage.md.template,sha256=ZXJYPF2dlhZPJif0vudlA6poZlFFjxbUF55eU3fxFHI,1285
43
+ websec_validator/templates/reports/pentest-handover-brief.md.template,sha256=e9xDJ7lHtK0BjdVqdhlELbJqmiamIy8lPRBJc_7tKWk,5216
44
+ websec_validator/templates/reports/per-tool-FINDINGS.md.template,sha256=4HrSeV-MgFiAdWzBCvxLXTnVa-1svj0XU3DcYACiQ_I,835
45
+ websec_validator-0.2.0.dist-info/licenses/LICENSE,sha256=gQ9PJNsgxXTDVYfhspPfwlj1ba3MeDnbL8G0dqN2jLE,1072
46
+ websec_validator-0.2.0.dist-info/METADATA,sha256=CIDlEW6cJrVnYvSXCfcGFVqYQhcHmJjWvmNQXVLogJE,12914
47
+ websec_validator-0.2.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
48
+ websec_validator-0.2.0.dist-info/entry_points.txt,sha256=EOi2jPBxhJbc1PKE_TD8dj6Vt9QafmqV6f5jq2pdaMo,53
49
+ websec_validator-0.2.0.dist-info/top_level.txt,sha256=m4kOcvyELPT-3x2Z_wgjTNeul6yF2N4qEe7CCeyDn6s,17
50
+ websec_validator-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ websec = websec_validator.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ricardo Accioly
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ websec_validator