-
Notifications
You must be signed in to change notification settings - Fork 26
Basic HTTP Request
Tim Guenther edited this page Jul 24, 2017
·
3 revisions
HTTP is the abbreviation of Hypertext Transfer Protocol and is used to transfer data between clients and servers, i.e. your Browser and a website or in this case the Android app and our local server.
- In the OWASP VM open the folder
~/OWASP/Resources/http/. - Start the python file in the folder with following command
sudo python http.py. - This will start a lightweight HTTP server.
- Configure the
iptablesrules as following via the commandadb shellvia the OWASP VM or press Alt + F1 in the Android VM: - iptables.proxy (Please interchange the IP address with the one of the OWASP VM):
iptables -t nat -A OUTPUT -o eth0 -p tcp --dport 80 -j DNAT --to 10.13.13.102:8080
- Start Burp Suite in the OWASP VM.
Please open an issue in the case you found a mistake in the wiki.