mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-07 08:39:12 +00:00
Added basic ip spoofer
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package org.parabot.core.spoofing;
|
||||
|
||||
/**
|
||||
* User: Jeroen
|
||||
* Date: 27/11/13
|
||||
* Time: 16:04
|
||||
*/
|
||||
public class Ip {
|
||||
public static void spoofIP(String host, String port) {
|
||||
System.getProperties().setProperty("socksProxySet", "true");
|
||||
System.getProperties().setProperty("socksProxyHost", host);
|
||||
System.getProperties().setProperty("socksProxyPort", port);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user