英文:
ChronicleMap is accessing OS folders & files
问题
在使用build
创建ChronicleMap
时,它试图访问(读取/写入)以下操作系统(Mac)文件夹。
- 在
/usr/lib
和/lib
上进行读取。 - 在
/Users/userx/Library/Caches/JNA/temp
上进行读取和写入。
我正在努力理解这些文件夹访问发生的原因,以便我可以向我们的安全团队进行解释。
英文:
While creating a ChronicleMap using the build, it is trying to access(read/write) the following OS(Mac) folders.
- Read on "/usr/lib" & "/lib"
- Read & Write on "/Users/userx/Library/Caches/JNA/temp"
I am trying to understand the reason on why these folder access are happening so that I can justify to our security team
答案1
得分: 1
这与Chronicle Map无关,而与我们用于本地访问的JNA库有关。
/usr/lib
包含本地库(如libc),而 $HOME/Library/Caches/JNA/temp
被JNA用来存储其缓存(参见这里的代码,一些背景信息可以在这里找到)。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论