pH-7 / Obfuscator-Class

:man_technologist: Simple and effective Obfuscator PHP class (this is not a stupid base64 encoding script, but a real and effective obfuscation script)
http://github.com/pH-7/Obfuscator-Class
MIT License
362 stars 143 forks source link

Easy deobfuscation #18

Closed pixel365 closed 3 years ago

pixel365 commented 4 years ago

In the resulting file, you need to find the encoded string (usually # 26). Then decode it - gzuncompress(base64_decode("str")). Next, find the encoded string again, and decode it using base64_decode. Where is the efficiency here?

da411d commented 3 years ago

Repo description:

👨‍💻 Simple and effective Obfuscator PHP class (this is not a stupid base64 encoding script, but a real and effective obfuscation script)

LoL

pH-7 commented 3 years ago

In the resulting file, you need to find the encoded string (usually # 26). Then decode it - gzuncompress(base64_decode("str")). Next, find the encoded string again, and decode it using base64_decode. Where is the efficiency here?

The way you explain won't deobfuscation the obfuscated file (if done with this library)

pH-7 commented 3 years ago

Repo description:

👨‍💻 Simple and effective Obfuscator PHP class (this is not a stupid base64 encoding script, but a real and effective obfuscation script)

LoL

😝 Did you try? I don't think so then 😉 But of course, if doesn't guarantee anything. However, it makes the job much harder than a simple base64 encode 😄

pixel365 commented 3 years ago

Read carefully and reproduce in person. Obfuscated code is easily deobfuscated. Why did you close?