Skip to content

Instantly share code, notes, and snippets.

View eliezerfot123's full-sized avatar

Eliezer Romero eliezerfot123

View GitHub Profile
@eliezerfot123
eliezerfot123 / get_ip_with_url.py
Created May 11, 2016 18:00
Obtener IP desde una lista de URL Con python
import socket
f = open("urls.txt")
num_line = sum(1 for line in f)
f.close()
with open("urls.txt", "r") as ins:
array = []
for line in ins:
print socket.gethostbyname(line.strip())
@denji
denji / nginx-tuning.md
Last active May 3, 2024 03:57
NGINX tuning for best performance

Moved to git repository: https://github.com/denji/nginx-tuning

NGINX Tuning For Best Performance

For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.

Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon with HyperThreading enabled, but it can work without problem on slower machines.

You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.

@eliezerfot123
eliezerfot123 / genera_combinaciones.py
Created October 24, 2013 14:01
Programa que genera todas las posibles combinaciones y guardarlo en un archivo. Python
import sys, math
from time import time, localtime, strftime
########################### CONFIGURACION #########################
# LONGITUD DEBE SER MINIMO 8 | CLAVES WPA/2 SON DE MINIMO 8 CARACTERES
LONGITUD = 10
ALFABETO = "qwertyuioplkjhgfdsazxcvbnm"