https://github.com/mqtth3w/cybersecurity-tools
Cybersecurity scripts, tools and methods: password generator, password manager, sniffer, encrypt/decrypt everything
https://github.com/mqtth3w/cybersecurity-tools
aes-256 aes-encryption cybersecurity encryption-decryption integrity-check password-generator sniffer-packet
Last synced: 3 months ago
JSON representation
Cybersecurity scripts, tools and methods: password generator, password manager, sniffer, encrypt/decrypt everything
- Host: GitHub
- URL: https://github.com/mqtth3w/cybersecurity-tools
- Owner: Mqtth3w
- License: gpl-3.0
- Created: 2024-05-13T18:35:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-21T18:22:48.000Z (6 months ago)
- Last Synced: 2024-12-21T19:26:17.061Z (6 months ago)
- Topics: aes-256, aes-encryption, cybersecurity, encryption-decryption, integrity-check, password-generator, sniffer-packet
- Language: Python
- Homepage:
- Size: 252 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cybersecurity scripts and tools
Its only for education purposes.
## Scripts
- [check_passw_sec_model.py](./check_passw_sec_model.py) Simple AI model to check if a password is secure.
- [secNotes.py](./secNotes.py) Data confidentiality and integrity with GUI. To encrypt/decrypt text notes (e.g. passwords).
- [secImgs.py](./secImgs.py) Data confidentiality and integrity with GUI. It was designed for images but it can encrypt/decrypt all types of files.
- [sniffer.py](./sniffer.py) Simple packet sniffer.
- [password_generator.py](./password_generator.py) Generate all possible combinations/permutations from user preference/data. ex: favorite date, favorite films, name, etc.## Methods
Windows: login bypass in less than 3min.
Execute the following commands.
```cmd
to do
```Windows: get wifi saved passwords from a terminal
Execute the following command:```cmd
netsh wlan show profiles
```
choose the profile of interest, then:
```cmd
netsh wlan show profile name= key=clear
```
## Creating an executable
```bash
pip install pyinstaller
```
```bash
pyinstaller --onefile --name exec_name source_script.py
```
