blitzstrike 1.0.19 → 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 (49) hide show
  1. package/dist/index.js +101 -2
  2. package/manuals/active-directory/certipy.md +36 -0
  3. package/manuals/blue-team/clamav.md +34 -0
  4. package/manuals/blue-team/hayabusa.md +39 -0
  5. package/manuals/blue-team/osquery.md +28 -0
  6. package/manuals/blue-team/sigma.md +35 -0
  7. package/manuals/blue-team/snort.md +40 -0
  8. package/manuals/blue-team/suricata.md +40 -0
  9. package/manuals/blue-team/velociraptor.md +28 -0
  10. package/manuals/blue-team/wazuh.md +28 -0
  11. package/manuals/blue-team/zeek.md +39 -0
  12. package/manuals/cloud-native/cloudfox.md +35 -0
  13. package/manuals/crypto/ciphey.md +34 -0
  14. package/manuals/crypto/rsactftool.md +35 -0
  15. package/manuals/exploitation/gopherus.md +28 -0
  16. package/manuals/exploitation/nosqlmap.md +34 -0
  17. package/manuals/exploitation/ssrfmap.md +40 -0
  18. package/manuals/exploitation/ysoserial.md +32 -0
  19. package/manuals/forensics/autopsy.md +28 -0
  20. package/manuals/forensics/bulk_extractor.md +34 -0
  21. package/manuals/forensics/oletools.md +28 -0
  22. package/manuals/forensics/volatility3.md +35 -0
  23. package/manuals/forensics/zsteg.md +34 -0
  24. package/manuals/information-gathering/gau.md +38 -0
  25. package/manuals/information-gathering/holehe.md +28 -0
  26. package/manuals/information-gathering/rustscan.md +35 -0
  27. package/manuals/information-gathering/testssl.md +34 -0
  28. package/manuals/information-gathering/theharvester.md +36 -0
  29. package/manuals/information-gathering/waybackurls.md +32 -0
  30. package/manuals/mobile/androguard.md +28 -0
  31. package/manuals/mobile/apkleaks.md +35 -0
  32. package/manuals/mobile/mobsf.md +32 -0
  33. package/manuals/post-exploitation/pwncat-cs.md +28 -0
  34. package/manuals/red-team/evilginx3.md +34 -0
  35. package/manuals/reverse-engineering/angr.md +28 -0
  36. package/manuals/reverse-engineering/cutter.md +32 -0
  37. package/manuals/reverse-engineering/gdb.md +38 -0
  38. package/manuals/reverse-engineering/ghidra.md +32 -0
  39. package/manuals/reverse-engineering/ltrace.md +28 -0
  40. package/manuals/reverse-engineering/pwndbg.md +32 -0
  41. package/manuals/reverse-engineering/rizin.md +38 -0
  42. package/manuals/reverse-engineering/strace.md +34 -0
  43. package/manuals/utility/anew.md +28 -0
  44. package/manuals/utility/curl.md +37 -0
  45. package/manuals/utility/jq.md +34 -0
  46. package/manuals/utility/notify.md +34 -0
  47. package/manuals/web/droopescan.md +35 -0
  48. package/manuals/wireless/hcxdumptool.md +35 -0
  49. package/package.json +1 -1
@@ -0,0 +1,28 @@
1
+ # ltrace
2
+
3
+ - **Category**: Reverse Engineering
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Library call tracer. Focus areas: trace, library.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y ltrace
16
+ # darwin: brew install ltrace
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ ltrace - <>
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ trace, library
@@ -0,0 +1,32 @@
1
+ # pwndbg
2
+
3
+ - **Category**: Reverse Engineering
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ GDB plugin for exploit dev. Focus areas: exploit, gdb, pwn. Alternatives: gef.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: git clone https://github.com/pwndbg/pwndbg && cd pwndbg && ./setup.sh
16
+ # darwin: manual
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ pwndbg -h
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ exploit, gdb, pwn
29
+
30
+ ## Alternatives
31
+
32
+ gef
@@ -0,0 +1,38 @@
1
+ # rizin
2
+
3
+ - **Category**: Reverse Engineering
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Modern r2 fork. Focus areas: disassembler, binary. Alternatives: radare2.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: git clone https://github.com/rizinorg/rizin && cd rizin && meson build && ninja -C build
16
+ # darwin: brew install rizin
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ rizin - <>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-A` | Analyze |
31
+
32
+ ## Tags
33
+
34
+ disassembler, binary
35
+
36
+ ## Alternatives
37
+
38
+ radare2
@@ -0,0 +1,34 @@
1
+ # strace
2
+
3
+ - **Category**: Reverse Engineering
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ System call tracer. Focus areas: trace, syscall.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y strace
16
+ # darwin: brew install strace
17
+ # win32: choco install strace
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ strace - <>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-f` | Follow forks |
31
+
32
+ ## Tags
33
+
34
+ trace, syscall
@@ -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.19",
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": {