(self)
| 296 | self.info() |
| 297 | |
| 298 | def reconspider(self): |
| 299 | self.clear_scr() |
| 300 | os.system("echo \" ReconSpider is most Advanced Open Source Intelligence (OSINT) Framework for scanning IP Address, Emails, \nWebsites, Organizations and find out information from different sources.\n:~python3 reconspider.py \n\t [!]https://github.com/bhavsec/reconspider \" | boxes -d boy | lolcat") |
| 301 | choice = input("[1]Install [99]Back >> ") |
| 302 | |
| 303 | self.check_input(choice, self.reconspider, ['1', '99']) |
| 304 | |
| 305 | if choice == "1": |
| 306 | os.system("sudo git clone https://github.com/bhavsec/reconspider.git") |
| 307 | os.system("sudo apt install python3 python3-pip && cd reconspider && sudo python3 setup.py install") |
| 308 | self.reconspider() |
| 309 | |
| 310 | # elif choice == "2": |
| 311 | # os.system("cd reconspider && python3 reconspider.py") |
| 312 | |
| 313 | if choice == "99": |
| 314 | self.info() |
| 315 | |
| 316 | def isitdown(self): |
| 317 | self.clear_scr() |
nothing calls this directly
no test coverage detected