Skip to content

Commit 2e8316a

Browse files
author
Scott Thornton
committed
docs: Add complete documentation
1 parent c10468f commit 2e8316a

File tree

4 files changed

+82
-0
lines changed

4 files changed

+82
-0
lines changed

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
venv/
23+
env/
24+
ENV/
25+
126
# Logs
227
logs
328
*.log
@@ -7,6 +32,7 @@ yarn-error.log*
732
pnpm-debug.log*
833
lerna-debug.log*
934

35+
# Node.js
1036
node_modules
1137
dist
1238
dist-ssr
@@ -22,3 +48,14 @@ dist-ssr
2248
*.njsproj
2349
*.sln
2450
*.sw?
51+
52+
# AI tool artifacts
53+
.claude/
54+
CLAUDE.md
55+
claude.md
56+
planning.md
57+
status.md
58+
notes.md
59+
todo.md
60+
*.chat
61+
*.conversation

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Changelog
2+
3+
## [Unreleased]
4+
5+
### Added
6+
- Collection of 10 Python security tools for red teaming and penetration testing
7+
- **log_analyzer.py** - Authentication log analysis and brute force detection
8+
- **port_scanner.py** - TCP port scanning to identify open ports and services
9+
- **password_checker.py** - Password strength evaluation
10+
- **directory_bruteforce.py** - Hidden directory and file discovery on web servers
11+
- **packet_sniffer.py** - Network packet capture and analysis
12+
- **file_integrity_monitor.py** - File change monitoring via hash checking
13+
- **subdomain_enum.py** - Subdomain enumeration
14+
- **web_vuln_scanner.py** - Web vulnerability scanning (XSS, SQLi, open redirects)
15+
- **dns_recon.py** - DNS information gathering
16+
- **hash_cracker.py** - Password hash cracking (dictionary and brute force)
17+
- Web frontend interface for tool management
18+
- Educational security testing utilities
19+
- Ethical use disclaimer and authorization requirements
20+
21+
[Unreleased]: https://github.com/scthornton/python-guardians/commits/main

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Scott Thornton
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

SECURITY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Security Policy
2+
3+
**Email:** scott@perfecxion.ai

0 commit comments

Comments
 (0)