Skip to content
This repository has been archived by the owner on Apr 19, 2020. It is now read-only.

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mh4x0f committed Jun 27, 2015
0 parents commit ee8660f
Show file tree
Hide file tree
Showing 116 changed files with 6,301 additions and 0 deletions.
26 changes: 26 additions & 0 deletions 3vilTwin-Attacker.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#! /usr/bin/python
from sys import argv,exit
from os import getuid
from PyQt4.QtGui import *
from PyQt4.QtCore import *
from Core.check_privilege import frm_privelege
from Core.Main import frmControl
from Core.check import check_dependencies
if __name__ == '__main__':
if not getuid() == 0:
app2 = QApplication(argv)
priv = frm_privelege()
priv.setWindowIcon(QIcon('rsc/icon.ico'))
priv.setWindowFlags(priv.windowFlags() | Qt.WindowMaximizeButtonHint)
priv.show()
exit(app2.exec_())
else:
check_dependencies()
root = QApplication(argv)
app = frmControl(None)
app.setWindowIcon(QIcon('rsc/icon.ico'))
app.center()
app.show()
root.exec_()


Loading

0 comments on commit ee8660f

Please sign in to comment.