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,35 @@
1
+ # volatility3
2
+
3
+ - **Category**: Forensics
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Memory forensics. Focus areas: memory, forensics, dfir.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages volatility3
16
+ # darwin: pip install --break-system-packages volatility3
17
+ # win32: pip install --break-system-packages volatility3
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ vol -f <f>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-f` | Memory dump (required) |
31
+ | `windows.pslist` | Plugin |
32
+
33
+ ## Tags
34
+
35
+ memory, forensics, dfir
@@ -0,0 +1,34 @@
1
+ # zsteg
2
+
3
+ - **Category**: Forensics
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ PNG/BMP stego detection. Focus areas: stego, png, forensics.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: gem install zsteg
16
+ # darwin: brew install zsteg
17
+ # win32: gem install zsteg
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ zsteg - <>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-a` | All methods |
31
+
32
+ ## Tags
33
+
34
+ stego, png, forensics
@@ -0,0 +1,38 @@
1
+ # gau
2
+
3
+ - **Category**: Information Gathering / Reconnaissance
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Get all URLs (Wayback+OTX+CommonCrawl). Focus areas: url, archive.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: go install github.com/lc/gau/v2/cmd/gau@latest
16
+ # darwin: brew install gau
17
+ # win32: go install github.com/lc/gau/v2/cmd/gau@latest
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ gau - <>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `--subs` | Include subdomains |
31
+
32
+ ## Tags
33
+
34
+ url, archive
35
+
36
+ ## Pipeline
37
+
38
+ Pipes well into: anew
@@ -0,0 +1,28 @@
1
+ # holehe
2
+
3
+ - **Category**: Information Gathering / Reconnaissance
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Email registration check. Focus areas: email, osint.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages holehe
16
+ # darwin: pip install --break-system-packages holehe
17
+ # win32: pip install --break-system-packages holehe
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ holehe - <>
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ email, osint
@@ -0,0 +1,35 @@
1
+ # rustscan
2
+
3
+ - **Category**: Information Gathering / Reconnaissance
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Fast port scanner + nmap. Focus areas: port, scan, fast.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: cargo install rustscan
16
+ # darwin: brew install rustscan
17
+ # win32: cargo install rustscan
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ rustscan -a <a>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-a` | Target (required) |
31
+ | `--range` | Port range |
32
+
33
+ ## Tags
34
+
35
+ port, scan, fast
@@ -0,0 +1,34 @@
1
+ # testssl
2
+
3
+ - **Category**: Enumeration
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ TLS/SSL scanner. Focus areas: tls, ssl, crypto.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: git clone https://github.com/drwetter/testssl.sh
16
+ # darwin: brew install testssl
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ testssl - <>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-p` | Protocols |
31
+
32
+ ## Tags
33
+
34
+ tls, ssl, crypto
@@ -0,0 +1,36 @@
1
+ # theHarvester
2
+
3
+ - **Category**: Information Gathering / Reconnaissance
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Email/domain/subdomain OSINT. Focus areas: email, osint, domain.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages theHarvester
16
+ # darwin: brew install theharvester
17
+ # win32: pip install --break-system-packages theHarvester
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ theHarvester -d <d>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-d` | Domain (required) |
31
+ | `-b` | Source |
32
+ | `-l` | Limit |
33
+
34
+ ## Tags
35
+
36
+ email, osint, domain
@@ -0,0 +1,32 @@
1
+ # waybackurls
2
+
3
+ - **Category**: Information Gathering / Reconnaissance
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ URLs from Wayback Machine. Focus areas: url, archive, osint.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: go install github.com/tomnomnom/waybackurls@latest
16
+ # darwin: brew install waybackurls
17
+ # win32: go install github.com/tomnomnom/waybackurls@latest
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ waybackurls - <>
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ url, archive, osint
29
+
30
+ ## Pipeline
31
+
32
+ Pipes well into: anew, httpx
@@ -0,0 +1,28 @@
1
+ # androguard
2
+
3
+ - **Category**: Mobile Security
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Android static analysis. Focus areas: android, static, analysis.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages androguard
16
+ # darwin: pip install --break-system-packages androguard
17
+ # win32: pip install --break-system-packages androguard
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ androguard -h
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ android, static, analysis
@@ -0,0 +1,35 @@
1
+ # apkleaks
2
+
3
+ - **Category**: Mobile Security
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ APK secrets + endpoints. Focus areas: apk, secrets, endpoint.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages apkleaks
16
+ # darwin: pip install --break-system-packages apkleaks
17
+ # win32: pip install --break-system-packages apkleaks
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ apkleaks -f <f>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-f` | APK (required) |
31
+ | `-o` | Output |
32
+
33
+ ## Tags
34
+
35
+ apk, secrets, endpoint
@@ -0,0 +1,32 @@
1
+ # mobsf
2
+
3
+ - **Category**: Mobile Security
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Mobile app security framework. Focus areas: android, ios, static. Alternatives: apkleaks.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: docker pull opensecurity/mobile-security-framework-mobsf
16
+ # darwin: manual
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ mobsf -h
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ android, ios, static
29
+
30
+ ## Alternatives
31
+
32
+ apkleaks
@@ -0,0 +1,28 @@
1
+ # pwncat-cs
2
+
3
+ - **Category**: Post-Exploitation
4
+ - **Risk Level**: 🔴 High
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Netcat replacement. Focus areas: shell, netcat, reverse.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages pwncat-cs
16
+ # darwin: pip install --break-system-packages pwncat-cs
17
+ # win32: pip install --break-system-packages pwncat-cs
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ pwncat-cs - <> - <>
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ shell, netcat, reverse
@@ -0,0 +1,34 @@
1
+ # evilginx3
2
+
3
+ - **Category**: Red Team / Phishing
4
+ - **Risk Level**: 🔴 High
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Phishing (session hijack, MFA bypass). Focus areas: phishing, mfa, session.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: git clone https://github.com/kgretzky/evilginx2 && cd evilginx2 && make
16
+ # darwin: manual
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ evilginx -h
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-p` | Phishlet dir |
31
+
32
+ ## Tags
33
+
34
+ phishing, mfa, session
@@ -0,0 +1,28 @@
1
+ # angr
2
+
3
+ - **Category**: Reverse Engineering
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Symbolic binary analysis. Focus areas: symbolic, analysis, ctf.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages angr
16
+ # darwin: pip install --break-system-packages angr
17
+ # win32: pip install --break-system-packages angr
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ angr -h
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ symbolic, analysis, ctf
@@ -0,0 +1,32 @@
1
+ # cutter
2
+
3
+ - **Category**: Reverse Engineering
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ GUI for radare2. Focus areas: disassembler, gui. Alternatives: ghidra.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: download from github releases
16
+ # darwin: brew install --cask cutter
17
+ # win32: choco install cutter
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ cutter -h
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ disassembler, gui
29
+
30
+ ## Alternatives
31
+
32
+ ghidra
@@ -0,0 +1,38 @@
1
+ # gdb
2
+
3
+ - **Category**: Reverse Engineering
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ GNU debugger. Focus areas: debugger, binary. Alternatives: pwndbg, gef.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y gdb
16
+ # darwin: brew install gdb
17
+ # win32: choco install gdb
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ gdb - <>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-q` | Quiet |
31
+
32
+ ## Tags
33
+
34
+ debugger, binary
35
+
36
+ ## Alternatives
37
+
38
+ pwndbg, gef
@@ -0,0 +1,32 @@
1
+ # ghidra
2
+
3
+ - **Category**: Reverse Engineering
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ NSA RE suite. Focus areas: disassembler, decompiler. Alternatives: radare2, cutter.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: download from github releases
16
+ # darwin: brew install --cask ghidra
17
+ # win32: choco install ghidra
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ ghidra -h
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ disassembler, decompiler
29
+
30
+ ## Alternatives
31
+
32
+ radare2, cutter
@@ -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