finger via netcat tip
[grml-tips.git] / grml_tips
index 29df0c6..83ce0d9 100644 (file)
--- a/grml_tips
+++ b/grml_tips
@@ -627,7 +627,7 @@ Read BIOS:
 -- 
 Read HTTP via netcat:
 
-echo -e "GET / HTTP/1.0\r\n\r\n" | netcat $DOMAIN 80
+echo -e "GET / HTTP/1.1\r\nHost: $DOMAIN\r\n\r\n" | netcat $DOMAIN 80
 -- 
 Get X ressources for specific program:
 
@@ -3180,3 +3180,6 @@ Simple mailserver with python:
 
 % python -m smtpd -n -c DebuggingServer localhost:1025
 -- 
+finger via netcat:
+
+echo $USER | nc $HOST 79