Update HiddenEye.py

ssh should be closed otherwise processes get jumbled up and hiddeneye becomes slow and sometimes does not work.
This commit is contained in:
Usama Abdul Sattar 2018-12-09 12:10:27 +05:00 committed by GitHub
parent efd1a96780
commit 5d4d1862b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@ from Defs.Checks import *
from Defs.Configurations import *
from Defs.Actions import *
from Defs.Languages import *
from os import system
RED, WHITE, CYAN, GREEN, DEFAULT = '\033[91m', '\033[46m', '\033[36m', '\033[1;32m', '\033[0m'
@ -32,5 +33,6 @@ if __name__ == "__main__":
getCredentials()
except KeyboardInterrupt:
system('pkill ssh')
endMessage()
exit(0)