gitextract_v_es0zmg/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── core/ │ ├── __init__.py │ ├── checker.py │ ├── colors.py │ ├── config.py │ ├── dom.py │ ├── encoders.py │ ├── filterChecker.py │ ├── fuzzer.py │ ├── generator.py │ ├── htmlParser.py │ ├── jsContexter.py │ ├── log.py │ ├── photon.py │ ├── prompt.py │ ├── requester.py │ ├── updater.py │ ├── utils.py │ ├── wafDetector.py │ └── zetanize.py ├── db/ │ ├── definitions.json │ └── wafSignatures.json ├── modes/ │ ├── __init__.py │ ├── bruteforcer.py │ ├── crawl.py │ ├── scan.py │ └── singleFuzz.py ├── plugins/ │ ├── __init__.py │ └── retireJs.py ├── requirements.txt ├── test.html └── xsstrike.py