Skip to content

Instantly share code, notes, and snippets.

@intrd
Last active June 28, 2022 08:41
Show Gist options
  • Save intrd/ebc6316c792e6734f22e3dde4d1ca683 to your computer and use it in GitHub Desktop.
Save intrd/ebc6316c792e6734f22e3dde4d1ca683 to your computer and use it in GitHub Desktop.
Netcat bruteforce script used in crypto100-master @ 3dsctf-2k16
#!/bin/bash
## Netcat bruteforce script used in crypto100-master @ 3dsctf-2k16
# @author intrd - http://dann.com.br/
# @license Creative Commons Attribution-ShareAlike 4.0 International License - http://creativecommons.org/licenses/by-sa/4.0/
for letter in {A..Z} ; do
echo $letter
sleep 1
(echo "yes" & sleep 1 & echo "$letter") | nc -i1 -w5 54.175.35.248 8002
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment