2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-10 05:13:23 +00:00

PHP Deserialize NULL values converted to correctly

PHP Deserialize now correctly returns N as a null instead of an empty object
This commit is contained in:
Storms-Engineering
2019-10-01 21:07:26 -08:00
parent 3472484601
commit 7a3ca027bb

View File

@@ -128,8 +128,7 @@ class PHPDeserialize extends Operation {
switch (kind) { switch (kind) {
case "n": case "n":
expect(";"); expect(";");
return ""; return "null";
case "i": case "i":
case "d": case "d":
case "b": { case "b": {