osintkit 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +86 -0
- package/bin/osintkit.js +7 -0
- package/osintkit/__init__.py +3 -0
- package/osintkit/__pycache__/__init__.cpython-311.pyc +0 -0
- package/osintkit/__pycache__/cli.cpython-311.pyc +0 -0
- package/osintkit/__pycache__/config.cpython-311.pyc +0 -0
- package/osintkit/__pycache__/profiles.cpython-311.pyc +0 -0
- package/osintkit/__pycache__/risk.cpython-311.pyc +0 -0
- package/osintkit/__pycache__/scanner.cpython-311.pyc +0 -0
- package/osintkit/cli.py +613 -0
- package/osintkit/config.py +51 -0
- package/osintkit/modules/__init__.py +6 -0
- package/osintkit/modules/__pycache__/__init__.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/breach.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/brokers.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/certs.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/dark_web.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/gravatar.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/harvester.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/hibp.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/hibp_kanon.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/holehe.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/libphonenumber_info.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/paste.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/phone.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/sherlock.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/social.cpython-311.pyc +0 -0
- package/osintkit/modules/__pycache__/wayback.cpython-311.pyc +0 -0
- package/osintkit/modules/breach.py +82 -0
- package/osintkit/modules/brokers.py +56 -0
- package/osintkit/modules/certs.py +42 -0
- package/osintkit/modules/dark_web.py +51 -0
- package/osintkit/modules/gravatar.py +50 -0
- package/osintkit/modules/harvester.py +56 -0
- package/osintkit/modules/hibp.py +40 -0
- package/osintkit/modules/hibp_kanon.py +66 -0
- package/osintkit/modules/holehe.py +39 -0
- package/osintkit/modules/libphonenumber_info.py +79 -0
- package/osintkit/modules/paste.py +55 -0
- package/osintkit/modules/phone.py +32 -0
- package/osintkit/modules/sherlock.py +48 -0
- package/osintkit/modules/social.py +58 -0
- package/osintkit/modules/stage2/__init__.py +1 -0
- package/osintkit/modules/stage2/github_api.py +65 -0
- package/osintkit/modules/stage2/hunter.py +64 -0
- package/osintkit/modules/stage2/leakcheck.py +58 -0
- package/osintkit/modules/stage2/numverify.py +62 -0
- package/osintkit/modules/stage2/securitytrails.py +65 -0
- package/osintkit/modules/wayback.py +70 -0
- package/osintkit/output/__init__.py +1 -0
- package/osintkit/output/__pycache__/__init__.cpython-311.pyc +0 -0
- package/osintkit/output/__pycache__/html_writer.cpython-311.pyc +0 -0
- package/osintkit/output/__pycache__/json_writer.cpython-311.pyc +0 -0
- package/osintkit/output/__pycache__/md_writer.cpython-311.pyc +0 -0
- package/osintkit/output/html_writer.py +36 -0
- package/osintkit/output/json_writer.py +31 -0
- package/osintkit/output/md_writer.py +115 -0
- package/osintkit/output/templates/report.html +74 -0
- package/osintkit/profiles.py +116 -0
- package/osintkit/risk.py +42 -0
- package/osintkit/scanner.py +240 -0
- package/osintkit/setup.py +157 -0
- package/package.json +25 -0
- package/pyproject.toml +44 -0
- package/requirements.txt +9 -0
package/README.md
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# osintkit
|
|
2
|
+
|
|
3
|
+
OSINT CLI tool for personal digital footprint analysis.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# From source
|
|
9
|
+
cd osintkit-oss
|
|
10
|
+
npm install -g .
|
|
11
|
+
|
|
12
|
+
# Or use directly without installation
|
|
13
|
+
PYTHONPATH=. python3 -m osintkit.cli <command>
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Quick Start
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
# First-time setup (configure API keys)
|
|
20
|
+
osintkit setup
|
|
21
|
+
|
|
22
|
+
# Create a new profile
|
|
23
|
+
osintkit new
|
|
24
|
+
|
|
25
|
+
# List all profiles
|
|
26
|
+
osintkit list
|
|
27
|
+
|
|
28
|
+
# Run a scan
|
|
29
|
+
osintkit refresh <profile_id>
|
|
30
|
+
|
|
31
|
+
# View profile details
|
|
32
|
+
osintkit open <profile_id>
|
|
33
|
+
|
|
34
|
+
# Export data
|
|
35
|
+
osintkit export <profile_id>
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Commands
|
|
39
|
+
|
|
40
|
+
| Command | Description |
|
|
41
|
+
|---------|-------------|
|
|
42
|
+
| `osintkit new` | Create new profile |
|
|
43
|
+
| `osintkit list` | List all profiles |
|
|
44
|
+
| `osintkit refresh <id>` | Run scan for profile |
|
|
45
|
+
| `osintkit open <id>` | Show profile details |
|
|
46
|
+
| `osintkit export <id>` | Export as JSON/Markdown |
|
|
47
|
+
| `osintkit setup` | Configure API keys |
|
|
48
|
+
| `osintkit delete <id>` | Delete profile |
|
|
49
|
+
| `osintkit version` | Show version |
|
|
50
|
+
|
|
51
|
+
## Features
|
|
52
|
+
|
|
53
|
+
- **Profile Management** - Store and manage multiple target profiles
|
|
54
|
+
- **Duplicate Detection** - Warns when creating profiles with existing info
|
|
55
|
+
- **OSINT Modules** - 10 integrated OSINT data sources
|
|
56
|
+
- **Risk Scoring** - 0-100 risk score based on findings
|
|
57
|
+
- **Export** - JSON and Markdown report formats
|
|
58
|
+
|
|
59
|
+
## API Keys (Optional)
|
|
60
|
+
|
|
61
|
+
Free API keys available for enhanced functionality:
|
|
62
|
+
|
|
63
|
+
| Service | Free Limit | Purpose |
|
|
64
|
+
|---------|------------|---------|
|
|
65
|
+
| Have I Been Pwned | 10/min | Breach database |
|
|
66
|
+
| NumVerify | 100/month | Phone validation |
|
|
67
|
+
| Intelbase | 100/month | Dark web + paste |
|
|
68
|
+
| BreachDirectory | 50/day | Breach lookups |
|
|
69
|
+
| Google CSE | 100/day | Data broker detection |
|
|
70
|
+
|
|
71
|
+
## Requirements
|
|
72
|
+
|
|
73
|
+
- Python 3.11+
|
|
74
|
+
- Node.js 12+
|
|
75
|
+
- pip
|
|
76
|
+
|
|
77
|
+
## External Tools (Optional)
|
|
78
|
+
|
|
79
|
+
For full functionality, install:
|
|
80
|
+
```bash
|
|
81
|
+
pip install maigret holehe theHarvester
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## License
|
|
85
|
+
|
|
86
|
+
MIT
|
package/bin/osintkit.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const { spawn } = require('child_process');
|
|
3
|
+
const python = spawn('python3', ['-m', 'osintkit', ...process.argv.slice(2)], {
|
|
4
|
+
stdio: 'inherit', env: process.env
|
|
5
|
+
});
|
|
6
|
+
python.on('error', () => { console.error('Python 3.10+ required'); process.exit(1); });
|
|
7
|
+
python.on('close', (code) => process.exit(code || 0));
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|