passing traffic through sslstrip then through brup proxy ?
Hello,
my network consists of :
Labtop with windows 7 ip:192.168.1.2
BT4 on VMWARE with bridged networking ip:192.168.1.4
ADSL MODEM (Gate way) ip:192.168.1.1
I am trying to carry out interactive mitm using burp suite as http proxy from BT4 on vmware and the victim is my labtop using windows 7
I have configured burp suite proxy on port 9999 with invisible option
I used the following commands :
Code:
echo 1 > /proc/sys/net/ipv4/ip_forward
arpspoof -i eth0 -t 192.168.1.2 192.168.1.1
iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-ports 9999
It works fine , but ssl certificate produces error in the browser
So, I want to do some thing more.
I want the traffic to pass through sslstrip then through brup proxy.
Any ideas ?
Thanks in advance.
Re: passing traffic through sslstrip then through brup proxy ?
Hi,
I realise this is a late answer but may be usefull to somebody else. I made what you want running sslstrip under proxychains.
Just go to you proxychains.conf and add your burp proxy ip/port to the proxies list.
HTH