Ok, so I run a minecraft server, I also run a topsite for similar minecraft servers. The majority of minecraft servers use a server wrapper called bukkit, which allows for hundreds of mods to be applied to the server software. One such plugin that I am using is called Votifier. Basically it starts a small server and listens for incoming connections (ie, 'votes' from various topsites, an example being http://minestatus.net ).
What I am trying to do is add support for this votifier plugin on my topsite. I have forwarded the correct ports for the minecraft server, tested and confirmed that they are open. Also used minestatus.net to confirm that the votifier plugin is working correctly. However, when I try and use a PHP script I found for connecting to the server, all I get is a connection refused.
Heres the only documentation for connecting to votifier:
Protocol Documentation This documentation is for server lists that wish to add Votifier support.
A connection is made to the Votifier server by the server list, and immediately Votifier >>will send its version in the following packet:
"VOTIFIER " Votifier then expects a 256 byte RSA encrypted block (the public key should be obtained >>by the Votifier user), with the following format:
Type Value
string VOTE
string serviceName
string username
string address
string timeStamp
byte[] empty
The first string of value "VOTE" is an opcode check to ensure that RSA was encoded and >>decoded properly, if this value is wrong then Votifier assumes that there was a problem >>with encryption and drops the connection. serviceName is the name of the top list >>service, username is the username (entered by the voter) of the person who voted, address >>is the IP address of the voter, and timeStamp is the time stamp of the vote. Each string >>is delimited by the newline character \n (byte value 10). The space block is the empty >>space that is left over, the block must be exactly 256 bytes regardless of how much >>information it holds.
And here is the code I am using:
<?php
error_reporting(E_ALL);
// Details of the vote.
$str = "VOTE\n" .
"TopHCSMP\n" .
"SlickTheNick666\n" .
"50.98.149.40\n" .
time()."\n";
// Fill in empty space to make the encrypted block 256 bytes.
$leftover = (256 - strlen($str)) / 2;
while ($leftover > 0) {
$str .= "\x0";
$leftover--;
}
// The public key, this is an example.
$key = "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkFywgrx2fPXL/CPS1Gi5/a7zoTfWV9fqrhsJMzPqqC0CnLBBkg8VUiwnBVsMvhJrUT1mLvyHx5H9dobTVlE+aoxcsDRa1Yc9OAUKHspxrPswRW6/Yn85YAghOSBZfgPoXD3Q0Ng5jkJUoBUHOBtFHDUeAHi5av36iJ8dTQTSaOyAXKGdB88TOzre5cpnj5oDi/JSJ0bCJx7cgcBAO1TvOVuFMTXhygDyEVh6 o2nn8+qdDlEPXf+m+dxdkH3zWkkWjY4OittIpaHj2n8ihgPqwMPZFH1CXkoTjoSh4Fo7KtUAaAa4gt5w/thauozG25G 1s2XSigNgCDDvg4S8awmtewIDAQAB";
$key = wordwrap($key, 65, "\n", true);
$key = <<<EOF
-----BEGIN PUBLIC KEY-----
$key
-----END PUBLIC KEY-----
EOF;
// Encrypt the string.
openssl_public_encrypt($str, $encrypted, $key);
// Establish a connection to Votifier.
$socket = fsockopen("50.98.149.40", "8192", $errno, $errstr, 2);
if (!$socket) {
die("Failed to connect to Votifier.");
}
// Send the contents of the encrypted block to Votifier.
fwrite($socket, $encrypted);
?>
It seems to be that votifier is dropping the connection, possibly because the encryption isnt right? Please help!