| 587 | |
| 588 | |
| 589 | def setoolkit(): |
| 590 | print ("The Social-Engineer Toolkit is an open-source penetration testing framework") |
| 591 | print(") designed for social engineering. SET has a number of custom attack vectors that ") |
| 592 | print(" allow you to make a believable attack quickly. SET is a product of TrustedSec, LLC ") |
| 593 | print("an information security consulting firm located in Cleveland, Ohio.") |
| 594 | print("") |
| 595 | |
| 596 | choiceset = raw_input("y / n :") |
| 597 | if choiceset in yes: |
| 598 | os.system( |
| 599 | "git clone https://github.com/trustedsec/social-engineer-toolkit.git") |
| 600 | os.system("python social-engineer-toolkit/setup.py") |
| 601 | if choiceset in no: |
| 602 | clearScr() |
| 603 | info() |
| 604 | elif choiceset == "": |
| 605 | menu() |
| 606 | else: |
| 607 | menu() |
| 608 | |
| 609 | |
| 610 | def cupp(): |