TIL
JS 파일 코드 난독화를 적용하여 보안 강화하기
DoosanBaek
2023. 2. 21. 17:55
JS 파일 코드 난독화를 적용하여 보안 강화하기
JS 파일은 사용자가 볼 수 있으므로, 해당 코드를 쉽게 알아볼 수 없도록 난독화를 적용한 코드를 통해 보안을 강화한다.
JavaScript Obfuscator Tool
What is this? 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. How
obfuscator.io
해당 사이트에서 자바스크립트 코드를 난독화 적용할 수 있다.
프론트 핵 꿀팁임