js-confuser icon indicating copy to clipboard operation
js-confuser copied to clipboard

JS-Confuser is a JavaScript obfuscation tool to make your programs *impossible* to read.

Results 69 js-confuser issues
Sort by recently updated
recently updated
newest added

**Describe the bug:** The program crashes when using the npm module but works when using the website. **Config and Small code sample** Config: ```js { target: "node", preset: "medium" }...

bug

Hi there, I am using js-confuser for obfuscating my JavaScript code, and I have a question regarding excluding certain functions from the obfuscation process. Is there an option or feature...

enhancement

That's it we need that xD

enhancement

Hi, I would like to request a new feature for the Js-Confuser library. While the library is highly effective in code obfuscation, I would like to suggest an additional feature...

enhancement

in Chrome, possible to detect when devtools is open by using the `Runtime.enable` event. for information, please read this article: [How New Headless Chrome & the CDP Signal Are Impacting...

enhancement

The [`with`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/with) statement is able to obfuscate variable names, that could be very difficult for AST analyzers to understand. You can also do weird things with proxies. ```js const namespace...

enhancement

**Config and Small code sample** Config: ```js { target: "node", renameVariables: true } ``` Code: ```js var a = "Incorrect value"; with ({ a: "Correct Value" }) { console.log(a); }...

bug

Error: [Pack] Export statements are not supported in packed

bug

Hi developer, I've noticed that moveDeclaration and a few other options such as variableMasking cannot work on following FunctionExpress, and they only work on normal functions. var e; e.prototype.foo =...

enhancement

**Describe the bug:** When using the obfuscated code, the browser runs considerably slower. Windows Task Manager reports Firefox consuming over 17% CPU and Chrome over 12%. When running the un-obfuscated...

bug