@profullstack/threatcrush 0.1.0 → 0.1.1
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 +57 -0
- package/package.json +18 -6
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# @profullstack/threatcrush
|
|
2
|
+
|
|
3
|
+
> All-in-one security agent — monitor, detect, scan, and protect servers in real-time.
|
|
4
|
+
|
|
5
|
+
ThreatCrush is a security daemon that runs on your server, monitoring every connection on every port. It detects live attacks, scans your codebase, pentests your APIs, and alerts you in real-time.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm i -g @profullstack/threatcrush
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
threatcrush # Get started
|
|
17
|
+
threatcrush monitor # Real-time security monitoring
|
|
18
|
+
threatcrush tui # Interactive dashboard (htop for security)
|
|
19
|
+
threatcrush scan ./src # Scan code for vulnerabilities
|
|
20
|
+
threatcrush pentest URL # Penetration test a URL
|
|
21
|
+
threatcrush init # Auto-detect services, generate config
|
|
22
|
+
threatcrush modules # Manage security modules
|
|
23
|
+
threatcrush store # Browse the module marketplace
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## What It Does
|
|
27
|
+
|
|
28
|
+
- **Live Attack Detection** — Monitors all inbound connections on every port. Detects SQLi, XSS, brute force, SSH attacks, port scans, DNS tunneling.
|
|
29
|
+
- **Code Security Scanner** — Scan your codebase for vulnerabilities, secrets, and misconfigurations.
|
|
30
|
+
- **Pentest Engine** — Automated penetration testing on your URLs and APIs.
|
|
31
|
+
- **Network Monitor** — Watches all TCP/UDP traffic across every port.
|
|
32
|
+
- **Real-time Alerts** — Slack, email, webhook notifications when threats are detected.
|
|
33
|
+
- **systemd Daemon** — Runs as a background service, auto-starts on boot.
|
|
34
|
+
|
|
35
|
+
## Modular Architecture
|
|
36
|
+
|
|
37
|
+
ThreatCrush uses a pluggable module system. Install modules from the marketplace or build your own:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
threatcrush modules install ssh-guard
|
|
41
|
+
threatcrush modules install docker-monitor
|
|
42
|
+
threatcrush store search "firewall"
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Pricing
|
|
46
|
+
|
|
47
|
+
- **Lifetime Access** — $499 one-time (or $249 with a referral)
|
|
48
|
+
- Pay once, access forever. All core modules included.
|
|
49
|
+
|
|
50
|
+
## Links
|
|
51
|
+
|
|
52
|
+
- **Website:** [threatcrush.com](https://threatcrush.com)
|
|
53
|
+
- **GitHub:** [github.com/profullstack/threatcrush](https://github.com/profullstack/threatcrush)
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
Proprietary. See [LICENSE](https://github.com/profullstack/threatcrush/blob/master/LICENSE) for details.
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@profullstack/threatcrush",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "All-in-one security agent daemon — monitor, detect, scan, and protect servers in real-time",
|
|
5
|
-
|
|
6
5
|
"bin": {
|
|
7
6
|
"threatcrush": "./dist/index.js"
|
|
8
7
|
},
|
|
@@ -17,11 +16,14 @@
|
|
|
17
16
|
"keywords": [
|
|
18
17
|
"security",
|
|
19
18
|
"monitoring",
|
|
20
|
-
"ssh",
|
|
21
19
|
"threat-detection",
|
|
22
|
-
"
|
|
20
|
+
"pentest",
|
|
21
|
+
"scanner",
|
|
22
|
+
"daemon",
|
|
23
|
+
"cli",
|
|
24
|
+
"cybersecurity"
|
|
23
25
|
],
|
|
24
|
-
"license": "
|
|
26
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
25
27
|
"dependencies": {
|
|
26
28
|
"@iarna/toml": "^2.2.5",
|
|
27
29
|
"better-sqlite3": "^11.7.0",
|
|
@@ -37,5 +39,15 @@
|
|
|
37
39
|
"@types/node": "^22.19.17",
|
|
38
40
|
"tsup": "^8.5.1",
|
|
39
41
|
"typescript": "^5.9.3"
|
|
40
|
-
}
|
|
42
|
+
},
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/profullstack/threatcrush.git",
|
|
46
|
+
"directory": "cli"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://threatcrush.com",
|
|
49
|
+
"bugs": {
|
|
50
|
+
"url": "https://github.com/profullstack/threatcrush/issues"
|
|
51
|
+
},
|
|
52
|
+
"author": "Profullstack, Inc. <hello@profullstack.com>"
|
|
41
53
|
}
|