Skip to content

Instantly share code, notes, and snippets.

View guclan's full-sized avatar
Never Give Up!

guclan

Never Give Up!
View GitHub Profile
@guclan
guclan / ping.py
Created January 25, 2019 03:49
死亡ping
import commands
import threading
def ping():
commands.getoutput("ping -i 0 127.0.0.1 -s 65500")
for i in range(100):
t = threading.Thread(target=ping)