Added basic ip spoofer

This commit is contained in:
Paradox
2013-11-27 22:45:11 +01:00
parent 237d2103fe
commit 20c5371dcd
2 changed files with 24 additions and 6 deletions
@@ -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);
}
}