Advanced Search
Search Results
7 total results found
Network Pivoting
Penetrating Networks via SSH JumpHosts
Click here to view this diagram in a new tab
Penetrating Networks via Chisel Proxies
Click here to see this diagram in a new tab
Session 8: Jan. 8, 2024
In this lesson, we focus on attacking Active Directory from an external assessment. So, enumerating an "externally" facing service, establishing a foothold, and pivoting into the network. This lesson is better suited to those preparing for the PNPT certificati...
Enumerating SNMP Community Strings
TARGET='TARGET_IP_ADDRESS_HERE' snmpwalk -c public -v1 "$TARGET" . > snmpwalk.txt grep '[^Hex-]STRING' snmpwalk.txt iso.3.6.1.2.1.1.1.0 = STRING: "Linux underpass 5.15.0-126-generic #136-Ubuntu SMP Wed Nov 6 10:38:22 UTC 2024 x86_64" iso.3.6.1.2.1.1.4.0 = ...
Port Forwarding with Chisel
Usage Requires a copy of the Chisel binary on: The target host The attacker's host Download from the Releases Page Bash Function to Download Chisel Binaries I've added this function to my ~/.zshrc file so that I can just invoke the function at any ...
Port Forwarding with SSH
Security Considerations Reverse Tunneling This will require you to establish a SSH connection from the foothold back to your attack box. You want to mitigate any potential for this authentication to be used against you Public Key Authentication Say you have a ...