User Controls

What should I use?

  1. #1
    SBTlauien African Astronaut
    I'm going to make a small program that spoofs my NIC mac address, connects to a wifi hotspot, creates an account using GET/POST requests, and repeats every 55 minutes.

    This program will also need to keep track of the MAC addresses it uses so that it can reuse them after 32 days.

    I want to use either a bash script, python script, or C executable. Which would be the best choice for this task?
  2. #2
    DocFoster Tuskegee Airman [concentrate my unpalatable boomer]
    When coding I like to put tin foil in the microwave

    Lightning power
  3. #3
    Lanny Bird of Courage
    C http libs are usually a bit cumbersome. Not sure what the process of spoofing your NIC's MAC addr is, I assume there's some vendor interface to the driver or something, if that's it and invoking some binary is how its done then bash and curl with some kind of flat file storage seems like a pretty natural choice
  4. #4
    SBTlauien African Astronaut
    Originally posted by Lanny C http libs are usually a bit cumbersome. Not sure what the process of spoofing your NIC's MAC addr is, I assume there's some vendor interface to the driver or something, if that's it and invoking some binary is how its done then bash and curl with some kind of flat file storage seems like a pretty natural choice

    The mac spoofing, I believe can be done with a few system commands. This is all for a rPi.
  5. #5
    Sophie Pedophile Tech Support
    Bash would seem the easiest option. After that Python for sure.
Jump to Top