X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=grml_tips;h=1d2db86ec3110aae5bc824d94dde48746b50eee6;hb=refs%2Ftags%2Fv0.5.0;hp=29df0c6891add4f5e29c126112088cfe1fb7cd0b;hpb=66608faad46ca83cf25808895d1f479033363a24;p=grml-tips.git diff --git a/grml_tips b/grml_tips index 29df0c6..1d2db86 100644 --- 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,13 @@ Simple mailserver with python: % python -m smtpd -n -c DebuggingServer localhost:1025 -- +finger via netcat: + +echo $USER | nc $HOST 79 +-- +Install Archlinux using Grml: + +https://wiki.archlinux.org/index.php/Install_from_Existing_Linux +or +wget http://tokland.googlecode.com/svn/trunk/archlinux/arch-bootstrap.sh +--