We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 707a679 commit ac756a9Copy full SHA for ac756a9
setup.py
@@ -2,6 +2,7 @@
2
import os
3
import subprocess
4
from main.tools import banner,colors
5
+import cyberonix
6
7
def exit_program():
8
os.system("clear")
@@ -37,11 +38,7 @@ def finish():
37
38
39
banner.main()
40
banner.attack("Setup Completed")
- try:
41
- subprocess.run('cyberonix',shell=True, check = True)
42
- except Exception as err:
43
- os.system("python3 cyberonix.py")
44
- exit()
+ cyberonix.main()
45
if __name__ == "__main__":
46
main()
47
except KeyboardInterrupt:
0 commit comments