Pages
Categories
Archives
Hosted by
University Archive
-
Anonymity in Networks I
Posted on 1. May 2012 by Phylu | No CommentsLast semester I wrote a paper about the basics of anonymity in networks, especially the internet. The paper is publicly available, as I think academic papers should be as free, as possible. The paper originates from the proseminar “Network Hacking” at the TU Munich. ABSTRACT: This... -
(Deutsch) Sommersemester 2012
Posted on 1. May 2012 by Phylu | 2 CommentsSorry, this entry is only available in Deutsch. Sorry, this entry is only available in Deutsch. -
(Deutsch) Zusammenfassung Grundlagen Datenerhebung
Posted on 25. January 2012 by Phylu | No CommentsSorry, this entry is only available in Deutsch. Sorry, this entry is only available in Deutsch. -
Bash Example Script #2
Posted on 5. January 2012 by Phylu | 1 CommentI have added the following function to my bash example script: # Run external command and only procced, when exit code is 0 function try { $@ returnValue=$? echo "$returnValue" if [ $returnValue -ne 0 ] then log $ERROR "$@ exited with return value \... -
Bash Example Script
Posted on 29. December 2011 by Phylu | 2 CommentsThese days I use bash more and more often for simple tasks on my Linux system, as well as for a University course I am taking. Have a look at the script: #!/bin/bash # Skript: bash_example.sh # Credit to: http://www.pro-linux.de/artikel/2/111/ #1,ein-shellskript-template.html # # I have...
