Remember to like this thread if it's helped you out! 
Code:
iptables -I INPUT -s <SPIGOTMCs SERVER IP> -j DROP
Simple as can be, just drop their two IPs on your server, and you will be 100% in the clear,
thus allowing you to use the plugins as they were intended and rightfully made, even if it
has that pesky system that disables them on startup, this allows them to fully function
again!
So what exactly are you doing? You are blocking Spigots server from ever communicating
with your plugins, basically disabling the system they have going on in their backend, here's
the code that they are encrypting inside of their plugins:
Code:
private static void check()
{
try
{
URLConnection con = new URL("http//www spigotmc org/api/resource.php1").openConnection();
con.setConnectTimeout(1000);
con.setReadTimeout(1000);
String response = new BufferedReader(new InputStreamReader(con.getInputStream())).readLine();
if ("false".equals(response)) {
throw new RuntimeException("Access to this plugin has been disabled due to piracy! Please contact SpigotMC!");
}
}
catch (IOException ex) {}
}
}
Whatever server is listed @ URLCONNECTION is the server that needs to be blocked.
Code:
iptables -I INPUT -s <SPIGOTMCs SERVER IP> -j DROP
Simple as can be, just drop their two IPs on your server, and you will be 100% in the clear,
thus allowing you to use the plugins as they were intended and rightfully made, even if it
has that pesky system that disables them on startup, this allows them to fully function
again!
So what exactly are you doing? You are blocking Spigots server from ever communicating
with your plugins, basically disabling the system they have going on in their backend, here's
the code that they are encrypting inside of their plugins:
Code:
private static void check()
{
try
{
URLConnection con = new URL("http//www spigotmc org/api/resource.php1").openConnection();
con.setConnectTimeout(1000);
con.setReadTimeout(1000);
String response = new BufferedReader(new InputStreamReader(con.getInputStream())).readLine();
if ("false".equals(response)) {
throw new RuntimeException("Access to this plugin has been disabled due to piracy! Please contact SpigotMC!");
}
}
catch (IOException ex) {}
}
}
Whatever server is listed @ URLCONNECTION is the server that needs to be blocked.
-
1
- Show all