Decompressing or Extracting the XZ Frida Server?

2k views Asked by At

I am trying to push Frida onto an Android Emulator. To do this you use Android Device Bridge (adb) to "push" the frida server to a folder. I downloaded the server. It comes in a xz file format.

When I open the xz file with the Frida Android server in it in 8 Zip Pro it will extract it to a file folder. The instructions for pushing frida server seem to indicate there is just one file that goes over. Not a file folder.

I have seem other refer to "decompressing" the xz file first. What tools can be used to "decompress" this file. If I need to do something else to this file please let me know.

Thanks

1

There are 1 answers

0
JohnnyBeGood On

You can just use the command line to unzip it:

#unzip it
unxz frida-server-15.1.14-android-x86.xz

And then the following steps would be:

#change the name
mv frida-server-15.1.14-android-x86.xz frida-server

#push to device
adb push frida-server /data/local/tmp

#change permissions
adb shell "chmod 755 /data/local/tmp/frida-server"

#Run frida-server
adb shell "/data/local/tmp/frida-server