Skip to content

Commit 194691f

Browse files
authored
Update README.md
1 parent 1384106 commit 194691f

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

README.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,33 @@
11
# cybersecurity-python-projects
2-
A collection of beginner-friendly cybersecurity tools built with Python — includes password strength checker, Caesar cipher, image encryption, and a keylogger for ethical learning.
2+
3+
# 🔐 Basic Cybersecurity Tools
4+
5+
A collection of beginner-level Python tools to understand cybersecurity concepts through code. Each project is isolated, well-documented, and designed to strengthen your security fundamentals and Python skills.
6+
7+
---
8+
9+
## 📦 Tool Summary
10+
11+
| Tool Name | Description | Key Concepts | Link |
12+
|---------------------------|-----------------------------------------------------------------------------|----------------------------------------|----------------------------------------------|
13+
| **Password Strength Checker** | Evaluates password strength based on length, character types, etc. | Input validation, regex, logic | [Go to Tool](./password_strength_checker/) |
14+
| **Image Encryption Tool** | Encrypts images via pixel manipulation (swapping, math ops) | Image data, loops, pixel math | [Go to Tool](./image_encryption_tool/) |
15+
| **Caesar Cipher** | Classic text encryption/decryption using character shifting | ASCII operations, strings, logic | [Go to Tool](./caesar_cipher/) |
16+
| **Keylogger** | Logs user keystrokes to a file (ethical use only) | File I/O, OS-level hooks, event capture| [Go to Tool](./keylogger/) |
17+
18+
---
19+
20+
## 🎯 Objectives
21+
22+
- Understand security tool logic by building them from scratch.
23+
- Practice Python syntax and core programming patterns.
24+
- Bridge the gap between theory and applied cybersecurity.
25+
26+
---
27+
28+
## 🚀 Getting Started
29+
30+
```bash
31+
git clone https://github.com/yourusername/basic-cybersecurity-tools.git
32+
cd basic-cybersecurity-tools
33+

0 commit comments

Comments
 (0)