Created
April 10, 2026 18:08
-
-
Save stoyky/86a8afd85b6b925fbab5f6e104cd452a to your computer and use it in GitHub Desktop.
Cleanly deobfuscate Adobe 0-day PDF JS payload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Extract base64 blob: | |
| pdf-parser <file.pdf> -o 7 -w | |
| Decode with Cyberchef: | |
| Find_/_Replace({'option':'Regex','string':'#2'},'',true,false,true,false) | |
| From_Base64('A-Za-z0-9+/=',true,false) | |
| Find_/_Replace({'option':'Regex','string':'\u001f'},'?',true,false,true,false) | |
| Now you can get a relatively clean deobfuscation using: | |
| https://deobfuscate.relative.im |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment