与此相同的 JS 混淆器功能

发布于 2024-12-08 20:56:57 字数 333 浏览 1 评论 0原文

有人知道是否有一个 ASP.net 库或 EXE 可以混淆 Javascript,例如 http://javascriptobfuscator.com/default。 .aspx.我需要相同的功能。我喜欢混淆器,因为当我尝试将其扔给美化器时,它仍然很难阅读。其他的可以轻松地逆向工程为与以前相同的代码。 javascriptobfuscator.com 上的做得更好。

它不提供可下载版本,所以也许您知道我在哪里可以找到具有相同功能的版本。我读过其他问题,但没有找到能做到这一点的问题。

Does someone know if there is an ASP.net library or EXE that obfuscate Javascript like http://javascriptobfuscator.com/default.aspx. I need the same features. I like the obfuscator because when I try to throw it to a beautifier it still very hard to read. Others can be easily reversed engineered to the same code as before. The one on javascriptobfuscator.com does a better job.

It doesn't offer a downloadable version, so maybe you know where I can find one that does the same. I've read other questions but didn't find one that do that.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

君勿笑 2024-12-15 20:56:57

这是一个廉价的混淆器,uglifyjs 可以轻松美化混淆后的 javascript。

这是美化的示例:

function MsgBox(b) {
    alert(b + _0x1495[1] + a);
}

var _0x1495 = [ "Hello World!", "\n", "OK" ], a = _0x1495[0];

MsgBox(_0x1495[2]);

我认为它很容易阅读。

That's a cheap obfuscator, uglifyjs can easily beautify the obfuscated javascript.

Here is the example beautified:

function MsgBox(b) {
    alert(b + _0x1495[1] + a);
}

var _0x1495 = [ "Hello World!", "\n", "OK" ], a = _0x1495[0];

MsgBox(_0x1495[2]);

I think it's pretty easy to read.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文