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,36 @@
1
+ # certipy
2
+
3
+ - **Category**: Active Directory
4
+ - **Risk Level**: 🔴 High
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ AD CS abuse. Focus areas: adcs, certificate, ad.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages certipy-ad
16
+ # darwin: pip install --break-system-packages certipy-ad
17
+ # win32: pip install --break-system-packages certipy-ad
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ certipy -find <find>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `find` | Mode (required) |
31
+ | `-u` | Username |
32
+ | `-dc-ip` | DC IP |
33
+
34
+ ## Tags
35
+
36
+ adcs, certificate, ad
@@ -0,0 +1,34 @@
1
+ # clamav
2
+
3
+ - **Category**: Blue Team / Detection
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Antivirus. Focus areas: av, malware.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y clamav
16
+ # darwin: brew install clamav
17
+ # win32: choco install clamav
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ clamscan - <>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-r` | Recursive |
31
+
32
+ ## Tags
33
+
34
+ av, malware
@@ -0,0 +1,39 @@
1
+ # hayabusa
2
+
3
+ - **Category**: Blue Team / Detection
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Windows event log forensics. Focus areas: windows, eventlog, forensics. Alternatives: chainsaw.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: download binary from github
16
+ # darwin: manual
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ hayabusa -csv-timeline <csv-timeline>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `csv-timeline` | Mode (required) |
31
+ | `-d` | Log dir |
32
+
33
+ ## Tags
34
+
35
+ windows, eventlog, forensics
36
+
37
+ ## Alternatives
38
+
39
+ chainsaw
@@ -0,0 +1,28 @@
1
+ # osquery
2
+
3
+ - **Category**: Blue Team / Detection
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ SQL-powered host monitoring. Focus areas: host, edr, monitor.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y osquery
16
+ # darwin: brew install --cask osquery
17
+ # win32: choco install osquery
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ osqueryi - <>
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ host, edr, monitor
@@ -0,0 +1,35 @@
1
+ # sigma
2
+
3
+ - **Category**: Blue Team / Detection
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Generic detection rules. Focus areas: detection, rules, siem.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages sigma-cli
16
+ # darwin: pip install --break-system-packages sigma-cli
17
+ # win32: pip install --break-system-packages sigma-cli
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ sigma -convert <convert>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `convert` | Mode (required) |
31
+ | `-t` | Target |
32
+
33
+ ## Tags
34
+
35
+ detection, rules, siem
@@ -0,0 +1,40 @@
1
+ # snort
2
+
3
+ - **Category**: Blue Team / Detection
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Network IDS/IPS. Focus areas: ids, network. Alternatives: suricata.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y snort
16
+ # darwin: brew install snort
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ snort -h
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-i` | Interface |
31
+ | `-c` | Config |
32
+ | `-A` | Alert mode |
33
+
34
+ ## Tags
35
+
36
+ ids, network
37
+
38
+ ## Alternatives
39
+
40
+ suricata
@@ -0,0 +1,40 @@
1
+ # suricata
2
+
3
+ - **Category**: Blue Team / Detection
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Network IDS/IPS. Focus areas: ids, ips, network. Alternatives: snort, zeek.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y suricata
16
+ # darwin: brew install suricata
17
+ # win32: choco install suricata
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ suricata -h
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-i` | Interface |
31
+ | `-r` | PCAP |
32
+ | `-c` | Config |
33
+
34
+ ## Tags
35
+
36
+ ids, ips, network
37
+
38
+ ## Alternatives
39
+
40
+ snort, zeek
@@ -0,0 +1,28 @@
1
+ # velociraptor
2
+
3
+ - **Category**: Blue Team / Detection
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ DFIR + monitoring. Focus areas: dfir, edr, monitor.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: download from github releases
16
+ # darwin: manual
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ velociraptor - <>
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ dfir, edr, monitor
@@ -0,0 +1,28 @@
1
+ # wazuh
2
+
3
+ - **Category**: Blue Team / Detection
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ SIEM + XDR. Focus areas: siem, xdr, edr.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: curl -s https://packages.wazuh.com/4.x/install.sh | bash
16
+ # darwin: manual
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ wazuh -h
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ siem, xdr, edr
@@ -0,0 +1,39 @@
1
+ # zeek
2
+
3
+ - **Category**: Blue Team / Detection
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Network security monitor. Focus areas: network, monitor, nsm. Alternatives: suricata.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y zeek
16
+ # darwin: brew install zeek
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ zeek -r <r>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-r` | PCAP (required) |
31
+ | `-C` | Ignore checksum |
32
+
33
+ ## Tags
34
+
35
+ network, monitor, nsm
36
+
37
+ ## Alternatives
38
+
39
+ suricata
@@ -0,0 +1,35 @@
1
+ # cloudfox
2
+
3
+ - **Category**: Cloud Security
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Cloud attack path finder. Focus areas: cloud, attack-path.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: download from github releases
16
+ # darwin: manual
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ cloudfox -aws <aws>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `aws` | Provider (required) |
31
+ | `-p` | Profile |
32
+
33
+ ## Tags
34
+
35
+ cloud, attack-path
@@ -0,0 +1,34 @@
1
+ # ciphey
2
+
3
+ - **Category**: Cryptography
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Cipher/encoding auto-decode. Focus areas: cipher, decode, ctf.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages ciphey
16
+ # darwin: pip install --break-system-packages ciphey
17
+ # win32: pip install --break-system-packages ciphey
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ ciphey -t <t>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-t` | Ciphertext (required) |
31
+
32
+ ## Tags
33
+
34
+ cipher, decode, ctf
@@ -0,0 +1,35 @@
1
+ # rsactftool
2
+
3
+ - **Category**: Cryptography
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ RSA attack toolkit. Focus areas: rsa, crypto, ctf.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: git clone https://github.com/RsaCtfTool/RsaCtfTool && pip install -r requirements.txt
16
+ # darwin: manual
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ RsaCtfTool -h
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `--publickey` | Public key |
31
+ | `--attack` | Attack type |
32
+
33
+ ## Tags
34
+
35
+ rsa, crypto, ctf
@@ -0,0 +1,28 @@
1
+ # gopherus
2
+
3
+ - **Category**: Exploitation
4
+ - **Risk Level**: 🔴 High
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Gopher SSRF payloads. Focus areas: ssrf, gopher, payload.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: git clone https://github.com/tarunkant/Gopherus && cd Gopherus && pip install -r requirements.txt
16
+ # darwin: manual
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ gopherus - <>
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ ssrf, gopher, payload
@@ -0,0 +1,34 @@
1
+ # nosqlmap
2
+
3
+ - **Category**: Exploitation
4
+ - **Risk Level**: 🔴 High
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ NoSQL injection. Focus areas: nosql, injection.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages nosqlmap
16
+ # darwin: pip install --break-system-packages nosqlmap
17
+ # win32: pip install --break-system-packages nosqlmap
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ nosqlmap -u <u>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-u` | URL (required) |
31
+
32
+ ## Tags
33
+
34
+ nosql, injection
@@ -0,0 +1,40 @@
1
+ # ssrfmap
2
+
3
+ - **Category**: Exploitation
4
+ - **Risk Level**: 🔴 High
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ SSRF exploitation. Focus areas: ssrf, exploit. Alternatives: gopherus.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: git clone https://github.com/swisskyrepo/SSRFmap && cd SSRFmap && pip install -r requirements.txt
16
+ # darwin: manual
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ ssrfmap -r <r>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-r` | Request file (required) |
31
+ | `-p` | Param |
32
+ | `-m` | Module |
33
+
34
+ ## Tags
35
+
36
+ ssrf, exploit
37
+
38
+ ## Alternatives
39
+
40
+ gopherus
@@ -0,0 +1,32 @@
1
+ # ysoserial
2
+
3
+ - **Category**: Exploitation
4
+ - **Risk Level**: 🔴 High
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Java deserialization payloads. Focus areas: deserialization, java. Alternatives: phpggc.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: download jar from github
16
+ # darwin: brew install ysoserial
17
+ # win32: download jar from github
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ ysoserial - <>
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ deserialization, java
29
+
30
+ ## Alternatives
31
+
32
+ phpggc
@@ -0,0 +1,28 @@
1
+ # autopsy
2
+
3
+ - **Category**: Forensics
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Digital forensics platform. Focus areas: forensics, dfir, gui.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: download from sleuthkit.org
16
+ # darwin: brew install --cask autopsy
17
+ # win32: choco install autopsy
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ autopsy -h
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ forensics, dfir, gui
@@ -0,0 +1,34 @@
1
+ # bulk_extractor
2
+
3
+ - **Category**: Forensics
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Extract emails/URLs/creds. Focus areas: carving, forensics, email.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: apt install -y bulk-extractor
16
+ # darwin: brew install bulk_extractor
17
+ # win32: manual
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ bulk_extractor -o <o> - <>
24
+ ```
25
+
26
+ ## Parameter Reference
27
+
28
+ | Parameter | Description |
29
+ |------|------|
30
+ | `-o` | Output dir (required) |
31
+
32
+ ## Tags
33
+
34
+ carving, forensics, email
@@ -0,0 +1,28 @@
1
+ # oletools
2
+
3
+ - **Category**: Forensics
4
+ - **Risk Level**: 🟠 Medium
5
+
6
+ ---
7
+
8
+ ## Description
9
+
10
+ Office malicious doc analysis. Focus areas: malware, office, macro.
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ # linux: pip install --break-system-packages oletools
16
+ # darwin: pip install --break-system-packages oletools
17
+ # win32: pip install --break-system-packages oletools
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ olevba - <>
24
+ ```
25
+
26
+ ## Tags
27
+
28
+ malware, office, macro