File size: 9,116 Bytes
496fc7a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
# Tool Access Expansion - Complete Documentation

## Overview

All 525+ Kali Linux tools are now fully accessible through both the **Sandbox** and **PowerShell** interfaces.

## Sandbox Access

### Configuration

- **Total Allowed Tools**: 525 tools
- **Security Model**: Namespace isolation (user, PID, network)
- **Resource Limits**: 512MB RAM, 50% CPU, 300s timeout
- **Tool Filtering**: Whitelist-based (all 525 tools whitelisted)

### How to Use Sandbox

1. Navigate to **🐧 Linux Sandbox** tab in the UI
2. Create a new session or use existing session ID
3. Enter any command using the allowed tools
4. Execute and view results in real-time

### Example Commands

```bash

# Information Gathering

nmap -sV -p- target.com

masscan -p1-65535 192.168.1.0/24

recon-ng



# Vulnerability Analysis

nikto -h target.com

sqlmap -u "http://target.com/page?id=1" --dbs

wpscan --url target.com



# Web Testing

dirb http://target.com /usr/share/dirb/wordlists/common.txt

gobuster dir -u http://target.com -w wordlist.txt



# Password Attacks

hydra -l admin -P passwords.txt target.com ssh

john hashes.txt --wordlist=wordlist.txt

hashcat -m 1000 hashes.txt wordlist.txt



# Network Tools

wireshark -i eth0

tcpdump -i eth0 -w capture.pcap

arp-scan -l

```

## PowerShell Access

### Available Scripts (6 Comprehensive Functions)

#### 1. Invoke-VulnerabilityScan

Execute multiple vulnerability scanning tools with a single command.

**Features:**

- Multi-tool execution (nmap, nikto, sqlmap, etc.)
- Configurable scan types (Quick, Full, Stealth, Web, Network)
- Parallel tool execution
- JSON output format

**Usage:**

```powershell

Invoke-VulnerabilityScan -Target example.com -ScanType Full -Tools @("nmap", "nikto", "sqlmap")

```

#### 2. Invoke-PortScan

Advanced port scanning with multiple tool support.

**Features:**

- Support for nmap, masscan, and PowerShell TCP testing
- Configurable port ranges
- Timeout and threading options
- Detailed parsing of scan results

**Usage:**

```powershell

Invoke-PortScan -Target example.com -Ports @(80,443,3389,5432) -Tool nmap -Threads 50

```

#### 3. Invoke-NetworkAudit

Comprehensive network auditing with tool integration.

**Features:**

- Network interface enumeration
- Multi-tool execution (nmap, arp-scan, etc.)
- Service discovery
- Network configuration analysis

**Usage:**

```powershell

Invoke-NetworkAudit -NetworkRange 192.168.1.0/24 -IncludeServices -Tools @("nmap", "arp-scan")

```

#### 4. Invoke-LogAnalysis

Advanced log parsing and analysis.

**Features:**

- Pattern-based log analysis
- Tool-based execution (grep, awk, etc.)
- Custom pattern matching
- Result aggregation

**Usage:**

```powershell

Invoke-LogAnalysis -LogPath "/var/log/syslog" -Tool grep -Pattern @("error", "fail", "warn")

```

#### 5. Invoke-ComplianceCheck

Framework-based compliance checking.

**Features:**

- CIS, NIST, GDPR, PCI-DSS, HIPAA frameworks
- Multi-tool execution (lynis, aide, etc.)
- Automated scoring
- Detailed compliance reports

**Usage:**

```powershell

Invoke-ComplianceCheck -Framework CIS -Tools @("lynis", "aide")

```

#### 6. Invoke-ToolExecutor (NEW)

Universal tool executor for any command-line tool.

**Features:**

- Execute any installed tool
- Custom arguments support
- Timeout management
- Full output capture
- Exit code tracking

**Usage:**

```powershell

Invoke-ToolExecutor -Tool nmap -Arguments @("-sV", "-p-", "target.com") -TimeoutSeconds 300

Invoke-ToolExecutor -Tool msfconsole -Arguments @("-x", "exploit.rc")

Invoke-ToolExecutor -Tool sqlmap -Arguments @("-u", "http://target.com/page?id=1", "--dbs")

```

## Kali Arsenal by Category

### 1. Information Gathering (85 tools)

nmap, masscan, rustscan, recon-ng, maltego, theharvester, sherlock, amass, subfinder,
assetfinder, aquatone, eyewitness, wafw00f, whatweb, httpx, dnsenum, dnsrecon, spiderfoot,
shodan-cli, waybackurls, ffuf, nuclei, and more...

### 2. Vulnerability Analysis (62 tools)

nessus, openvas, nikto, wpscan, sqlmap, ghauri, sslyze, testssl, lynis, linux-exploit-suggester,
windows-exploit-suggester, trivy, grype, semgrep, codeql, mobsf-cli, and more...

### 3. Web Applications (58 tools)

burpsuite, zap, caido, mitmproxy, sqlmap, ghauri, xsstrike, dalfox, dirb, dirbuster,
gobuster, feroxbuster, ffuf, wfuzz, whatweb, wappalyzer-cli, retire.js, and more...

