PHP writing encrypted javascript

Asked

Viewed 75 times

0

I have a question about a javascript obfuscator made in php.. https://damidev.000webhostapp.com

Can someone help me understand how this guy did the encryption? every time the obfuscated code is generated it generates different from the previous one even though the code is the same

my site is suffering from crawlers, are accessing my site and stealing information by html.. with the Packer (packed) method it is easy to recognize a pattern and capture what you want: Pastebin.com/Bzesmxnm.. but with the method of this site damidev.000webhostapp.com leaves everything hidden: Pastebin.com/tw90KYSi, thus making life difficult for these crawlers understood ? because if you repair it always generates a different code even with the same input of js .. I was studying and I realized that it’s a method in XOR or something..

1 answer

0

Usually these systems have an encryption key that is used uniquely, precisely to have no way to undo and the goal is to actually make it different every cycle.

I took a look and it changes the keys every generation, it shouldn’t be hard to play this in php if you want to generate your own routine.

  • Yeah, I just want to understand what method he uses to encrypt, I tried to study the code but I can’t quite understand it and reverse engineer it ..

Browser other questions tagged

You are not signed in. Login or sign up in order to post.