Ashus.ashus.net

Full Version: Call Of Duty: PHP RCon 2.40 EN++
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
Hey ashus,

I made a index.html for the main script. It opens it up in a nice window the size of the rcon tool. It makes it a lot better i think try it out.

Code:
Ashus PHPRcon 2.2b
To Start The Rcon Tool Click the Start Button and Login.



Created by Ashus in 2008, 2009
Does this information help you sort out a fix for CODWAW 1.5 patched windows servers?


The issue was with the RCON packet formation... all the literature states that for CoD you need an rcon packet preamble of FFFFFFFF02 which did work for all versions of CoD until CoD5 V1.5 where they seem to have locked it down to the more common FFFFFFFF preamble (used in CS & Quake etc..) luckily this preamble also seems to work with all past versions of CoD as well... weird

Regards

Jimbo (from www.morkeye.co.uk)

---

Yep it works edited action.php:

From:-

Code:
function RequestToGame($cmd)
    {
    global $server_rconpass, $connect, $server_extra_wait, $server_buffer_cur, $server_extra_footer;
    $send = "\xff\xff\xff\xff\02" . 'rcon "' . $server_rconpass . '" '.$cmd.(($server_extra_footer)?"\x0a\x00":'');
    fwrite($connect, $send);

Too:-

Code:
function RequestToGame($cmd)
    {
    global $server_rconpass, $connect, $server_extra_wait, $server_buffer_cur, $server_extra_footer;
    $send = "\xff\xff\xff\xff" . 'rcon "' . $server_rconpass . '" '.$cmd.(($server_extra_footer)?"\x0a\x00":'');
    fwrite($connect, $send);


Now all up and running.
Thanks guys, your updates were taken to my source. Please report back to me, if all COD games still work.
Ashus Wrote:Thanks guys, your updates were taken to my source. Please report back to me, if all COD games still work.
NICE Big Grin

Also placed my idea in it?
Moustache Wrote:I have another idea Smile
Can you make it that you automatically log in when you visit the php rcon? Then you don't have to type the password every time.
I see that on more sites, it works with cookies.
No, that would compromise security, make it yourself if you need it that much. We would have to store the password unencrypted as a cookie, because it is accepted by server as both - hashed and plain format as either of them can be stored in config file. Initially you make it plain, when user changes it for the first time, it becomes hashed.

Use password saving in your browser - Opera (wand) or Firefox.
I don't know how to make it, I am not so skilled as you Wink

I use it on one computer but on the other computer I want to install as less tools as possible and I only have IE there as browser. But IE can't save the pass Sad
Yes, IE can, provided that you don't still use 16 year old browser IE6 full of security holes and ignoring standards.
Use Opera or Firefox for your own safety and satisfaction (even the new IE versions still happily ignore standards).

[FFNZ]-CAT-

Hi Ashus, We currently have 4 servers, but when we use Morkeye to monitor all of them at once the system (2.5ghz core duo with 3gb ram) slows to an almost unusable speed. What can we do to fix this?
I don't know that program, I'd say it monitors the logfiles, maybe decreasing the interval in which it reloads the logs, maybe cut the logs and empty them once in a while.

Straw

Hi folks,

For some reason my phprcon is setup for COD2. I'm trying to set it up for COD4. Is there anything i must do?

Ashus: RTFM !
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39