Added Matt's proxy and mac changer

This commit is contained in:
Paradox
2013-12-04 11:53:57 +01:00
parent fc53a1b8dd
commit 565193b9c3
5 changed files with 278 additions and 2 deletions
@@ -0,0 +1,22 @@
package org.matt123337.spoofer;
import java.net.InetAddress;
public class NetworkInterface {
private byte[] mac = new byte[]{11,11,11,11,11,11};
private static NetworkInterface cached;
public byte[] getHardwareAddress(){
System.out.println("[NI_HOOK] Mac Address Spoofed!");
return mac;
}
public static NetworkInterface getByInetAddress(InetAddress addr){
if(cached == null)
cached = new NetworkInterface();
return cached;
}
}