Skip to content

Commit

Permalink
add link for aes code
Browse files Browse the repository at this point in the history
  • Loading branch information
TrustedSec committed Oct 29, 2017
1 parent 1f660fc commit 787f7b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions trevorc2_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
from Crypto.Cipher import AES
import sys

# AES Support for Python2/3 - http://depado.markdownblog.com/2015-05-11-aes-cipher-with-python-3-x
class AESCipher(object):
"""
A classical AES Cipher. Can use any size of data and any size of password thanks to padding.
Expand Down
2 changes: 1 addition & 1 deletion trevorc2_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
print("\n[!] TrevorC2 needs to be run as root (web socket binding, etc.)... Re-run TrevorC2 as sudo/root in order to run.")
sys.exit()

# AESCipher Library Python2/3 support
# AESCipher Library Python2/3 support - http://depado.markdownblog.com/2015-05-11-aes-cipher-with-python-3-x
class AESCipher(object):
"""
A classical AES Cipher. Can use any size of data and any size of password thanks to padding.
Expand Down

0 comments on commit 787f7b2

Please sign in to comment.