Well, I have been digging into planetside.exe quite deeply; I have discovered a test in there for all GM commands. I am trying to execute some, but there is some quite interesting shit int here.
Drop a breakpoint on planetside+0047876C and then type /zlock.
You may possibly need to have some other stuff to make this work, but here are the commands i've found:
/zlock
/zcommand
/setbaseresources
and several others like this. I am wondering if some of them are not protected from being called server side? Judging by the track record of SOE, I am guessing at least one command goes unchecked.
I'll keep you posted.
Edit: Holy shit. Got something: Check out the attachments. This is the /paintball command, it adds text to places. It's not serverside protected. I am looking for other commands that are similar ;)
Edit:
Digging through the code, and some of the messages. This was definitely accomplished through manipulation of the netcode. The game has the ability to mount weapons of any kind on any person with a given offset; all of this exists or at least relates to planetside+0095CAF0
Very possible, and unfixed. They do almost no serverside checking.
Edit again:
It turns out certain commands each have their own checking systems on whether or not access will be granted. I think it is bitwise, so, you could give certain people a certain "level" of security. I am working on reverse engineering the individual functions, and hope to find a general way of bypassing all security on chat commadns and GM stuff. There is no server side code stopping me.
Drop a breakpoint on planetside+0047876C and then type /zlock.
You may possibly need to have some other stuff to make this work, but here are the commands i've found:
/zlock
/zcommand
/setbaseresources
and several others like this. I am wondering if some of them are not protected from being called server side? Judging by the track record of SOE, I am guessing at least one command goes unchecked.
I'll keep you posted.
Edit: Holy shit. Got something: Check out the attachments. This is the /paintball command, it adds text to places. It's not serverside protected. I am looking for other commands that are similar ;)
Edit:
|
|
Very possible, and unfixed. They do almost no serverside checking.
Edit again:
It turns out certain commands each have their own checking systems on whether or not access will be granted. I think it is bitwise, so, you could give certain people a certain "level" of security. I am working on reverse engineering the individual functions, and hope to find a general way of bypassing all security on chat commadns and GM stuff. There is no server side code stopping me.