In light of the discovered weakness in the Type 4 password encryption mechanism, this is a way of generating Type 5 passwords using OpenSSL: openssl passwd -salt `openssl rand -base64 3` -1 PLAINTEXT_PASSWORD After which it can be copied to … Sigue leyendo
Archivo de la categoría: English
This is a note on episode 102 of the fantastic-as-always Packet Pushers Podcast. Initially it was going to be destined for them and less than 140 characters long but I just couldn’t, so I started writing freely and all of … Sigue leyendo
$ cat bin/stats.gawk #!/usr/bin/gawk -f { d = $1 ~ /^[0-9]/; } d && !f { M = $1; m = $1; f = 1; } d && $1 > M { M = $1; } d && $1 < … Sigue leyendo
Sometimes I deeply hate the Opera browser, as with its RAM consumption behavior, but most of the times I just love it. One of the reasons I do is because it allows me to pretty easily tweak my browsing safety. … Sigue leyendo
El siguiente script hace que cada línea nueva que aparezca en un archivo remoto, salte en mi pantalla como notificación. Con pocas modificaciones se puede hacer lo mismo para un archivo local. Se puede colocar el comando en el arranque … Sigue leyendo