22 lines
520 B
Plaintext
22 lines
520 B
Plaintext
|
#!/usr/bin/python
|
||
|
|
||
|
import sqlite3, argparse
|
||
|
|
||
|
# Empire imports
|
||
|
from lib.common import empire
|
||
|
from lib.common import listeners
|
||
|
from lib.common import http
|
||
|
from lib.common import packets
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
|
||
|
parser = argparse.ArgumentParser()
|
||
|
parser.add_argument('--debug', action='store_true', help='Debug mode for output.')
|
||
|
parser.add_argument('-debug', action='store_true', help='Debug mode for output.')
|
||
|
args = parser.parse_args()
|
||
|
|
||
|
main = empire.MainMenu(args=args)
|
||
|
main.cmdloop()
|
||
|
|