Results 1 to 9 of 9

Thread: Can't get ARP spoofing to work?

  1. #1

    Unhappy Can't get ARP spoofing to work?

    Hello guys, I'm hoping for some help. Over the past three months I have been trying to do ARP spoofing on my network. My problem is that after I execute the ARP attack, the machine that I'm arping (going between the router and it) completely loses internet connection!
    This happens with both arpspoof and Ettercap. The machine that I'm arping against loses internet connection, so that you can't even connect to google.com. I tried messing around with ettercap for a long time, but finally gave up and am now trying the simpler "arpspoof," but the results are the same. I've enabled IP forwarding and IP tables in Kali, and tried EVERYTHING else out there, and still can't solve this.

    Isn't the machine that your arping against supposed to maintain a connection (even if it's a slow one)?

    Any ideas what could be causing the problem?

    Commands that I use:
    1: echo 1 > /proc/sys/net/ipv4/ip_forward
    2: iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 8080
    3: arpspoof -t 192.168.1.1 (router) 192.168.1.10 (target)
    4: arpspoof -t 192.168.1.10 192.168.1.1
    Last edited by colegagliano; 2014-03-07 at 01:52.

  2. #2
    Join Date
    2013-Mar
    Location
    http://rastamouse.me
    Posts
    86
    What do you have listening on port 8080?
    OSCP
    --
    If it smells like a duck, walks like a duck and quacks like a duck; then it probably is a duck.

  3. #3
    Nothing yet, first I'm just trying to get the arp attack up and running.

  4. #4
    Join Date
    2013-Mar
    Location
    http://rastamouse.me
    Posts
    86
    Well it seems to me that all the traffic from your spoofed client could be reaching your attacker machine, but it's getting redirected to port 8080 and getting dropped (i.e. nothing is happening with it). Your spoofed client will then timeout and say it has no Internet connection. You could try attaching a sniffer to your network interface (not in promiscuous mode) or monitor the iptables to see if the expected traffic is hitting you.
    OSCP
    --
    If it smells like a duck, walks like a duck and quacks like a duck; then it probably is a duck.

  5. #5
    I think that that is exactly the probelm. The traffic reaches me, but then is dropped. So in a sense, my arp attack is like a wall instead of a bridge, lol. Any way to fix this?

  6. #6
    Join Date
    2013-Mar
    Location
    http://rastamouse.me
    Posts
    86
    Well my assumption was that you had a tool listening on 8080 that would do something with the traffic (i.e. read or manipulate etc) and then pass it on to the correct destination. If it's getting dropped because there is nothing there, you have created a DOS condition. You either need to put something on 8080 (could be something simple like sslstrip); or change the rule entirely to a masquerade rule (which would just silently pass the traffic along).
    OSCP
    --
    If it smells like a duck, walks like a duck and quacks like a duck; then it probably is a duck.

  7. #7
    Arp spoofing is not learned, it is mastered. You are need something on port 8080, to do this you need to start sslstrip, and set it on port 8080. As one of the worlds best hackers, I do this all the time in Hotel's etc. Easy to do, you must be an extreme Newbie.

  8. #8
    How do you change it to masqurade rule?

  9. #9
    First things first, remove the line "iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 8080". Also, ensure that the default poilicy for INPUT, FORWARD and OUTPUT chains is to ACCEPT. Everything else you've done appear to be correct. If you still have issues, use wireshark to give you some direction as to where the issue might be.

Similar Threads

  1. DNS spoofing with Ettercap doesn t work using Kali 2020
    By KaliGalli in forum General Archive
    Replies: 0
    Last Post: 2020-12-06, 17:50
  2. sms spoofing
    By bymack in forum General Archive
    Replies: 2
    Last Post: 2019-12-03, 20:18
  3. Mac address spoofing does not work (macchanger)
    By xxyxxyxx in forum TroubleShooting Archive
    Replies: 7
    Last Post: 2013-05-07, 19:23

Posting Permissions

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