Shravan#3
Open
nextgensh wants to merge 2 commits into
Open
Conversation
After restart the user is dropped back into the normal shell. This code modifies the original psneuter code written scotty2. Immediately after the adb deamon is killed the code forks, and creates another adb deamon process. Hence when the user reconnects to via adb again there is already a deamon running and the phone does not restart. The user is dropped into the root shell. Tested on - LGP970 : Froyo 2.2 with LG version v10d modified: README modified: psneuter modified: psneuter.c
ro.secure key value pair, the adb link freezes on the terminal and the server manually by running a adb kill-server. After connecting to the adb shell again the user gets only upto 20 seconds of root, before the device restarts itself and reboots in normal more with ro.secure set. In this modified version we do not depend on the device to restart the adb process, but do it manually. Does this is much more reliable method as some devices are programmed to restart or freeze when the adb server is killed manually. LGP970 was one such device. Running the modified version of this code fixed the problem. I will test this on more devices and keep the README file updated accordingly. modified: README modified: psneuter modified: psneuter.c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
On some devices when the adb deamon is killed after changing the
ro.secure key value pair, the adb link freezes on the terminal and
the server manually by running a adb kill-server. After connecting
to the adb shell again the user gets only upto 20 seconds of root,
before the device restarts itself and reboots in normal more with
ro.secure set.
In this modified version we do not depend on the device to restart the
adb process, but do it manually. Does this is much more reliable method
as some devices are programmed to restart or freeze when the adb server
is killed manually.
LGP970 was one such device. Running the modified version of this code
fixed the problem.