### 4. Password Attacks (42 tools)

john, hashcat, ophcrack, rainbowcrack, hydra, medusa, ncrack, patator, cewl, crunch,
cupp, hash-buster, hashid, mimikatz, kerbrute, and more...

### 5. Wireless Attacks (38 tools)

aircrack-ng, airmon-ng, airodump-ng, aireplay-ng, wifite2, fluxion, reaver, bully,
kismet, wireshark, tcpdump, bluetooth-tools, ubertooth, and more...

### 6. Exploitation Tools (55 tools)

metasploit-framework, armitage, cobalt-strike, covenant, sliver, empire, starkiller,
pupy, beef-xss, routersploit, shellter, veil, mimikatz, crackmapexec, and more...

### 7. Forensics (48 tools)

autopsy, sleuthkit, foremost, scalpel, photorec, volatility3, rekall, binwalk,
yara, clamav, ghidra, radare2, wireshark, zeek, suricata, and more...

### 8. Reverse Engineering (35 tools)

ghidra, ida-pro, binary-ninja, radare2, rizin, cutter, gdb, lldb, angr, pwntools,
frida, apktool, jadx, dex2jar, and more...

### 9. Hardware Hacking (28 tools)

flashrom, openocd, urjtag, avrdude, esptool, proxmark3, flipper-zero, hackrf,
ubertooth, can-utils, and more...

### 10. Crypto & Stego (32 tools)

steghide, stegosuite, openstego, zsteg, stegsolve, hashcat, john, cryptool,
cyberchef, openssl, gnupg, veracrypt, and more...

### 11. Reporting Tools (25 tools)

dradis, faraday, magictree, pwndoc, serpico, ghostwriter, writehat, cherrytree,
joplin, eyewitness, and more...

### 12. Social Engineering (22 tools)

setoolkit, gophish, king-phisher, evilginx2, modlishka, beef-xss, maltego,
recon-ng, and more...

### 13. Sniffing & Spoofing (31 tools)

wireshark, tcpdump, tshark, ettercap, bettercap, arpspoof, dnsspoof, responder,
mitmproxy, sslstrip, and more...

## Access Methods

### Method 1: Direct Sandbox Execution

```text

UI β†’ 🐧 Linux Sandbox Tab

  β”œβ”€ Create Session

  β”œβ”€ Enter command

  └─ Execute

```

### Method 2: PowerShell Scripts

```text

UI β†’ ⚑ PowerShell Integration Tab

  β”œβ”€ Select script

  β”œβ”€ Configure parameters

  β”œβ”€ Add tools list

  └─ Execute

```

### Method 3: MCP Integration

```text

MCP Client β†’ HuggingChat

  β”œβ”€ execute_sandbox_command(session_id, "nmap -sV target")

  └─ execute_powershell_script("Invoke-PortScan", "-Target example.com")

```

## Security Considerations

### Sandbox Isolation

- **User Namespace**: Tools run as unprivileged user
- **Network Isolation**: No outbound network by default
- **Filesystem Isolation**: Read-only root, restricted write paths
- **Process Limits**: Max 20 processes, 512MB memory
- **Timeout**: 5 minute default, 1 hour maximum

### PowerShell Security

- **Execution Policy**: RemoteSigned
- **No Telemetry**: PowerShell telemetry disabled
- **Output Capture**: All output captured and logged
- **Resource Limits**: 1GB memory, 75% CPU, 10 minute timeout

## Limitations

### Sandbox

- Network tools require outbound access (disabled by default)
- Some tools may require special privileges
- DNS queries are disabled by default
- File size limits: 100MB per file

### PowerShell

- Requires PowerShell 7+ for cross-platform support
- Some Windows-specific tools require Windows
- Linux tools require installation on system
- Timeout on long-running operations

## Troubleshooting

### Tool Not Found

**Problem**: "Tool 'X' not found in PATH"
**Solution**:

1. Check tool is installed: `which <tool>`
2. Add to PATH if needed
3. Use full path to tool binary

### Permission Denied

**Problem**: "Permission denied" error
**Solution**:

1. Check user has execute permissions
2. Run from sandbox with appropriate user
3. Check file ownership

### Timeout

**Problem**: "Script timed out"
**Solution**:

1. Increase timeout value
2. Optimize tool parameters
3. Run simpler scans first

## Performance Tips

1. **Use specific port ranges** instead of full scans
2. **Parallel tools** in PowerShell for faster execution
3. **Pre-filter targets** before scanning
4. **Use lightweight tools** for initial reconnaissance
5. **Cache results** when running repeated scans

## Next Steps

1. **Explore Tools**: Navigate to UI and test Sandbox and PowerShell tabs
2. **Create Sessions**: Set up persistent sandbox sessions for workflows
3. **Automate**: Build repeatable security processes with scripts
4. **Integrate**: Connect to HuggingChat via MCP for AI-assisted testing
5. **Monitor**: Track tool execution and results in real-time

---

**Version**: 4.0.0
**Last Updated**: December 6, 2025
**Status**: βœ… All 525+ tools fully accessible