Oracle Apex 隐藏版本

发布于 2025-01-12 15:31:26 字数 251 浏览 0 评论 0原文

在Oracle Apex中,有没有办法保留技术分析器工具来提取版本?例如,RequireJS、jQuery、jQuery Migrate、jQuery UI。一旦分析器运行,这些技术就不应该显示在所述分析器上。

输入图片此处描述

In Oracle Apex, is there a way to keep technology profiler tool to extract the versions? For example, RequireJS, jQuery, jQuery Migrate, jQuery UI. Once the profiler run, these technologies should not be displayed on the said profiler.

enter image description here

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

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

发布评论

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

评论(1

风为裳 2025-01-19 15:31:26

不可能有办法阻止探查器工具识别库的版本等,因为它们直接内置于库中。例如,在浏览器控制台中运行此命令将输出 jQuery 的版本:

console.log( 'You are running jQuery version: ' + $.fn.jquery );

除非 Oracle 修改库(这似乎不太可能)以删除返回库版本的任何功能,否则您无能为力。如果有人非常坚定,他们仍然可以从您的服务器下载 javascript、css 等文件,并将它们与库的已知版本进行比较,以将它们与版本匹配。

There is not likely a way to block a profiler tool from identifying the versions of the libraries and such because they are built right into the libraries. For example, running this in the browser console will output the version of jQuery:

console.log( 'You are running jQuery version: ' + $.fn.jquery );

Unless Oracle modifies the libraries (which seems highly unlikely) to remove any abilities to return the version of the library, there's not much you can do. If someone was very determined, they could still just download the javascript, css, etc. files from your server and compare them against the known releases of the libraries to match them to a version.

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