| 666 | |
| 667 | |
| 668 | def ssls(): |
| 669 | print"""sslstrip is a MITM tool that implements Moxie Marlinspike's SSL stripping |
| 670 | attacks. |
| 671 | It requires Python 2.5 or newer, along with the 'twisted' python module.""" |
| 672 | cssl = raw_input("y / n :") |
| 673 | if cssl in yes: |
| 674 | os.system("git clone https://github.com/moxie0/sslstrip.git") |
| 675 | os.system("sudo apt-get install python-twisted-web") |
| 676 | os.system("python sslstrip/setup.py") |
| 677 | if cssl in no: |
| 678 | snif() |
| 679 | elif cssl == "": |
| 680 | menu() |
| 681 | else: |
| 682 | menu() |
| 683 | |
| 684 | |
| 685 | def unique(seq): |