Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想了解网站的 WebAssembly 模块的行为,我该如何实现?我可以监控 Webassembly 模块进行的系统调用吗?
WebAssembly 模块本身不能进行系统调用。他们所能做的就是调用由 JavaScript 提供的导入。
如果要监视对这些导入的调用,可以将参数中提供的每个函数包装importObject到实例化函数中。这使您可以拦截对外界的所有调用(在本例中为 JavaScript)。
importObject