Can now just run python3 app

This commit is contained in:
Brandon 2020-04-28 18:20:11 +01:00
parent fe391c1df3
commit 0ff379b475
9 changed files with 7 additions and 7 deletions

View File

@ -52,7 +52,7 @@ pip install -r requirements.txt
And then
```
python3 app/main.py -t "Encrypted Text Here"
python3 main.py -t "Encrypted Text Here"
```
# The internal data packet

View File

@ -205,12 +205,12 @@ class Ciphey:
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Automated decryption tool. Put in the encrypted text and Ciphey will decrypt it.')
parser.add_argument('-f','--file', help='File you want to decrypt', required=False)
parser.add_argument('-l','--level', help='How many levels of decryption you want (the more levels, the slower it is)', required=False)
parser.add_argument('-g','--greppable', help='Are you grepping this output?', required=False)
#parser.add_argument('-f','--file', help='File you want to decrypt', required=False)
#parser.add_argument('-l','--level', help='How many levels of decryption you want (the more levels, the slower it is)', required=False)
#parser.add_argument('-g','--greppable', help='Are you grepping this output?', required=False)
parser.add_argument('-t','--text', help='Text to decrypt', required=False)
parser.add_argument('-s','--sicko-mode', help='If it is encrypted Ciphey WILL find it', required=False)
parser.add_argument('-c','--cipher', help='What is the cipher used?', required=False)
#parser.add_argument('-s','--sicko-mode', help='If it is encrypted Ciphey WILL find it', required=False)
#parser.add_argument('-c','--cipher', help='What is the cipher used?', required=False)
args = vars(parser.parse_args())
if args['cipher'] != None:
@ -230,4 +230,4 @@ if __name__ == "__main__":
cipherObj = Ciphey(args['text'], cipher)
cipherObj.decrypt()
else:
print("You didn't supply any arguments")
print("You didn't supply any arguments. Look at the help menu with -h or --help")