Skip to content

Use Linux

Kenjiro Ichise edited this page Nov 12, 2022 · 2 revisions

Host OS must be Windows.
1) Examine the local IP address of Linux running on the virtual machine.
Set the above address to frida_server_ip in config.toml.
2) start frida-server on Linux.
sudo ./frida-server -l 0.0.0.0
3) python main.py

Sample config.toml in spawn process on linux.

# https://github.com/DoranekoSystems/frida-ceserver/wiki/Config
[general]
target =  ""
targetOS = "linux"
mode =  "spawn"
binary_path = "/usr/games/game"
# 0:i386 1:x86_64 2:arm 3:aarch64
arch = 1
ceversion =  "7.4.2"

[ipconfig]
frida_server_ip =  "192.168.xxx.xxx"
native_ceserver_ip =  ""
debugserver_ip =  ""
  
[ssh_auto]
enable = false
ip = ""
username = ""
password = ""
ceserver_path =""
debugserver_path = ""

[adb_auto]
enable = false
frida_server_path = ""
ceserver_path = ""
gdbserver_path = ""

[extended_function]
fix_module_size =  false
manualParser = false
javaDissect  = false
custom_symbol_loader =  ""
Clone this wiki locally