Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yeswehack/PwnFox
PwnFox is a Firefox/Burp extension that provide usefull tools for your security audit.
https://github.com/yeswehack/PwnFox
Last synced: 3 months ago
JSON representation
PwnFox is a Firefox/Burp extension that provide usefull tools for your security audit.
- Host: GitHub
- URL: https://github.com/yeswehack/PwnFox
- Owner: yeswehack
- Created: 2020-05-31T13:21:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-21T20:58:54.000Z (about 1 year ago)
- Last Synced: 2024-04-14T19:05:41.781Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 301 KB
- Stars: 962
- Watchers: 14
- Forks: 86
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- WebHackersWeapons - PwnFox
- awesome-hacking-lists - yeswehack/PwnFox - PwnFox is a Firefox/Burp extension that provide usefull tools for your security audit. (JavaScript)
README
# PwnFox
PwnFox is a Firefox/Burp extension that provide usefull tools for your security audit.
If you are a chrome user you can check https://github.com/nccgroup/autochrome.
- [PwnFox](#img-srcfirefoxiconsiconsvg-width30-pwnfox)
- [Features](#features)
- [Single click BurpProxy](#single-click-burpproxy)
- [Containers Profiles](#containers-profiles)
- [PostMessage Logger](#postmessage-logger)
- [Toolbox](#toolbox)
- [Security header remover](#security-header-remover)
- [Installation](#installation)
- [Build](#build)
- [All](#all)
- [Firefox](#firefox)
- [Burp](#burp)
- [Changelog](#changelog)## Features
![popup](/screenshots/popup.png)
### Single click BurpProxy
Connect to Burp with a simple click, this will probably remove the need for other addons like foxyProxy. However if you need the extra features provided by foxyProxy you can leave this unchecked.
### Containers Profiles
PwnFox give you fast access to the Firefox containers. This allow you to have multiple identities in the same browser.
When PwnFox and the `Add container header` option are enabled, PwnFox will automatically add a `X-PwnFox-Color` header to hightlight the query in Burp.PwnFoxBurp will automatically highlight and strip the header, but you can also specify your own behavior with addons like logger++.
![tabs](/screenshots/tabs.png)
![burp](/screenshots/burp.png)### PostMessage Logger
PwnFox add a new message tab in you devtool. This allow you to quickly visualize all postMessage between frames.
![](/screenshots/post-single.png)
You can also provide your own function to parse/filter the messages.
You get access to 3 arguments:
* data -> the message data
* origin -> the window object representing the origin
* destion -> the window object representing the destinationYou can return a string or a JSON serializable object.
![](/screenshots/post-dual.png)
### Toolbox
Inject you own javascript code on page load. The code will be loaded as soon as possible. This can used to add dangerous behavior detection, or just to add extra function to your js console.
**Be carefull, the injected toolbox will run in the window context. Do not inject secret in untrusted domain.**
![settings](/screenshots/settings.png)
I will publish some of my toolbox soon (ENOTIME)
### Security header remover
Sometime it's easier to work with security header disabled. You can now do it with a single button press. Don't forget to reenable them before testing your final payload.
Headers stripped:
* Content-Security-Policy
* X-XSS-Protection
* X-Frame-Options
* X-Content-Type-Options## Installation
You can find the latest build here:
* [https://github.com/B-i-t-K/PwnFox/releases](https://github.com/B-i-t-K/PwnFox/releases)### Firefox
- visit `about:addons` and choose install from file, then select `PwnFox-$version.xpi`
- or install from
[https://addons.mozilla.org/en-US/firefox/addon/pwnfox/](https://addons.mozilla.org/en-US/firefox/addon/pwnfox/)### Burp
- Go to extender and add `PwnFox-Burp.jar` as a java extension.## Build
### Firefox
```shell
cd firefox
web-ext build
# the zip file is available in /firefox/web-ext-artifacts/pwnfox-${version}.zip
# Optional. If you want to sign you own build
web-ext sign --api-key="$KEY" --api-secret="$SECRET"
# the xpi file is available in /firefox/web-ext-artifacts/pwnfox-${version}.xpi```
### BurpOpen and compile with Intellij IDEA
## Changelog
* v1.0.3
* Fix missing highlight with burp v2021.4.2
* v1.0.2
* First public release