obfuscate imacro script

Support for iMacros. The iMacros software is the unique solution for automating every activity inside a web browser, for data extraction and web testing.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Post Reply
techimac
Posts: 482
Joined: Fri Feb 20, 2015 9:27 pm

obfuscate imacro script

Post by techimac » Tue Oct 16, 2018 9:53 am

Which software or online service you use to obfuscate iMacros js script?
Available for custom iim, javascript iMacros scripts
User avatar
thecoder2012
Posts: 446
Joined: Sat Aug 15, 2015 5:14 pm
Location: Internet
Contact:

Re: obfuscate imacro script

Post by thecoder2012 » Fri Nov 02, 2018 5:12 pm

techimac wrote:Which software or online service you use to obfuscate iMacros js script?
You can use every good JavaScript Obfuscator Tool. But this is no protection.
Join 9kw.eu Captcha Service now and let your iMacros continue downloads and scripts while you sleep. - Custom iMacros? Contact me! :idea:
techimac
Posts: 482
Joined: Fri Feb 20, 2015 9:27 pm

Re: obfuscate imacro script

Post by techimac » Fri Nov 02, 2018 6:25 pm

How to protect?
Available for custom iim, javascript iMacros scripts
User avatar
thecoder2012
Posts: 446
Joined: Sat Aug 15, 2015 5:14 pm
Location: Internet
Contact:

Re: obfuscate imacro script

Post by thecoder2012 » Fri Nov 02, 2018 8:30 pm

techimac wrote:How to protect?
Not really possible with Javascript (and iMacros FF/CR).
Join 9kw.eu Captcha Service now and let your iMacros continue downloads and scripts while you sleep. - Custom iMacros? Contact me! :idea:
access2vivek
Posts: 69
Joined: Wed Dec 20, 2017 10:00 am
Location: New Delhi, India
Contact:

Re: obfuscate imacro script

Post by access2vivek » Sun Nov 04, 2018 12:58 pm

I use the following online service to obfuscate my products along with one other service. You can ward off non tech-savvy people from seeing your source code.
https://www.daftlogic.com/projects-onli ... scator.htm

However, the output from services like this can easily be defeat simply by replacing the "eval" statement with "alert" statement. It will show the entire code in plain text. It is however a way to stop your code from being stolen by anyone.

If you want to take it a step further, you can use what is known as "aaencode" and it does wonders. Many tech-savvy people are also unaware of it as it replaces the original code with Japanese characters and makes it impossible to read the code.
http://utf-8.jp/public/aaencode.html

But again, if someone is willing, they can get the original code by going here: https://cat-in-136.github.io/2010/12/aa ... ncode.html

After spending like a month on trying to obfuscate my code, I gave up since any obfuscation that is provided for free can be broken. A service named "JSScrambler" claims to obfuscate code which is extremely tough to crack. If you sign up for their service, do let me know :-)
Robust iMacros development with quick turnaround time. Drop an email at "access2content@gmail.com" with your project details.
User avatar
thecoder2012
Posts: 446
Joined: Sat Aug 15, 2015 5:14 pm
Location: Internet
Contact:

Re: obfuscate imacro script

Post by thecoder2012 » Tue Nov 06, 2018 6:30 pm

access2vivek wrote:After spending like a month on trying to obfuscate my code, I gave up since any obfuscation that is provided for free can be broken. A service named "JSScrambler" claims to obfuscate code which is extremely tough to crack. If you sign up for their service, do let me know :-)
It's always breakable but "JSScrambler" combined with "JS-Obfus/Stunnix" is not bad in my eyes but not tested.
Join 9kw.eu Captcha Service now and let your iMacros continue downloads and scripts while you sleep. - Custom iMacros? Contact me! :idea:
access2vivek
Posts: 69
Joined: Wed Dec 20, 2017 10:00 am
Location: New Delhi, India
Contact:

Re: obfuscate imacro script

Post by access2vivek » Wed Nov 07, 2018 9:46 am

thecoder2012 wrote:
access2vivek wrote:After spending like a month on trying to obfuscate my code, I gave up since any obfuscation that is provided for free can be broken. A service named "JSScrambler" claims to obfuscate code which is extremely tough to crack. If you sign up for their service, do let me know :-)
It's always breakable but "JSScrambler" combined with "JS-Obfus/Stunnix" is not bad in my eyes but not tested.
JSScrambler itself has ways to defend from being being easily breakable by adding trap codes and other things in the mix. However, both the "JSScrambler" and "JS-Obfus/Stunnix" are paid services and I like free stuff :-p! For that case, you can actually use the Aaencode which works pretty well to ward off at least even some good coders.

I am learning the core of JavaScript so that I can create my own obfuscator :p. How about we request the iMacros team to provide an Obfuscator? That will be a really cool feature I bet!
Robust iMacros development with quick turnaround time. Drop an email at "access2content@gmail.com" with your project details.
User avatar
thecoder2012
Posts: 446
Joined: Sat Aug 15, 2015 5:14 pm
Location: Internet
Contact:

Re: obfuscate imacro script

Post by thecoder2012 » Wed Nov 07, 2018 12:00 pm

access2vivek wrote:JSScrambler itself has ways to defend from being being easily breakable by adding trap codes and other things in the mix. However, both the "JSScrambler" and "JS-Obfus/Stunnix" are paid services and I like free stuff :-p! For that case, you can actually use the Aaencode which works pretty well to ward off at least even some good coders.
Good coders? Real coders in my eyes. :D
All free solutions are very easy (few seconds or minutes) in my eyes. Paid solutions few hours or days usually but I have only tested Perl-Obfus/Stunnix in the past.
access2vivek wrote:I am learning the core of JavaScript so that I can create my own obfuscator :p. How about we request the iMacros team to provide an Obfuscator? That will be a really cool feature I bet!
Good luck!
Join 9kw.eu Captcha Service now and let your iMacros continue downloads and scripts while you sleep. - Custom iMacros? Contact me! :idea:
techimac
Posts: 482
Joined: Fri Feb 20, 2015 9:27 pm

Re: obfuscate imacro script

Post by techimac » Thu Nov 15, 2018 7:02 am

Available for custom iim, javascript iMacros scripts
Post Reply