+ 1
is there any code encoder for JavaScript,html,css etc?mention their tool names
Code encoder
6 Respostas
+ 2
Never mind, I didn't know what an encoder is. Please explain more in the description next time.
0
<-----:JAVASCRIPT ENCODER:----->
I recently found that obfuscator is used for js code encoding. This tool transforms your original JavaScript source code into a new representation that's harder to understand, copy, re-use and modify without authorization. The obfuscated result will have the exact functionality of the original code.
0
Yogeshwaran like uglifyjs ? or is it something else
0
<-----SOURCECODE ENCODER----->
*Code encoder is a tool used by all coders who wants to safeguard their source code from public.
*This tools are used to prevent the hackers or third person to copy or make a changes(alterations) in your source code.
*This tool prevents that by using various transformations and "traps", such as self-defending and debug protection.
*I know some of the code encoders like base64,percent encoding, hexadecimal encoding,unicode encoding etc
https://code.sololearn.com/Wpp9e0MM2A5k/?ref=app
<-----DEOBFUSCATORS----->
There are a few tools that you might try when wanting to analyze JavaScript:
JSDetox,Malzilla,JavaScript Deobfuscator,ExtractScriptJS-Beautifier,JS-Unpack (see also blog)Rhino Debugger,Firebug,SpiderMonkeyV8,JSNice,PoisonJS.
But it is hard to decode the source code.
Because the decoder(Third-party) don't know that the source coder use which tool to encode that sourcecode.
0
html and css are imposible.
but js, i'm pretty sure if you're looking for javascript obfuscator you'll find one relatively easy.
i'm not saying its 100% safe, people can still fully copy your code since copying it will retain its functionality so limitation to "copy" and "reuse" is only based on people's moral.
what about "modify" ? well.. javascript deobfuscator is also a thing.
just make sure you dont hardcoded sensitive information in clientside js
0
No Taste.Code encoder is differ from uglifyjs.
<------MINIFIER/COMPRESSOR------>
UglifyJS is a JavaScript compressor/minifier written in JavaScript. It also contains tools that allow one to automate working with JavaScript code: ... A compressor (optimizer) — it uses the transformer API to optimize an AST into a smaller one. A mangler — reduce names of local variables to (usually) single-letters.
<------CODE ENCODER------>
code encoder will convert the simple source code completely into complicated form(encoded form).which made hard to understand.