Status
SteamPeaks
ChartsSalesUpcomingPatchesNewsCalculator
New on SteamEvery app, DLC and depot the minute Steam creates itAppsEvery app on Steam, newest change firstPackagesSubs and bundles, and what each containsDepotsDepots, manifests and install sizesTagsSteam's user tags and the games under themDevelopers & publishersCompanies and their cataloguesTechnologiesEngines, SDKs and anti-cheat found in the filesChange historyEvery PICS changelist as it lands
SignalsNineteen readings of the whole catalogueCompareAny games side by sideRecordsAll-time peaks and the days they were setReportsWeekly and monthly write-upsAlerts & newsroomWatch a game, get told when it movesSteam statusIs Steam up, right nowWeb API explorerTry the endpoints in the browser
NewsSteam's own announcements and the sales calendarCalculatorWhat a Steam account is worth, and its pile of shame
/
Sign in
/
SteamPeaks
The ultimate resource for Steam data.
ExploreChartsSalesSales and festsUpcomingPatchesNewsRecordsTrendingSignals
DatabaseAppsPackagesDepotsTagsDevelopersTechnologiesChange history
ToolsCalculatorCompareSearchAlertsSteam statusAPI
SiteMethodologyFAQDiscordSupportSign in via Steam
Not affiliated with Valve or Steam. Game names and artwork belong to their owners. All times UTC.
PrivacyCookiesFair useStatus
HackHub - Ultimate Hacker SimulatorNewsPatch Notes 0.8.22
In-game event

Patch Notes 0.8.22

HackHub - Ultimate Hacker Simulator · published 14 Feb 2026, 19:54 UTC

All newsPlayers around this dateRead on Steam

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.


FileSystem API

  • The FileSystem API has been completely redesigned and rebuilt.


Scripting API Updates

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 });

Handbook Updates

  • 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.

More from HackHub - Ultimate Hacker Simulator

Other announcements

All news
In-game event16 Sep 2026Patch Notes 1.3.0Hackhub Patch Notes This update gives the game world a clock of its own, and closes out most of the save file problems you have been reporting. Thanks to everyone who sent repro steps and save files: the worst bug in here was only findable because of them. New · Added an in-game clock: the game world now runs on its own calendar, considerably faster than real time. It drives the day system and…In-game event25 Aug 2026Patch Notes 1.1.0New Stuff · The game now keeps automatic backups of your saves. There is a new Backups section on the Load screen, and if a save ever goes missing the game offers to bring it back. · New Game now asks you to confirm before it starts, and reminds you that your old save is still there. · Bug reports can now carry your save file and logs, so we can actually reproduce what happened to you. Nothing…Game update9 Aug 2026Patch Notes 1.0.19Fixes · Major performance improvements across the game. · Apple Silicon Macs now get the right version of the game. It was close to unplayable on M-series machines. · The glitch effect that plays during a hack no longer freezes the screen. · Player-made websites work properly again. Their icons, fonts and animations had stopped loading, and the pages themselves were coming up blank. · Company w…