darkknight25 commited on
Commit
d3bf88a
·
verified ·
1 Parent(s): e87ab65

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -3
README.md CHANGED
@@ -1,3 +1,63 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ size_categories:
4
+ - n<1K
5
+ ---# RTFM Manual Commands Dataset
6
+
7
+ A structured and machine-readable dataset extracted from the **Red Team Field Manual (RTFM)**. This collection of categorized terminal commands is designed for use in cybersecurity tooling, AI fine-tuning, command recommendation engines, and red team automation systems.
8
+
9
+ ## 📁 Dataset Format
10
+
11
+ The dataset is provided in **`.jsonl` (JSON Lines)** format, where each line represents a command entry with the following fields:
12
+
13
+ - `category` — The logical section from the manual (e.g., `"LINUX NETWORK COMMANDS"`)
14
+ - `command` — The exact command-line syntax
15
+ - `description` — A brief explanation of the command’s function
16
+
17
+ ### 🔍 Example
18
+
19
+ ```json
20
+ {
21
+ "category": "LINUX NETWORK COMMANDS",
22
+ "command": "netstat -tulpn",
23
+ "description": "Show all TCP/UDP connections"
24
+ }
25
+ This dataset is suitable for:
26
+
27
+ Training/fine-tuning AI assistants or LLMs (e.g., GPT-style models)
28
+
29
+ Building context-aware command suggestion engines
30
+
31
+ Integrating into red team or blue team automation pipelines
32
+
33
+ Creating cheat sheet generators or CLI reference bots
34
+
35
+ 📊 Statistics
36
+
37
+ Total entries: 696
38
+
39
+ Categories included:
40
+
41
+ Linux Networking
42
+
43
+ Windows System Information
44
+
45
+ Powershell
46
+
47
+ TCPDump
48
+
49
+ Covering Tracks
50
+
51
+ Firewall Bypass
52
+
53
+ and many more
54
+
55
+ ⚖️ License
56
+
57
+ This dataset is shared under the CC0 1.0 Universal License (Public Domain Dedication). You are free to use, modify, and redistribute it for any purpose, including commercial.
58
+
59
+ Portions of this dataset are derived from the public content of the RTFM manual and restructured for machine learning research and educational use.
60
+
61
+ 🤝 Contributions
62
+
63
+ Pull requests are welcome! If you'd like to expand this dataset, clean entries, or add new sections (e.g., Active Directory, web enumeration, etc.), feel free to fork or open an issue.