Exploit Searching
Things you can do in web app in order to obtain shell. Remember that cookies and headers also can be the vector of attack.
Python script Burp Suite intercept
import requests
proxies = {"http": "http://127.0.0.1:8080", "https": "http://127.0.0.1:8080"}
r = requests.get("https://www.google.com/", proxies=proxies, verify=False)Last updated