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.
Files changed (65) hide show
  1. package/README.md +86 -0
  2. package/bin/osintkit.js +7 -0
  3. package/osintkit/__init__.py +3 -0
  4. package/osintkit/__pycache__/__init__.cpython-311.pyc +0 -0
  5. package/osintkit/__pycache__/cli.cpython-311.pyc +0 -0
  6. package/osintkit/__pycache__/config.cpython-311.pyc +0 -0
  7. package/osintkit/__pycache__/profiles.cpython-311.pyc +0 -0
  8. package/osintkit/__pycache__/risk.cpython-311.pyc +0 -0
  9. package/osintkit/__pycache__/scanner.cpython-311.pyc +0 -0
  10. package/osintkit/cli.py +613 -0
  11. package/osintkit/config.py +51 -0
  12. package/osintkit/modules/__init__.py +6 -0
  13. package/osintkit/modules/__pycache__/__init__.cpython-311.pyc +0 -0
  14. package/osintkit/modules/__pycache__/breach.cpython-311.pyc +0 -0
  15. package/osintkit/modules/__pycache__/brokers.cpython-311.pyc +0 -0
  16. package/osintkit/modules/__pycache__/certs.cpython-311.pyc +0 -0
  17. package/osintkit/modules/__pycache__/dark_web.cpython-311.pyc +0 -0
  18. package/osintkit/modules/__pycache__/gravatar.cpython-311.pyc +0 -0
  19. package/osintkit/modules/__pycache__/harvester.cpython-311.pyc +0 -0
  20. package/osintkit/modules/__pycache__/hibp.cpython-311.pyc +0 -0
  21. package/osintkit/modules/__pycache__/hibp_kanon.cpython-311.pyc +0 -0
  22. package/osintkit/modules/__pycache__/holehe.cpython-311.pyc +0 -0
  23. package/osintkit/modules/__pycache__/libphonenumber_info.cpython-311.pyc +0 -0
  24. package/osintkit/modules/__pycache__/paste.cpython-311.pyc +0 -0
  25. package/osintkit/modules/__pycache__/phone.cpython-311.pyc +0 -0
  26. package/osintkit/modules/__pycache__/sherlock.cpython-311.pyc +0 -0
  27. package/osintkit/modules/__pycache__/social.cpython-311.pyc +0 -0
  28. package/osintkit/modules/__pycache__/wayback.cpython-311.pyc +0 -0
  29. package/osintkit/modules/breach.py +82 -0
  30. package/osintkit/modules/brokers.py +56 -0
  31. package/osintkit/modules/certs.py +42 -0
  32. package/osintkit/modules/dark_web.py +51 -0
  33. package/osintkit/modules/gravatar.py +50 -0
  34. package/osintkit/modules/harvester.py +56 -0
  35. package/osintkit/modules/hibp.py +40 -0
  36. package/osintkit/modules/hibp_kanon.py +66 -0
  37. package/osintkit/modules/holehe.py +39 -0
  38. package/osintkit/modules/libphonenumber_info.py +79 -0
  39. package/osintkit/modules/paste.py +55 -0
  40. package/osintkit/modules/phone.py +32 -0
  41. package/osintkit/modules/sherlock.py +48 -0
  42. package/osintkit/modules/social.py +58 -0
  43. package/osintkit/modules/stage2/__init__.py +1 -0
  44. package/osintkit/modules/stage2/github_api.py +65 -0
  45. package/osintkit/modules/stage2/hunter.py +64 -0
  46. package/osintkit/modules/stage2/leakcheck.py +58 -0
  47. package/osintkit/modules/stage2/numverify.py +62 -0
  48. package/osintkit/modules/stage2/securitytrails.py +65 -0
  49. package/osintkit/modules/wayback.py +70 -0
  50. package/osintkit/output/__init__.py +1 -0
  51. package/osintkit/output/__pycache__/__init__.cpython-311.pyc +0 -0
  52. package/osintkit/output/__pycache__/html_writer.cpython-311.pyc +0 -0
  53. package/osintkit/output/__pycache__/json_writer.cpython-311.pyc +0 -0
  54. package/osintkit/output/__pycache__/md_writer.cpython-311.pyc +0 -0
  55. package/osintkit/output/html_writer.py +36 -0
  56. package/osintkit/output/json_writer.py +31 -0
  57. package/osintkit/output/md_writer.py +115 -0
  58. package/osintkit/output/templates/report.html +74 -0
  59. package/osintkit/profiles.py +116 -0
  60. package/osintkit/risk.py +42 -0
  61. package/osintkit/scanner.py +240 -0
  62. package/osintkit/setup.py +157 -0
  63. package/package.json +25 -0
  64. package/pyproject.toml +44 -0
  65. 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
@@ -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));
@@ -0,0 +1,3 @@
1
+ """osintkit - OSINT CLI tool for personal digital footprint analysis."""
2
+
3
+ __version__ = "0.1.0"