`ChronicleMap`正在访问操作系统的文件夹和文件。

huangapple go评论66阅读模式
英文:

ChronicleMap is accessing OS folders & files

问题

在使用build创建ChronicleMap时,它试图访问(读取/写入)以下操作系统(Mac)文件夹。

  1. /usr/lib/lib 上进行读取。
  2. /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.

  1. Read on "/usr/lib" & "/lib"
  2. 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用来存储其缓存(参见这里的代码,一些背景信息可以在这里找到)。

英文:

This has nothing to do with Chronicle Map but rather with JNA library we use for native access.
/usr/lib contains native libraries (like libc), and $HOME/Library/Caches/JNA/temp is used by JNA to store its caches (see here for the code, and some context can be found here)

huangapple
  • 本文由 发表于 2020年9月24日 02:11:09
  • 转载请务必保留本文链接:https://go.coder-hub.com/64033928.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定