Oracle Apex 隐藏版本
在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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可能有办法阻止探查器工具识别库的版本等,因为它们直接内置于库中。例如,在浏览器控制台中运行此命令将输出 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:
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.