|
Veteran Member
|

07-03-2017
, 15:26
Re: Add data on status
|
#1
|
Quote:
Originally Posted by eyal282
I am trying to use the orpheu signature Host_Status_f to add some data on status command.
It works perfectly on my windows local server but when I try to use it on my actual linux server, it fails. This is the signature, If the signature will be found, my issue will be fixed:
PHP Code:
{
"name":"Host_Status_f",
"library":"engine",
"identifiers":
[
{
"os":"windows",
"value":[0x55, 0x8B, 0xEC, 0x81, 0xEC,"*","*","*","*", 0xA1, 0x1C,"*","*","*", 0x53, 0x56, 0x57,
0xBF, 0x01,"*","*","*", 0x33, 0xDB, 0x8B, 0xF7, 0x3B, 0xC7, 0x89, 0x5D,"*"]
},
{
"os":"linux",
"value":"Host_Status_f"
}
]
}
Is there anything wrong with the signature? Only windows signature works.
|
I use this Windows signature, but for me it works fine on Linux as well, I can block the command with no issues.
Code:
{
"name" : "Host_Status_f",
"library" : "engine",
"identifiers" :
[
{
"os" : "windows",
"value" : [0x55,0x8B,0xEC,0x81,0xEC,"*","*","*","*",0xA1,"*","*","*","*",0x53,0x56,0x57,0xBF,"*","*","*","*",0x33,0xDB,0x8B,0xF7,0x3B,0xC7,0x89,"*","*",0x89,"*","*",0x89,"*","*",0x89,"*","*",0x89,"*","*",0xC7,0x45,"*","*","*","*","*"]
},
{
"os" : "linux",
"value" : "Host_Status_f"
}
]
}
|
|