This is a code that gets some info about network the problem is when it prints the MAC address it prints it sometime normally and sometime with fff\'s like 00:21:84:a2:12:88
Here is a simple C program to find the MAC address of system:
#include #include int main() { system("getmac"); return 0; }