
Fixes
Various fixes and improvements for several terminal commands.
Fixed an issue where certain invalid commands in the Code Editor could freeze the game.
Fixed a file path resolution issue in CaptureHandshake that could prevent Hashcat from locating .pcap files when executed from certain directories.
The FileSystem API has been completely redesigned and rebuilt.
New modules and major updates have been added to the Scripting API.
New Module: Networking.Wifi
Wireless network scanning and attack utilities (Bettercap-like functionality).
const interfaces = await Networking.Wifi.GetInterfaces();
const mon = interfaces.find(i => i.monitor); const networks = await Networking.Wifi.Scan(mon.name);
const target = networks[0]; await Networking.Wifi.Deauth(mon.name, target.bssid);
const pcap = await Networking.Wifi.CaptureHandshake(mon.name, target.bssid); const password = await Crypto.Hashcat.Decrypt(pcap);
println(`Password: ${password}`);
Methods
Networking.Wifi.GetInterfaces() — Lists wireless interfaces.
Networking.Wifi.Scan(iface) — Scans nearby WiFi networks (SSID, BSSID, channel, signal strength).
Networking.Wifi.Deauth(iface, bssid, options?) — Sends deauthentication frames to a target access point.
Networking.Wifi.CaptureHandshake(iface, bssid) — Captures a WPA handshake and saves it as a .pcap file.
🔐 Crypto Updates
Crypto.Hashcat.Decrypt now accepts a second parameter for path control.
// Decrypt from a specific directory
await Crypto.Hashcat.Decrypt("capture.pcap", { cwd: "downloads" }); // Decrypt from root
await Crypto.Hashcat.Decrypt("capture.pcap", { absolute: true });
The Scripting documentation has been completely rewritten and updated.
Added 5 new pages:
Networking
Networking.Wifi
Crypto
HackDB
NTLM
Updated 3 existing pages:
System
Shell
File System
All 30 supported languages have been updated.