frida的server模式需要python支持,所以js脚本中的正则需要多一次转义

比如匹配"/proc/{数字pid}"

server:

paramPath.match("/proc/\\\\d+")

gadget:

paramPath.match("/proc/\\d+")

所以使用了正则的话,不能直接复制脚本到另一种模式下运行

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-16
  • 2021-06-22
  • 2022-03-08
  • 2021-10-19
  • 2021-06-21
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案