mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 23:36:16 -04:00
Added more infoLinks and updated newOperation script to include prompt for them.
This commit is contained in:
commit
e81c81351d
206 changed files with 249 additions and 12 deletions
|
@ -21,6 +21,7 @@ class PHPDeserialize extends Operation {
|
|||
this.name = "PHP Deserialize";
|
||||
this.module = "Default";
|
||||
this.description = "Deserializes PHP serialized data, outputting keyed arrays as JSON.<br><br>This function does not support <code>object</code> tags.<br><br>Example:<br><code>a:2:{s:1:"a";i:10;i:0;a:1:{s:2:"ab";b:1;}}</code><br>becomes<br><code>{"a": 10,0: {"ab": true}}</code><br><br><u>Output valid JSON:</u> JSON doesn't support integers as keys, whereas PHP serialization does. Enabling this will cast these integers to strings. This will also escape backslashes.";
|
||||
this.infoURL = "http://www.phpinternalsbook.com/classes_objects/serialization.html";
|
||||
this.inputType = "string";
|
||||
this.outputType = "string";
|
||||
this.args = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue