()
| 453 | |
| 454 | |
| 455 | def nmap(): |
| 456 | |
| 457 | choice7 = raw_input("continue ? Y / N : ") |
| 458 | if choice7 in yes: |
| 459 | os.system("git clone https://github.com/nmap/nmap.git") |
| 460 | os.system("cd nmap && ./configure && make && make install") |
| 461 | elif choice7 in no: |
| 462 | info() |
| 463 | elif choice7 == "": |
| 464 | menu() |
| 465 | else: |
| 466 | menu() |
| 467 | |
| 468 | |
| 469 | def jboss(): |