├── .gitignore ├── README.md ├── burp ├── .gitignore ├── .idea │ ├── .name │ ├── artifacts │ │ └── burp_jar.xml │ ├── kotlinc.xml │ ├── libraries │ │ ├── KotlinJavaRuntime.xml │ │ └── net_portswigger_burp_extender_burp_extender_api_2_1.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── burp.iml └── src │ └── burp │ └── BurpExtender.kt ├── firefox ├── .gitignore ├── icons │ └── icon.svg ├── manifest.json └── src │ ├── background.js │ ├── config.js │ ├── contentScript.js │ ├── devtools │ ├── devtools.js │ ├── index.html │ └── panel │ │ ├── panel.css │ │ ├── panel.html │ │ └── panel.js │ ├── features.js │ ├── fileSelection.css │ ├── fileSelection.js │ ├── icon.js │ ├── popup │ ├── colors.css │ ├── popup.css │ ├── popup.html │ └── popup.js │ └── settings │ ├── index.html │ ├── settings.css │ └── settings.js └── screenshots ├── burp.png ├── popup.png ├── post-dual.png ├── post-single.png ├── settings.png └── tabs.png /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/README.md -------------------------------------------------------------------------------- /burp/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /burp/.idea/.name: -------------------------------------------------------------------------------- 1 | PwnFox -------------------------------------------------------------------------------- /burp/.idea/artifacts/burp_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/burp/.idea/artifacts/burp_jar.xml -------------------------------------------------------------------------------- /burp/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/burp/.idea/kotlinc.xml -------------------------------------------------------------------------------- /burp/.idea/libraries/KotlinJavaRuntime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/burp/.idea/libraries/KotlinJavaRuntime.xml -------------------------------------------------------------------------------- /burp/.idea/libraries/net_portswigger_burp_extender_burp_extender_api_2_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/burp/.idea/libraries/net_portswigger_burp_extender_burp_extender_api_2_1.xml -------------------------------------------------------------------------------- /burp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/burp/.idea/misc.xml -------------------------------------------------------------------------------- /burp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/burp/.idea/modules.xml -------------------------------------------------------------------------------- /burp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/burp/.idea/vcs.xml -------------------------------------------------------------------------------- /burp/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/burp/.idea/workspace.xml -------------------------------------------------------------------------------- /burp/burp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/burp/burp.iml -------------------------------------------------------------------------------- /burp/src/burp/BurpExtender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/burp/src/burp/BurpExtender.kt -------------------------------------------------------------------------------- /firefox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/.gitignore -------------------------------------------------------------------------------- /firefox/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/icons/icon.svg -------------------------------------------------------------------------------- /firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/manifest.json -------------------------------------------------------------------------------- /firefox/src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/background.js -------------------------------------------------------------------------------- /firefox/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/config.js -------------------------------------------------------------------------------- /firefox/src/contentScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/contentScript.js -------------------------------------------------------------------------------- /firefox/src/devtools/devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/devtools/devtools.js -------------------------------------------------------------------------------- /firefox/src/devtools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/devtools/index.html -------------------------------------------------------------------------------- /firefox/src/devtools/panel/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/devtools/panel/panel.css -------------------------------------------------------------------------------- /firefox/src/devtools/panel/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/devtools/panel/panel.html -------------------------------------------------------------------------------- /firefox/src/devtools/panel/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/devtools/panel/panel.js -------------------------------------------------------------------------------- /firefox/src/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/features.js -------------------------------------------------------------------------------- /firefox/src/fileSelection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/fileSelection.css -------------------------------------------------------------------------------- /firefox/src/fileSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/fileSelection.js -------------------------------------------------------------------------------- /firefox/src/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/icon.js -------------------------------------------------------------------------------- /firefox/src/popup/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/popup/colors.css -------------------------------------------------------------------------------- /firefox/src/popup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/popup/popup.css -------------------------------------------------------------------------------- /firefox/src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/popup/popup.html -------------------------------------------------------------------------------- /firefox/src/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/popup/popup.js -------------------------------------------------------------------------------- /firefox/src/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/settings/index.html -------------------------------------------------------------------------------- /firefox/src/settings/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/settings/settings.css -------------------------------------------------------------------------------- /firefox/src/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/firefox/src/settings/settings.js -------------------------------------------------------------------------------- /screenshots/burp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/screenshots/burp.png -------------------------------------------------------------------------------- /screenshots/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/screenshots/popup.png -------------------------------------------------------------------------------- /screenshots/post-dual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/screenshots/post-dual.png -------------------------------------------------------------------------------- /screenshots/post-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/screenshots/post-single.png -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /screenshots/tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeswehack/PwnFox/HEAD/screenshots/tabs.png --------------------------------------------------------------------------------