Add simple webserver tip, update metasploit tip
authorMichael Prokop <mika@grml.org>
Fri, 21 Nov 2008 12:25:44 +0000 (13:25 +0100)
committerMichael Prokop <mika@grml.org>
Fri, 21 Nov 2008 12:25:44 +0000 (13:25 +0100)
debian/changelog
grml_tips

index 0bff0e9..d3e79dd 100644 (file)
@@ -1,8 +1,10 @@
 grml-tips (0.4.12) unstable; urgency=low
 
   * Update streaming tips.
+  * Update metasploit tip.
+  * Add simple webserver with python tip.
 
- -- Michael Prokop <mika@grml.org>  Sat, 06 Sep 2008 19:01:32 +0200
+ -- Michael Prokop <mika@grml.org>  Fri, 21 Nov 2008 13:25:14 +0100
 
 grml-tips (0.4.11) unstable; urgency=low
 
index 2597373..3ff381b 100644 (file)
--- a/grml_tips
+++ b/grml_tips
@@ -708,9 +708,9 @@ Write back the guessed table:
 Develop, test and use exploit code with the Metasploit Framework:
 
 cd /tmp
-wget http://framework-mirrors.metasploit.com/msf/downloader/framework-3.0.tar.gz
-unp framework-3.0.tar.gz
-cd framework-3.0
+wget http://spool.metasploit.com/releases/framework-3.2.tar.gz
+unp framework-3.2.tar.gz
+cd framework-3.2
 ./msfcli
 -- 
 Useful documentation:
@@ -2320,8 +2320,6 @@ host2% hg merge # merge changes into your working directory
 Set up a CGI server on your webserver:
 % cp hgwebdir.cgi ~/public_html/hg/index.cgi
 % $EDITOR ~/public_html/hg/index.cgi # adjust the defaults
-
-Mercurial repositories of grml can be found at http://hg.grml.org/
 -- 
 Download binary codecs for mplayer:
 
@@ -3126,3 +3124,7 @@ deb http://localhost:9999/debian  unstable  main contrib non-free
 use approx in grml-debootstrap like:
 % grml-debootstrap -r lenny -t /dev/sda1 -m http://127.0.0.1:9999/debian
 -- 
+Simple webserver with python
+
+% python -m SimpleHTTPServer
+--