gitextract_2uk6lexw/ ├── .circleci/ │ └── config.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── db/ │ └── en/ │ ├── 1-allowed-http-methods.json │ ├── 10-common-sensitive-file.json │ ├── 11-cookie-set-for-parent-domain.json │ ├── 12-credit-card-number-disclosure.json │ ├── 13-cross-site-request-forgery.json │ ├── 14-cvs-svn-user-disclosure.json │ ├── 15-directory-listing.json │ ├── 16-e-mail-address-disclosure.json │ ├── 17-file-inclusion.json │ ├── 18-form-based-file-upload.json │ ├── 19-missing-strict-transport-security-header.json │ ├── 2-a-backdoor-file-exists-on-the-server.json │ ├── 20-misconfiguration-in-limit-directive-of-htaccess-file.json │ ├── 21-html-object.json │ ├── 22-httponly-cookie.json │ ├── 23-publicly-writable-directory.json │ ├── 24-insecure-client-access-policy.json │ ├── 25-insecure-cookie.json │ ├── 26-access-control-allow-origin-star.json │ ├── 27-insecure-cross-domain-policy-allow-access-from.json │ ├── 29-interesting-response.json │ ├── 3-backup-directory.json │ ├── 30-ldap-injection.json │ ├── 31-exposed-localstart-asp-page.json │ ├── 32-mixed-resource.json │ ├── 33-nosql-injection.json │ ├── 34-blind-nosql-injection-differential-analysis.json │ ├── 35-access-restriction-bypass-via-origin-spoof.json │ ├── 36-operating-system-command-injection.json │ ├── 38-password-field-with-auto-complete.json │ ├── 39-path-traversal.json │ ├── 4-backup-file.json │ ├── 40-private-ip-address-disclosure.json │ ├── 41-response-splitting.json │ ├── 42-remote-file-inclusion.json │ ├── 43-session-fixation.json │ ├── 44-source-code-disclosure.json │ ├── 45-sql-injection.json │ ├── 46-blind-sql-injection.json │ ├── 47-blind-sql-injection-timing-attack.json │ ├── 48-disclosed-us-social-security-number-ssn.json │ ├── 49-unencrypted-password-form.json │ ├── 5-captcha-protected-form.json │ ├── 50-unvalidated-redirect.json │ ├── 51-unvalidated-dom-redirect.json │ ├── 52-webdav.json │ ├── 53-missing-x-frame-options-header.json │ ├── 54-xpath-injection.json │ ├── 55-cross-site-scripting-xss.json │ ├── 56-dom-based-cross-site-scripting-xss.json │ ├── 6-code-injection.json │ ├── 63-http-trace.json │ ├── 64-xml-external-entity.json │ ├── 65-arbitrary-file-upload.json │ ├── 66-insecure-ssl-version.json │ ├── 67-self-signed-ssl-certificate.json │ ├── 68-shellshock.json │ ├── 69-insecure-frontpage-configuration.json │ ├── 70-persistent-xss.json │ ├── 71-reflected-file-download.json │ ├── 72-cache-control-headers.json │ ├── 73-information-leak-stack-trace.json │ ├── 74-phishing-vector.json │ ├── 75-guessable-credentials.json │ ├── 76-x-content-type-options_header_missing.json │ ├── 77-http-basic-authentication-credentials.json │ ├── 8-code-injection.json │ ├── 9-common-directory.json │ ├── description/ │ │ ├── 1.md │ │ ├── 10.md │ │ ├── 11.md │ │ ├── 12.md │ │ ├── 13.md │ │ ├── 14.md │ │ ├── 15.md │ │ ├── 16.md │ │ ├── 17.md │ │ ├── 18.md │ │ ├── 19.md │ │ ├── 2.md │ │ ├── 20.md │ │ ├── 21.md │ │ ├── 22.md │ │ ├── 23.md │ │ ├── 24.md │ │ ├── 25.md │ │ ├── 26.md │ │ ├── 27.md │ │ ├── 29.md │ │ ├── 3.md │ │ ├── 30.md │ │ ├── 31.md │ │ ├── 32.md │ │ ├── 33.md │ │ ├── 34.md │ │ ├── 35.md │ │ ├── 36.md │ │ ├── 38.md │ │ ├── 39.md │ │ ├── 4.md │ │ ├── 40.md │ │ ├── 41.md │ │ ├── 42.md │ │ ├── 43.md │ │ ├── 44.md │ │ ├── 45.md │ │ ├── 46.md │ │ ├── 47.md │ │ ├── 48.md │ │ ├── 49.md │ │ ├── 5.md │ │ ├── 50.md │ │ ├── 51.md │ │ ├── 52.md │ │ ├── 53.md │ │ ├── 54.md │ │ ├── 55.md │ │ ├── 56.md │ │ ├── 6.md │ │ ├── 63.md │ │ ├── 64.md │ │ ├── 65.md │ │ ├── 66.md │ │ ├── 67.md │ │ ├── 68.md │ │ ├── 69.md │ │ ├── 70.md │ │ ├── 71.md │ │ ├── 72.md │ │ ├── 73.md │ │ ├── 74.md │ │ ├── 75.md │ │ ├── 76.md │ │ ├── 77.md │ │ ├── 8.md │ │ └── 9.md │ └── fix/ │ ├── 1.md │ ├── 10.md │ ├── 11.md │ ├── 12.md │ ├── 13.md │ ├── 14.md │ ├── 15.md │ ├── 16.md │ ├── 17.md │ ├── 18.md │ ├── 19.md │ ├── 2.md │ ├── 20.md │ ├── 21.md │ ├── 22.md │ ├── 23.md │ ├── 24.md │ ├── 25.md │ ├── 26.md │ ├── 27.md │ ├── 28.md │ ├── 29.md │ ├── 3.md │ ├── 30.md │ ├── 31.md │ ├── 32.md │ ├── 33.md │ ├── 34.md │ ├── 35.md │ ├── 36.md │ ├── 37.md │ ├── 38.md │ ├── 39.md │ ├── 4.md │ ├── 40.md │ ├── 41.md │ ├── 42.md │ ├── 43.md │ ├── 44.md │ ├── 45.md │ ├── 46.md │ ├── 47.md │ ├── 48.md │ ├── 49.md │ ├── 5.md │ ├── 50.md │ ├── 51.md │ ├── 52.md │ ├── 53.md │ ├── 54.md │ ├── 55.md │ ├── 56.md │ ├── 57.md │ ├── 6.md │ ├── 7.md │ ├── 8.md │ └── 9.md ├── schema.json └── tests/ ├── __init__.py ├── requirements.txt ├── test_all_json.py ├── test_json_spec.py ├── test_markdown_refs.py ├── test_references.py ├── test_schema_compatability.py ├── test_valid_markdown.py └── vulndb_test.py