ekknod / pcileech-wifi

pcileech-fpga with wireless card emulation
https://github.com/ufrisk/pcileech-fpga/
351 stars 103 forks source link

MAC #13

Closed KendallCuen closed 10 months ago

KendallCuen commented 10 months ago

Can I attempt to modify the MAC address? How can I do that?

dexus1337 commented 10 months ago

https://github.com/ekknod/pcileech-wifi/blob/fd69064cbc7591340400fa25da093277eb605036/PCIeSquirrel/src/pcileech_tlps128_bar_controller.sv#L869

mac is pseudo-randomized afaik. Change the lines below if you want a custom static one

ekknod commented 10 months ago

Every MAC address begins with C4:6E:1F. That is used by TP-Link, the original card manufacturer. image

otherwise MAC should be randomized by using time as a factor.

KendallCuen commented 10 months ago

Thank you for everyone's assistance.