Wow - I needed to reset my password already 

So after only 12 days of having blog I forgot my password. Luckily, I can usually code my way out of any mess I get into related to software. I'm not a hardware guy. If it breaks, I usually just replace it. Anyways, I checked the SPHPBLOG site and the forum said you needed to re-run the installation files. Since I'm a lazy programmer, I decided to skip that option. Therefore, I whipped up a quick php script.

<?
$username = 'username';
$password = 'password';
$hashedUser = crypt( $username );
$hashedPass = crypt( $password );
print "username: $hashedUser\n";
print "password: $hashedPass\n";
?>

After running this script I simply needed to copy the hashes over into the password.php file and I was able to login to my blog. Not a bad solution. It makes me feel sorry for the people who can't program.
[ add comment ] ( 5 views ) [ 0 trackbacks ] permalink ( 3.1 / 111 )
Fresh new Blog 

So I decided I give this blogging thing another try. My first attempt wasn't much. I have decided to give it another try. I plan to make at least one solid post each week rather than worrying about posting everyday. I will focus on issues related to computer security. I'm going to discuss things that I am working on including my projects, scripts and other open source projects.

One thing I uploaded recently was a video I made of BeEF. BeEF is a framework for performing Cross-Site Scripting attacks against users. I packaged BeEF for Backtrack3. The greatest part of the video was the ending where I demonstrated a Rick Roll via BeEF.

http://spl0it.org/files/vids/bt3-beef.avi
[ 6 comments ] ( 15 views ) [ 0 trackbacks ] permalink ( 2.9 / 75 )

<<First <Back | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |