blitzstrike 1.0.20 → 1.0.21

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 (48) hide show
  1. package/manuals/active-directory/certipy.md +36 -0
  2. package/manuals/blue-team/clamav.md +34 -0
  3. package/manuals/blue-team/hayabusa.md +39 -0
  4. package/manuals/blue-team/osquery.md +28 -0
  5. package/manuals/blue-team/sigma.md +35 -0
  6. package/manuals/blue-team/snort.md +40 -0
  7. package/manuals/blue-team/suricata.md +40 -0
  8. package/manuals/blue-team/velociraptor.md +28 -0
  9. package/manuals/blue-team/wazuh.md +28 -0
  10. package/manuals/blue-team/zeek.md +39 -0
  11. package/manuals/cloud-native/cloudfox.md +35 -0
  12. package/manuals/crypto/ciphey.md +34 -0
  13. package/manuals/crypto/rsactftool.md +35 -0
  14. package/manuals/exploitation/gopherus.md +28 -0
  15. package/manuals/exploitation/nosqlmap.md +34 -0
  16. package/manuals/exploitation/ssrfmap.md +40 -0
  17. package/manuals/exploitation/ysoserial.md +32 -0
  18. package/manuals/forensics/autopsy.md +28 -0
  19. package/manuals/forensics/bulk_extractor.md +34 -0
  20. package/manuals/forensics/oletools.md +28 -0
  21. package/manuals/forensics/volatility3.md +35 -0
  22. package/manuals/forensics/zsteg.md +34 -0
  23. package/manuals/information-gathering/gau.md +38 -0
  24. package/manuals/information-gathering/holehe.md +28 -0
  25. package/manuals/information-gathering/rustscan.md +35 -0
  26. package/manuals/information-gathering/testssl.md +34 -0
  27. package/manuals/information-gathering/theharvester.md +36 -0
  28. package/manuals/information-gathering/waybackurls.md +32 -0
  29. package/manuals/mobile/androguard.md +28 -0
  30. package/manuals/mobile/apkleaks.md +35 -0
  31. package/manuals/mobile/mobsf.md +32 -0
  32. package/manuals/post-exploitation/pwncat-cs.md +28 -0
  33. package/manuals/red-team/evilginx3.md +34 -0
  34. package/manuals/reverse-engineering/angr.md +28 -0
  35. package/manuals/reverse-engineering/cutter.md +32 -0
  36. package/manuals/reverse-engineering/gdb.md +38 -0
  37. package/manuals/reverse-engineering/ghidra.md +32 -0
  38. package/manuals/reverse-engineering/ltrace.md +28 -0
  39. package/manuals/reverse-engineering/pwndbg.md +32 -0
  40. package/manuals/reverse-engineering/rizin.md +38 -0
  41. package/manuals/reverse-engineering/strace.md +34 -0
  42. package/manuals/utility/anew.md +28 -0
  43. package/manuals/utility/curl.md +37 -0
  44. package/manuals/utility/jq.md +34 -0
  45. package/manuals/utility/notify.md +34 -0
  46. package/manuals/web/droopescan.md +35 -0
  47. package/manuals/wireless/hcxdumptool.md +35 -0
  48. package/package.json +1 -1
@@ -0,0 +1,28 @@
1
+ # anew
2
+
3
+ - **Category**: Utility
4
+ - **Risk Level**: 🟢 Low
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Append new lines (dedup). Focus areas: dedup, pipe.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: go install github.com/tomnomnom/anew@latest
16
+ # darwin: brew install anew
17
+ # win32: go install github.com/tomnomnom/anew@latest
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ anew - <>
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ dedup, pipe
@@ -0,0 +1,37 @@
1
+ # curl
2
+
3
+ - **Category**: Utility
4
+ - **Risk Level**: 🟢 Low
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ HTTP client. Focus areas: http, client.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y curl
16
+ # darwin: brew install curl
17
+ # win32: choco install curl
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ curl -h
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-i` | Headers |
31
+ | `-X` | Method |
32
+ | `-d` | POST data |
33
+ | `-H` | Header |
34
+
35
+ ## Tags
36
+
37
+ http, client
@@ -0,0 +1,34 @@
1
+ # jq
2
+
3
+ - **Category**: Utility
4
+ - **Risk Level**: 🟢 Low
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ JSON processor. Focus areas: json, parse.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y jq
16
+ # darwin: brew install jq
17
+ # win32: choco install jq
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ jq - <>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-r` | Raw output |
31
+
32
+ ## Tags
33
+
34
+ json, parse
@@ -0,0 +1,34 @@
1
+ # notify
2
+
3
+ - **Category**: Utility
4
+ - **Risk Level**: 🟢 Low
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Send notifications. Focus areas: notify, alert.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: go install -v github.com/projectdiscovery/notify/cmd/notify@latest
16
+ # darwin: brew install notify
17
+ # win32: go install -v github.com/projectdiscovery/notify/cmd/notify@latest
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ notify -h
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-data` | Data file |
31
+
32
+ ## Tags
33
+
34
+ notify, alert
@@ -0,0 +1,35 @@
1
+ # droopescan
2
+
3
+ - **Category**: Web Application Security
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Drupal/Joomla scanner. Focus areas: drupal, cms.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages droopescan
16
+ # darwin: pip install --break-system-packages droopescan
17
+ # win32: pip install --break-system-packages droopescan
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ droopescan -scan <scan> -u <u>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `scan` | Mode (required) |
31
+ | `-u` | URL (required) |
32
+
33
+ ## Tags
34
+
35
+ drupal, cms
@@ -0,0 +1,35 @@
1
+ # hcxdumptool
2
+
3
+ - **Category**: Wireless Security
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Capture WPA handshakes/PMKID. Focus areas: wpa, handshake, wifi.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y hcxdumptool
16
+ # darwin: brew install hcxdumptool
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ hcxdumptool -h
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-i` | Interface |
31
+ | `-o` | Output |
32
+
33
+ ## Tags
34
+
35
+ wpa, handshake, wifi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blitzstrike",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "Blitz Strike — a universal MCP security-audit toolbelt. BLITZ sweeps the attack surface, EAGLE-EYE traces source-to-sink, STRIKE verifies live. 57 attack chains, 130-tool catalog, intelligence data layer. One server, every agent.",
5
5
  "type": "module",
6
6
  "bin": {