Skip to content

Instantly share code, notes, and snippets.

View ezequielramos's full-sized avatar
🍻
By not knowing it was impossible I went there and did it.

Ezequiel Ramos ezequielramos

🍻
By not knowing it was impossible I went there and did it.
View GitHub Profile
@gkbrk
gkbrk / slowloris.py
Last active January 13, 2022 09:28
Slowloris implementation in Python. https://github.com/gkbrk/slowloris
import socket
import random
import time
import sys
log_level = 2
def log(text, level=1):
if log_level >= level:
print(text)