Method | Description | |
---|---|---|
GetEarwigoDecodedString ( string str ) : string |
Decode the Earwigo string.
|
|
GetEarwigoEncodedString ( string str ) : string |
Encode the Earwigo string.
|
|
GetUrwigoDecodeString ( string str, List |
Gets the Urwigo string decoded.
|
|
GetUrwigoFormatedString ( string byteCode ) : string |
Gets the Urwigo formated string, like \032\045, from a normal byte containing string. The string could also contain \032 from beginning, so the function has to check for this. |
|
GetUrwigoObfuscatedStrings ( string lua, string funcName ) : List |
Gets the Urwigo obfuscated strings.
|
|
GetUrwigoObfuscationFunction ( string lua ) : string |
Gets the urwigo obfuscation function name.
|
|
GetUrwigoObfuscationTable ( string lua ) : List |
Gets the Urwigo obfuscation table.
|
|
IsEarwigo ( string lua ) : bool |
Determines whether this Lua code is from Earwigo.
|
|
IsUrwigo ( string lua ) : bool |
Determines whether this Lua code is from Urwigo.
|
|
RemoveEarwigoObfuscation ( string lua ) : string |
Removes the Urwigo obfuscation function and replace all strings with plain text.
|
Method | Description | |
---|---|---|
GetEarwigoObfuscatedString ( string str, System.Boolean encrypt ) : string |
Encode/Decode the Earwigo string.
|
public static GetEarwigoDecodedString ( string str ) : string | ||
str | string | String to decode. |
return | string |
public static GetEarwigoEncodedString ( string str ) : string | ||
str | string | String. |
return | string |
public static GetUrwigoDecodeString ( string str, List |
||
str | string | String. |
dtable | List |
Dtable. |
return | string |
public static GetUrwigoFormatedString ( string byteCode ) : string | ||
byteCode | string | |
return | string |
public static GetUrwigoObfuscatedStrings ( string lua, string funcName ) : List |
||
lua | string | Lua code. |
funcName | string | Func name. |
return | List |
public static GetUrwigoObfuscationFunction ( string lua ) : string | ||
lua | string | Lua code. |
return | string |
public static GetUrwigoObfuscationTable ( string lua ) : List |
||
lua | string | Lua code. |
return | List |
public static IsEarwigo ( string lua ) : bool | ||
lua | string | Lua code. |
return | bool |
public static IsUrwigo ( string lua ) : bool | ||
lua | string | Lua code. |
return | bool |
public static RemoveEarwigoObfuscation ( string lua ) : string | ||
lua | string | Lua code. |
return | string |