Archive for June, 2008|Monthly archive page
BackTrack 3 Final released!
Got the info today from the penetration testing mailinglist back at security focus…
BackTrack is the result of merging the two innovative penetration testing live linux distributions Auditor and Whax. Backtrack provides a thorough pentesting environment which is bootable via CD, USB or the network (PXE). The tools are arranged in an intuitive manner, and cover most of the attack vectors. Complex environments are simplified, such as automatic Kismet configuration, one click Snort setup, precompiled Metasploit lorcon modules, etc. BackTrack has been dubbed the #1 Security Live CD by Insecure.org, and #36 overall.
manual renaming…
I recently installed Apache on my home computer, and as not being a regular Apache user (for own webapp development I use Abyss X1, kinda my first ever installed webserver) I wanted to take a look in the manual pages… opened up index.html, and for my surprize there was a blank page (well, actually not blank, but no informational text for sure…)
The problem was that I realized that the pages (that I where looking for) where under the .html.en extension… :(… at first I tried to modify them manually… which was a real pain in the fingers… and my plain mind helped me realize (at half of the files being renamed) that a script would me more useful… dah…
—
system(“cmd /c del *.html”);
$handle = opendir(“.”);
while($file = readdir($handle)) {
if(preg_match(“/\.en/”, $file)) {
$newfile = str_replace(“.en”, “”, $file);
system(“cmd /c copy $file $newfile”);
}
}
—
This way maybe you won’t go through the same shit I went…
This is just plain dumb!?
Many times poeple criticise me for being a security through obscurity fanclub member, thus saying that it can do no good, grow out of it and stuff like that… But I never said I used security through obscurity as a basic security implementation (wtf?! do you think I work for MS?)… Anyway for those who criticise me what would they say about the following “security implementation” (yeah right)….

I think big brother’s watching me ….
planting crops
Recently affiliated with Darknet I have found GoNullYourself which came in with a non skiddies aproach (you got to give’em some credit for that)… anyway they have decided to make posible public registration to their forum, and If you may want to take a look an register throw in my handle as a refferal… ^_^
Why this article? Because nowadays can’t really find a good quality forum… or can be found but sooner or later they become inactive… got some hopes in this null identity…
Comments (1)
Comments (4)
Leave a Comment









