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.
- package/dist/index.js +101 -2
- package/manuals/active-directory/certipy.md +36 -0
- package/manuals/blue-team/clamav.md +34 -0
- package/manuals/blue-team/hayabusa.md +39 -0
- package/manuals/blue-team/osquery.md +28 -0
- package/manuals/blue-team/sigma.md +35 -0
- package/manuals/blue-team/snort.md +40 -0
- package/manuals/blue-team/suricata.md +40 -0
- package/manuals/blue-team/velociraptor.md +28 -0
- package/manuals/blue-team/wazuh.md +28 -0
- package/manuals/blue-team/zeek.md +39 -0
- package/manuals/cloud-native/cloudfox.md +35 -0
- package/manuals/crypto/ciphey.md +34 -0
- package/manuals/crypto/rsactftool.md +35 -0
- package/manuals/exploitation/gopherus.md +28 -0
- package/manuals/exploitation/nosqlmap.md +34 -0
- package/manuals/exploitation/ssrfmap.md +40 -0
- package/manuals/exploitation/ysoserial.md +32 -0
- package/manuals/forensics/autopsy.md +28 -0
- package/manuals/forensics/bulk_extractor.md +34 -0
- package/manuals/forensics/oletools.md +28 -0
- package/manuals/forensics/volatility3.md +35 -0
- package/manuals/forensics/zsteg.md +34 -0
- package/manuals/information-gathering/gau.md +38 -0
- package/manuals/information-gathering/holehe.md +28 -0
- package/manuals/information-gathering/rustscan.md +35 -0
- package/manuals/information-gathering/testssl.md +34 -0
- package/manuals/information-gathering/theharvester.md +36 -0
- package/manuals/information-gathering/waybackurls.md +32 -0
- package/manuals/mobile/androguard.md +28 -0
- package/manuals/mobile/apkleaks.md +35 -0
- package/manuals/mobile/mobsf.md +32 -0
- package/manuals/post-exploitation/pwncat-cs.md +28 -0
- package/manuals/red-team/evilginx3.md +34 -0
- package/manuals/reverse-engineering/angr.md +28 -0
- package/manuals/reverse-engineering/cutter.md +32 -0
- package/manuals/reverse-engineering/gdb.md +38 -0
- package/manuals/reverse-engineering/ghidra.md +32 -0
- package/manuals/reverse-engineering/ltrace.md +28 -0
- package/manuals/reverse-engineering/pwndbg.md +32 -0
- package/manuals/reverse-engineering/rizin.md +38 -0
- package/manuals/reverse-engineering/strace.md +34 -0
- package/manuals/utility/anew.md +28 -0
- package/manuals/utility/curl.md +37 -0
- package/manuals/utility/jq.md +34 -0
- package/manuals/utility/notify.md +34 -0
- package/manuals/web/droopescan.md +35 -0
- package/manuals/wireless/hcxdumptool.md +35 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -49763,13 +49763,14 @@ function nextSteps(ctx) {
|
|
|
49763
49763
|
}
|
|
49764
49764
|
|
|
49765
49765
|
// src/live-recon.ts
|
|
49766
|
+
import { resolve4 } from "node:dns/promises";
|
|
49766
49767
|
import { connect } from "node:net";
|
|
49767
49768
|
var HTTP_TIMEOUT_MS = 20000;
|
|
49768
|
-
async function httpGet(url) {
|
|
49769
|
+
async function httpGet(url, opts = {}) {
|
|
49769
49770
|
const controller = new AbortController;
|
|
49770
49771
|
const t = setTimeout(() => controller.abort(), HTTP_TIMEOUT_MS);
|
|
49771
49772
|
try {
|
|
49772
|
-
const res = await fetch(url, { signal: controller.signal, redirect: "follow" });
|
|
49773
|
+
const res = await fetch(url, { signal: controller.signal, redirect: opts.redirect ?? "follow" });
|
|
49773
49774
|
const body = await res.text();
|
|
49774
49775
|
const headers = {};
|
|
49775
49776
|
res.headers.forEach((v, k) => {
|
|
@@ -49866,6 +49867,96 @@ async function subdomainEnum(domain) {
|
|
|
49866
49867
|
} catch {}
|
|
49867
49868
|
return { subdomains: [...out].sort(), source: "crt.sh (certificate transparency)" };
|
|
49868
49869
|
}
|
|
49870
|
+
async function waybackUrls(domain) {
|
|
49871
|
+
const out = new Set;
|
|
49872
|
+
const url = `https://web.archive.org/cdx/search/cdx?url=*.${encodeURIComponent(domain)}/*&output=json&fl=original&collapse=urlkey&limit=500`;
|
|
49873
|
+
try {
|
|
49874
|
+
const controller = new AbortController;
|
|
49875
|
+
const t = setTimeout(() => controller.abort(), 60000);
|
|
49876
|
+
const res = await fetch(url, { signal: controller.signal, redirect: "manual" });
|
|
49877
|
+
const body = await res.text();
|
|
49878
|
+
clearTimeout(t);
|
|
49879
|
+
if (body.startsWith("[[")) {
|
|
49880
|
+
const data = JSON.parse(body);
|
|
49881
|
+
for (let i = 1;i < data.length; i++) {
|
|
49882
|
+
const u = data[i]?.[0];
|
|
49883
|
+
if (u && typeof u === "string" && u.includes(domain))
|
|
49884
|
+
out.add(u);
|
|
49885
|
+
}
|
|
49886
|
+
}
|
|
49887
|
+
} catch {}
|
|
49888
|
+
return { urls: [...out].slice(0, 500), source: "web.archive.org (Wayback CDX)" };
|
|
49889
|
+
}
|
|
49890
|
+
var COMMON_SUBDOMAINS = [
|
|
49891
|
+
"www",
|
|
49892
|
+
"mail",
|
|
49893
|
+
"ftp",
|
|
49894
|
+
"api",
|
|
49895
|
+
"dev",
|
|
49896
|
+
"staging",
|
|
49897
|
+
"test",
|
|
49898
|
+
"admin",
|
|
49899
|
+
"portal",
|
|
49900
|
+
"app",
|
|
49901
|
+
"blog",
|
|
49902
|
+
"shop",
|
|
49903
|
+
"store",
|
|
49904
|
+
"cdn",
|
|
49905
|
+
"static",
|
|
49906
|
+
"assets",
|
|
49907
|
+
"img",
|
|
49908
|
+
"images",
|
|
49909
|
+
"secure",
|
|
49910
|
+
"vpn",
|
|
49911
|
+
"remote",
|
|
49912
|
+
"webmail",
|
|
49913
|
+
"smtp",
|
|
49914
|
+
"pop",
|
|
49915
|
+
"imap",
|
|
49916
|
+
"ns1",
|
|
49917
|
+
"ns2",
|
|
49918
|
+
"dns",
|
|
49919
|
+
"db",
|
|
49920
|
+
"database",
|
|
49921
|
+
"mysql",
|
|
49922
|
+
"git",
|
|
49923
|
+
"gitlab",
|
|
49924
|
+
"jenkins",
|
|
49925
|
+
"ci",
|
|
49926
|
+
"jira",
|
|
49927
|
+
"wiki",
|
|
49928
|
+
"docs",
|
|
49929
|
+
"help",
|
|
49930
|
+
"support",
|
|
49931
|
+
"status",
|
|
49932
|
+
"monitor",
|
|
49933
|
+
"grafana",
|
|
49934
|
+
"kibana",
|
|
49935
|
+
"backup",
|
|
49936
|
+
"old",
|
|
49937
|
+
"beta",
|
|
49938
|
+
"demo",
|
|
49939
|
+
"sandbox",
|
|
49940
|
+
"internal",
|
|
49941
|
+
"intranet"
|
|
49942
|
+
];
|
|
49943
|
+
async function dnsBrute(domain) {
|
|
49944
|
+
const found = [];
|
|
49945
|
+
const base = domain.toLowerCase();
|
|
49946
|
+
const seen = new Set([base, "www." + base]);
|
|
49947
|
+
for (const prefix of COMMON_SUBDOMAINS) {
|
|
49948
|
+
const host = `${prefix}.${base}`;
|
|
49949
|
+
if (seen.has(host))
|
|
49950
|
+
continue;
|
|
49951
|
+
seen.add(host);
|
|
49952
|
+
try {
|
|
49953
|
+
const ips = await resolve4(host);
|
|
49954
|
+
if (ips.length > 0)
|
|
49955
|
+
found.push({ host, ips });
|
|
49956
|
+
} catch {}
|
|
49957
|
+
}
|
|
49958
|
+
return { found, source: "DNS resolution (common subdomain prefixes)" };
|
|
49959
|
+
}
|
|
49869
49960
|
var COMMON_PORTS = [
|
|
49870
49961
|
[21, "ftp"],
|
|
49871
49962
|
[22, "ssh"],
|
|
@@ -50037,6 +50128,8 @@ async function liveRecon(target, includeActive = false) {
|
|
|
50037
50128
|
const crawl = { links, scripts, endpoints: [...new Set(allUrls)], robots, sitemap, count: allUrls.length };
|
|
50038
50129
|
const params = extractParams(allUrls);
|
|
50039
50130
|
const { subdomains } = await subdomainEnum(host);
|
|
50131
|
+
const { found: dnsFindings } = await dnsBrute(host);
|
|
50132
|
+
const { urls: wayback } = await waybackUrls(host);
|
|
50040
50133
|
const apiEndpoints = (await discoverApi(base)).map(({ path, status }) => ({ path, status }));
|
|
50041
50134
|
let openPorts = [];
|
|
50042
50135
|
if (includeActive && root.status > 0) {
|
|
@@ -50061,6 +50154,10 @@ async function liveRecon(target, includeActive = false) {
|
|
|
50061
50154
|
nextSteps.push(`Discovered input params: ${params.join(", ")} — these are attack-surface entry points; fuzz them with payload_lookup after scope confirms.`);
|
|
50062
50155
|
if (subdomains.length > 0)
|
|
50063
50156
|
nextSteps.push(`Found ${subdomains.length} subdomains — each is a separate scope surface; enumerate further with fofa_search.`);
|
|
50157
|
+
if (dnsFindings.length > 0)
|
|
50158
|
+
nextSteps.push(`DNS-resolved ${dnsFindings.length} hosts (${dnsFindings.map((d) => d.host).slice(0, 8).join(", ")}${dnsFindings.length > 8 ? "…" : ""}) — each is a live subdomain to recon.`);
|
|
50159
|
+
if (wayback.length > 0)
|
|
50160
|
+
nextSteps.push(`Wayback Machine surfaced ${wayback.length} historical URLs — mine them for hidden endpoints, old params, and forgotten pages; feed to taint_file/blitz_scan.`);
|
|
50064
50161
|
if (openPorts.length > 0)
|
|
50065
50162
|
nextSteps.push(`Open ports: ${openPorts.map((p) => `${p.port}/${p.service}`).join(", ")} — map services via port_correlation and probe each with the relevant tool manual.`);
|
|
50066
50163
|
if (apiEndpoints.length > 0)
|
|
@@ -50078,6 +50175,8 @@ async function liveRecon(target, includeActive = false) {
|
|
|
50078
50175
|
crawl,
|
|
50079
50176
|
params,
|
|
50080
50177
|
subdomains,
|
|
50178
|
+
dns_findings: dnsFindings,
|
|
50179
|
+
wayback_urls: wayback,
|
|
50081
50180
|
api_endpoints: apiEndpoints,
|
|
50082
50181
|
open_ports: openPorts,
|
|
50083
50182
|
intel,
|
|
@@ -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
|