Fixed: [#2394] Broken deobfuscation on incorrect length of ActionStrictMode

Fixed: [#2394] ActionStrictMode with mode larger than 1 now ignored
This commit is contained in:
Jindra Petřík
2025-01-17 20:58:03 +01:00
parent c62cbdddff
commit fc553adb98
3 changed files with 10 additions and 3 deletions

View File

@@ -1942,7 +1942,7 @@ public class SWFInputStream implements AutoCloseable {
case 0x2D:
return new ActionFSCommand2(getCharset());
case 0x89:
return new ActionStrictMode(this);
return new ActionStrictMode(actionLength, this);
// SWF3 Actions
case 0x81:
return new ActionGotoFrame(actionLength, this);