Script security - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: Script security (/showthread.php?tid=2232) |
Script security - DGrandes - 10.09.2019 Hi, Is there any way to protect the JavaScript or css page? And scripts? I ask because there is a lot of know-how in the projects and our company asks me. Thanks RE: Script security - admin - 10.09.2019 For scripts you can use user libraries with "keep source" disabled. Create a separate function per each script, put it into user library and then call it from original script. For CSS/JS you will need an obfuscator, there are many free online tools: https://obfuscator.io/ http://cssobfuscator.com/ RE: Script security - DGrandes - 10.09.2019 (10.09.2019, 14:35)admin Wrote: For scripts you can use user libraries with "keep source" disabled. Create a separate function per each script, put it into user library and then call it from original script. For CSS/JS you will need an obfuscator, there are many free online tools: https://obfuscator.io/ http://cssobfuscator.com/ Thanks!! |