Skip to content

Instantly share code, notes, and snippets.

View ahembree's full-sized avatar
👾

Aidan Hembree ahembree

👾
View GitHub Profile
@ahembree
ahembree / proxycolor.py
Created April 8, 2022 14:05 — forked from santrancisco/proxycolor.py
Example_jython_burp_extension
# Just color requests hitting different ports on Burp so we can easily identify which user session is which.
from burp import IBurpExtender
from burp import IProxyListener
import re
class BurpExtender(IBurpExtender, IProxyListener):
# define registerExtenderCallbacks: From IBurpExtender Interface
def registerExtenderCallbacks(self, callbacks):
self._callbacks = callbacks