You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 7, 2020. It is now read-only.
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()"
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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()"
The text was updated successfully, but these errors were encountered: