Túnel SSH

¿Qué es un túnel SSH? Un túnel SSH es una conexión SSH que transforma un puerto X en tu equipo, en el puerto Y de otra máquina, pasando por una tercera. ¿Se entiende? Es probable que no, así que me explicaré con detalles. Una conexión “tradicional”, es cuando quiero acceder a un cierto servicio en otra máquina, y…

Auditoria inalámbrica (II)

A la hora de inyectar paquetes en el AP atacado debemos verificar su estado. Verificando el filtrado MAC. 1. Antes de continuar debemos verificar si el punto de acceso realiza filtrado MAC en sus clientes. Usamos este comando: sudo aireplay-ng -1 0 -e <essid_objetivo> -a 55:55:55:55:55:55 -h MY:MA:CA:DD:RE:SS <interfaz> Donde: -1 Le dice que NO intente…

Auditoria Inalámbrica

Aunque parezca un tópico, con este texto no pretendo incitar al aprovechamiento de conexiones a internet ajenas sino aprender y encontrar sentido a lo que se hace. Este tutorial se puede seguir utilizando una distribución preparada para ello como backtrack o bien instalando los paquetes necesarios en cualquier otra distribución. Abre una ventana de terminal…

Variables de entorno en Linux

Al configurar programas, tales como Netbeans, Intellij Idea, Groovy, necesitamos especificar varias variables de entorno. Dichas variables las tenemos que controlar a través del fichero .bash.bashrc que puede estar situado en el directorio home del usuario o bien heredarse del mismo fichero en /etc. Las variables normales que se suelen configurar son: export JAVA_HOME=/usr/lib/jvm/java-6-sun export…

|

Ghetto Tech Preview – ghettoVCB-restore.sh – Restoring VM’s backed up from ghettoVCB to ESX(i) 3.5 and 4.0+

Table of Contents: Description Requirements Setup Usage Sample Execution Change Log Known Issues Description: This script performs a restore of virtual machines backed up using ghettoVCB. Tasks are performed directly within the service console of the ESX(i) server involved in the restore process. This is currently a Ghetto Tech Preview that includes basic restore functionality….

|

Creating Virtual Machine Backups in VMware with GhettoVCB

Hi folks, like I mentioned before I’ll be showing you how to create backups using the GhettoVCB script from William Lam. First things first, please enable SSH access on your ESXi box. You can do this by following my steps in my previous blog post. Next, you have to download the following software for use…

Installing OpenVPN-ALS on Ubuntu

1) Use Synaptic or apt-get to install the following: ant (and its dependencies) sun-java6-bin sun-java6-jdk 2) Switch to root via «sudo -s». 3) Add the following to .bashrc in /root: export JAVA_HOME=/usr/lib/jvm/java-6-sun export PATH=$PATH:$JAVA_HOME/bin java -version Note: «java -version» is not actually required. It just gives you a nice indicator (when shifting to root) that…

HOWTO: ESXi and SSH

By default this isn’t possible. But there’s a way to get this working, just do the following: Go to the ESXi console and press alt+F1 Type: unsupported Enter the root password(No prompt, typing is blindly) At the prompt type “vi /etc/inetd.conf” Look for the line that starts with “#ssh” (you can search with pressing “/”)…

Autenticación en lighttpd.

Hay ciertas webs que uso para administración del servidor web (estadisticas), que no me interesa que sean accesibles por todo el mundo. Para ello, vamos a configurar la autenticación en lighttpd. Activamos el módulo: lighty-enable-mod auth Configuramos el fichero /etc/lighttpd/conf-enabled/10-auth.conf, donde especificaremos que queremos proteger: auth.backend = «htdigest» auth.backend.htdigest.userfile = «/etc/lighttpd/light.digest.user» $HTTP[«host»] == “estadisticas.dominio.com” {…