First of, great tool! While in Test Mode using the -c flag, the following error was thrown:
IKE Server running in Thread-1
Traceback (most recent call last):
File "ikeforce.py", line 2389, in
ikeCrypto = crypto.ikeCrypto()
NameError: name 'crypto' is not defined
Found it was due to an unchanged reference in line 2389 of ikeforce.py (probably a reference which 'cloaked' itself :-) when you made reference changes in this commit) which;
currently reads: "ikeCrypto = crypto.ikeCrypto()"
but should be: "ikeCrypto = ikecrypto.ikeCrypto()"
Same issue found in "ikehandler.py", line 902
currently reads: "ikeCrypto = crypto.ikeCrypto()"
but should be: "ikeCrypto = ikecrypto.ikeCrypto()"
First of, great tool! While in Test Mode using the -c flag, the following error was thrown: IKE Server running in Thread-1 Traceback (most recent call last): File "ikeforce.py", line 2389, in
ikeCrypto = crypto.ikeCrypto()
NameError: name 'crypto' is not defined
Found it was due to an unchanged reference in line 2389 of ikeforce.py (probably a reference which 'cloaked' itself :-) when you made reference changes in this commit) which; currently reads: "ikeCrypto = crypto.ikeCrypto()" but should be: "ikeCrypto = ikecrypto.ikeCrypto()"
Same issue found in "ikehandler.py", line 902 currently reads: "ikeCrypto = crypto.ikeCrypto()" but should be: "ikeCrypto = ikecrypto.ikeCrypto()"