Hey Fellas,
you know one of the best ways to automate webapp profiling is through netcat:
echo -e "GET / HTTP/1.1
"|netcat -vv www.target.com 80
but in a surprise this doesn’t work with proxychains under suse (I get excellent results under debian)
echo -e "GET / HTTP/1.1
"|proxychains -vv www.target.com 80
without using echo everything works great but when i use echo its all gone…
any clues ?