https://github.com/husseinfo/securitools
Useful security related tools
https://github.com/husseinfo/securitools
bash encryption security shell
Last synced: about 1 year ago
JSON representation
Useful security related tools
- Host: GitHub
- URL: https://github.com/husseinfo/securitools
- Owner: Husseinfo
- Created: 2017-08-25T17:09:56.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-25T17:24:26.000Z (almost 9 years ago)
- Last Synced: 2025-02-10T00:44:44.443Z (over 1 year ago)
- Topics: bash, encryption, security, shell
- Language: Shell
- Size: 1000 Bytes
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# securitools
## genpass
Hash your plain text password to become a strong hexadecimal one and then use it.
```
MBP:~ hussein$ genpass
Enter the password 👀
Mjg2NzU1ZmFkMDQ4NjljYTUyMzMyMGFjY2UwZGM2YTQgIC0K
Copy it and clear the console 🙄
```
## crypto
Encrypt and decrypt files in a very simple way.
```
⚠️ Usage: crypto [-e file_to_encrypt | -d file_to_decrypt]
```
```
MBP:~ hussein$ crypto -e secret_file.zip
🔒 Encrypting secret_file.zip using AES with 256 bit key length in CBC mode
enter aes-256-cbc encryption password:
Verifying - enter aes-256-cbc encryption password:
✅ secret_file.zip is encrypted as secret_file.zip.enc
MBP:~ hussein$ crypto -d secret_file.zip.enc
🔓 Decrypting secret_file.zip.enc using AES with 256 bit key length in CBC mode
enter aes-256-cbc decryption password:
✅ secret_file.zip.enc is decrypted as secret_file.zip
```