Request: Script to Check Valide servers license key

X-Ecutioner

Contributor
Joined
Sep 16, 2015
Messages
183
Reaction score
121
Points
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
Joined
Mar 28, 2016
Messages
530
Reaction score
584
Points
197
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
Joined
Jul 18, 2015
Messages
635
Reaction score
588
Points
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