()
| 88 | |
| 89 | |
| 90 | def entry_point(): |
| 91 | try: |
| 92 | wifite = Wifite() |
| 93 | wifite.start() |
| 94 | except Exception as e: |
| 95 | Color.pexception(e) |
| 96 | Color.pl('\n{!} {R}Exiting{W}\n') |
| 97 | |
| 98 | except KeyboardInterrupt: |
| 99 | Color.pl('\n{!} {O}Interrupted, Shutting down...{W}') |
| 100 | |
| 101 | Configuration.exit_gracefully(0) |
| 102 | |
| 103 | |
| 104 | if __name__ == '__main__': |
no test coverage detected