Request: Script to Check Valide servers license key

X-Ecutioner

Contributor
Sep 16, 2015
183
121
175
Not following request template
Hi,
I search a script to check valide or not multiple license key of teamspeak 3 server.
How have this ? :)

I search Script php or script .sh
Thanks
 

dedmen

TeamSpeak Developer
Contributor
Mar 28, 2016
530
583
157
You cant really detect that if you dont own the server. Depending on which crack and how careless the owner is you may be able to detect it by portscanning port 2008
 

Norvik

Retired Staff
Contributor
Jul 18, 2015
635
588
157
Using the search function can help in the most cases. The code below will check if the port 2008 is open.

PHP:
<?php
    $connection = @fsockopen("127.0.0.1", "2008");

    if (is_resource($connection))
    {
        echo "This server may be cracked.";

        fclose($connection);
    }

    else
    {
        echo "Crack not detected.";
    }
?>
 
Top