Skip to content

Instantly share code, notes, and snippets.

@NapoleonWils0n
Created November 4, 2012 00:18
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save NapoleonWils0n/4009506 to your computer and use it in GitHub Desktop.
Save NapoleonWils0n/4009506 to your computer and use it in GitHub Desktop.
bash: hex over tcp with netcat and echo
#!/bin/sh
#----------------------------------------------------------------------------------------#
# Hex over TCP with Echo and Netcat #
#----------------------------------------------------------------------------------------#
echo -n -e "x01x18x03" | nc 192.168.1.4 80
# The -n supresses outputting the trailing newline.
# The -e enables the interpretation of backslash escapes -- allowing us to send hex codes.
@mithun-b
Copy link

Your post is valuable to me, thanks. You can also check this similar one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment