mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-06 08:39:33 +00:00
Added Matt's proxy and mac changer
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user