http://nichol.as/benchmark-of-python-web-servers
An extensive analysis of the different python web servers available on the market.
mardi 17 février 2015
mercredi 11 février 2015
awk 'system()' vs xargs
Two different syntaxes for processing a command over a list of arg.
Let's take for example, the list of PID you want to kill(all the processes matching "toto") :
ps | grep toto | awk -F' ' '{print $2}' | xargs kill -9
is equivalent to
ps | grep toto | awk -F' ' '{system("kill -9 "$2}'
note that the space at the end of the string "kill -9 " is important since the $2 will be concatenated.
Let's take for example, the list of PID you want to kill(all the processes matching "toto") :
ps | grep toto | awk -F' ' '{print $2}' | xargs kill -9
is equivalent to
ps | grep toto | awk -F' ' '{system("kill -9 "$2}'
note that the space at the end of the string "kill -9 " is important since the $2 will be concatenated.
mardi 10 février 2015
while true for WPS
While true permettant de se connecter dès que quelqu'un initie une connexion avec du WPS
http://korben.info/intrusion-dans-un-reseau-wifi-grace-au-wps.html?utm_source=feedburner&utm_medium=email&utm_campaign=Feed:+Korben_nl+%28Korben%29
wpa_cli
while : ; do sudo wpa_cli wps_pbc any ; sleep 120 ; done &
Source :http://korben.info/intrusion-dans-un-reseau-wifi-grace-au-wps.html?utm_source=feedburner&utm_medium=email&utm_campaign=Feed:+Korben_nl+%28Korben%29
Inscription à :
Articles (Atom)