HTB AirTouch#2146
Open
carlospolop wants to merge 1 commit intomasterfrom
Open
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://0xdf.gitlab.io/2026/04/18/htb-airtouch.html Content Categories: Based on the analysis, this content was categorized under "Network Services Pentesting -> 161/162 UDP - Pentesting SNMP; Pentesting Wifi -> WPA/WPA2 (handshake capture/deauth/crack + wpa_supplicant); Pentesting Web -> Cookies Hacking / Session Hijacking; Pentesting Web -> File Upload (extension blacklist bypass: .phtml)". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Title/Context
HackTheBox “AirTouch” (Linux, Medium; released 2026-01-17, retired 2026-04-18) simulates a wireless enterprise with VLANs/SSIDs. The attack chain begins with UDP/161 SNMP leaking a default SSH password, leading to a “consultant” shell in a container with virtual Wi-Fi radios. The attacker captures/cracks a WPA2-PSK 4-way handshake to join the Tablets VLAN (192.168.3.0/24), decrypts 802.11 traffic in Wireshark to steal router web session cookies, then abuses a client-s...
🔧 Technical Details
SNMP info-leak trick: If SNMP is exposed (UDP/161) and uses a weak/known community (often
public), enumerating communities withonesixtyoneand dumping withsnmpwalk -v 2c -c <community>can reveal sensitive data when admins mistakenly place secrets in informational OIDs (e.g.,SNMPv2-MIB::sysDescr.0), enabling credential recovery and lateral movement (SSH, etc.).Protocol-aware UDP discovery: Because UDP has no handshake, generic scanners can miss services. Use protocol-aware probes (e.g.,
udpx -t <target>) to quickly elicit responses from common UDP services (SNMP, etc.), then validate with targeted enumeration (nmap scripts,snmpwalk).WPA2-PSK compromise workflow: With an active client, force reauth via deauthentication (
aireplay-ng --deauth) while capturing on the target channel/BSSID (airodump-ng --channel X --bssid <AP> -w capture). Crack th...🤖 Agent Actions
I’m analyzing the AirTouch writeup against existing HackTricks content, then I’ll map the techniques to the most specific existing pages before making any edits.
I’ve identified likely existing targets in SNMP, Wi‑Fi, cookies, upload, and tunneling sections. Next I’m verifying the original post and reading the relevant HackTricks pages in parallel to avoid duplicating content.
I’ve finished the first pass over the relevant sections. Now I’m checking whether the exact additions are already present, especially
.phtmlblacklist bypass, WPA2 decryption-to-cookie theft, and SNMP secrets insysDescr.The overlap check is clear now: most of the SNMP, cookie, upload, and proxying pieces already exist, but the Wi‑Fi page is missing the operational step after cracking the PSK: joining the SSID with
wpa_supplicantand decrypting captured HTTP to recover sessions. I’m going to keep the change to a single file and add only that missing material.I’m editing
src/generic-methodologies-and-resources/pentesting-wifi/README.mdnow. The change is scoped to one new subsection covering post-crack association and Wi‑Fi traffic decryption, plus the blog reference at the end.The first patch is in. I’m doing a verification pass now, including the internal ref path and the file-ending structure, because this repo is sensitive to broken links and misplaced
## Referencessections.Updated README.md with the only non-duplicative material from the AirTouch post that wasn’t already covered well in HackTricks: the practical post-crack WPA2 workflow.
The new section adds:
wpa_passphrase,wpa_supplicant, anddhclient## ReferencesI did not add SNMP, cookie-role,
.phtml, or SOCKS pivot content because those techniques are already documented in existing HackTricks pages, and the repo instructions required keeping this update in a single file. Verification was done withgit diffand a path check on the internal ref.This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.