Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6074283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:21:54+00:00 2026-05-23T10:21:54+00:00

Edit: Answered on serverfault. Thanks! A product I’m testing appears to freak out when

  • 0

Edit: Answered on serverfault. Thanks!

A product I’m testing appears to freak out when it receives an ARP request with a Sender IP Address of 0.0.0.0. This is not an ARP probe, as the request is addressed to my module, and the customer’s system sends the request just before it starts using its own valid IP address, which is different than my module’s IP address. The problem is recreating that here in the lab rather than having to travel to the customer’s site.

Is there software I can use to generate an ARP request from a fake address? This is similar to, but not quite the same as, ARP spoofing, since I’m trying to fake the request and not the reply. Do any of the spoofing tools have this functionality? Or is there a way to force Windows or Linux to send an ARP probe?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T10:21:55+00:00Added an answer on May 23, 2026 at 10:21 am

    You can use Python2 to do that job. That’s really quite simple task. You will need root privileges to open RAW sockets and some little knowledge with Python.

    import socket
    import struct
    
    #Packet structure explanation:
    #destmac = 0xff,0xff,0xff,0xff,0xff,0xff
    #sourcemac = 0x00,0x11,0x22,0x33,0x44,0x55
    #etherflags = 0x0806,0x0001,0x0800
    #arpflags = 0x6,0x4,0x0001
    #sourcemac = 0x00,0x11,0x22,0x33,0x44,0x55
    #sourceip = 0xc0,0xa8,0x2b,0x7a
    #targmac = 0x00,0x00,0x00,0x00,0x00,0x00
    #targip = 0xc0,0xa8,0x2b,0x0c
    
    packet = struct.pack('!12B3H2BH10B10B', 0xff,0xff,0xff,0xff,0xff,0xff, 0x00,0x11,0x22,0x33,0x44,0x55, 0x0806,0x0001,0x0800, 0x6,0x4,0x0001 ,0x00,0x11,0x22,0x33,0x44,0x55, 0xc0,0xa8,0x2b,0x7a, 0x00,0x00,0x00,0x00,0x00,0x00, 0xc0,0xa8,0x2b,0x0c)
    
    sock = socket.socket(socket.PF_PACKET, socket.SOCK_RAW)
    sock.bind(('eth0', 6)) # 6 its protocol number
    sock.send(packet)
    sock.close()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

EDIT -- Answered below, missed the angled braces. Thanks all. I have been attempting
Edit : This question has already been asked and answered, and I apparently am
Edit: Answered - error was method wasn't static I'm used the Singleton Design Pattern
Edit: Answered my own question. See below. -_- I have a variable defined in
Okay the previous question was answered clearly, but i found out another problem. What
EDIT after answered: < should be provided for std::map . For more information about
EDIT: See below unanswered part II. (ANSWERED) I. Appending URLS I am trying to
Edit: I think this has been answered successfully, but I can't check 'til later.
EDIT 2 It appears that moving the object tag in the Dom is the
EDIT: Duplicate of Should Entity Framework Context be Put into Using Statement? I've been

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.