(self, serverip)
| 1039 | |
| 1040 | class Fscan: |
| 1041 | def __init__(self, serverip): |
| 1042 | self.serverip = serverip |
| 1043 | self.getSites(False) |
| 1044 | print menuu |
| 1045 | while True: |
| 1046 | choice = raw_input('hackerpro~# ') |
| 1047 | if choice == '1': |
| 1048 | self.getSites(True) |
| 1049 | elif choice == '2': |
| 1050 | self.getJoomla() |
| 1051 | elif choice == '3': |
| 1052 | self.getWordpress() |
| 1053 | elif choice == '4': |
| 1054 | self.findPanels() |
| 1055 | elif choice == '5': |
| 1056 | self.findZip() |
| 1057 | elif choice == '6': |
| 1058 | self.findUp() |
| 1059 | elif choice == '7': |
| 1060 | self.getUsers() |
| 1061 | elif choice == '8': |
| 1062 | self.grabSqli() |
| 1063 | elif choice == '9': |
| 1064 | ran = raw_input(' Enter range of ports, (ex : 1-1000) -> ') |
| 1065 | self.portScanner(1, ran) |
| 1066 | elif choice == '10': |
| 1067 | self.portScanner(2, None) |
| 1068 | elif choice == '11': |
| 1069 | self.getServerBanner() |
| 1070 | elif choice == '12': |
| 1071 | self.cloudflareBypasser() |
| 1072 | elif choice == '99': |
| 1073 | menu() |
| 1074 | con = raw_input(' Continue [Y/n] -> ') |
| 1075 | if con[0].upper() == 'N': |
| 1076 | exit() |
| 1077 | else: |
| 1078 | clearScr() |
| 1079 | print menuu |
| 1080 | |
| 1081 | def getSites(self, a): |
| 1082 | """ |
nothing calls this directly
no test coverage detected