Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Load JS script file to Frida CLI

How can I load JS script to Frida CLI (while frida running) ?

I know I can load JS script : frida -l test.js But how can I do that if Frida just running and I in Frida CLI ?

like image 576
vtable Avatar asked Jan 19 '26 14:01

vtable


1 Answers

You can use the %load command. help list

(while frida-cli is running)

%load script.js

Check the %help command or the docs: https://frida.re/docs/frida-cli/

like image 65
Spiral-sec Avatar answered Jan 22 '26 03:01

Spiral-sec