Questions tagged [obfuscation]

Code obfuscation involves making changes to the programming code in order to make it significantly more challenging for developers to decipher the precise purpose or workings of the intended program. The level of obfuscation generally increases with the size of the program, as the code becomes intricately interwoven, connecting various segments throughout the entirety of the program.

Develop a private npm module

My goal is to release an NPM package that is closed source, accessible for everyone to use but not open for code inspection. While aware of private packages, they do not meet my requirements. I am looking for a way to compile my code into a closed-source l ...

Different methods to obscure solely URLs in AngularJS

Is there a way to effectively obfuscate URLs in AngularJS? Currently, I am using base 64 encoding as a method of obscuring my URLs. For example, let's say my URL is: I encode and decode it like this: aHR0cDovLzE5Mi4wLjAuMC9teS91cmwv However, when ...

Is it possible to encode JavaScript with masked binary values?

This segment of code produces the output D. The real question is - HOW? alert([][(![]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![] ...

Toggle the visibility of the password using VueJS without changing the value of the "type" property

I have been working with a basic input component that includes the property type, which has been functioning well so far. However, I am facing some challenges when trying to implement password obfuscation. How can I toggle the visibility of the password w ...

What precautions should I take to safeguard my HTML/CSS/JS projects when sharing a link with my employer?

Picture this scenario: you need to share a link for your work, but you want to protect it from being easily copied or developed further by someone else. However, since it's a document, any browser can still view it. Can anyone recommend a tool that wi ...

Enhancing Security in Asp MVC with Cutting-Edge Obfuscation Techniques like SmartAssembly and CryptoOb

Can CryptoObfuscator or RedGate SmartAssembly rename properties of classes when obfuscating Asp Mvc Assemblies? I'm concerned that if these tools do rename the properties, we may lose access to some values in JSON format that are returned from the server ...