├── .gitignore ├── CHANGELOG.md ├── GAP Help.md ├── GAP.py ├── GAP └── images │ ├── banner.png │ ├── run.png │ ├── tab.png │ └── title.png ├── README.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | __pycache__ 3 | *.class -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnl-h4ck3r/GAP-Burp-Extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /GAP Help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnl-h4ck3r/GAP-Burp-Extension/HEAD/GAP Help.md -------------------------------------------------------------------------------- /GAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnl-h4ck3r/GAP-Burp-Extension/HEAD/GAP.py -------------------------------------------------------------------------------- /GAP/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnl-h4ck3r/GAP-Burp-Extension/HEAD/GAP/images/banner.png -------------------------------------------------------------------------------- /GAP/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnl-h4ck3r/GAP-Burp-Extension/HEAD/GAP/images/run.png -------------------------------------------------------------------------------- /GAP/images/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnl-h4ck3r/GAP-Burp-Extension/HEAD/GAP/images/tab.png -------------------------------------------------------------------------------- /GAP/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnl-h4ck3r/GAP-Burp-Extension/HEAD/GAP/images/title.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xnl-h4ck3r/GAP-Burp-Extension/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | html5lib 3 | urllib3 4 | tldextract==2.2.3 --------------------------------------------------------------------------------