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 November 1, 2024 17:40
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)