-
Notifications
You must be signed in to change notification settings - Fork 60
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
Remove further detection points #104
Open
ThePedroo
wants to merge
6
commits into
main
Choose a base branch
from
remove/detection-points
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
This commit removes a detection point by caching mountinfo. Native Test Futile Hide (01) is a detection which is able to detect "/proc/self/mountinfo" reads in unshare, due to that it is not possible to read that file in the unshare syscall. To bypass that we cache the Magisk/KSU/APatch mounts and umount all of them in unshare.
ThePedroo
added
confirmed
This issue or pull request is confirmed to be done.
enhancement
New feature or request
labels
Dec 28, 2024
This commit changes logs from LOGI to LOGD. This change is explained by the fact that libzygisk.so logs inside the app, which is easily detectable, and LOGI is not removed in release builds, where LOGD and LOGV are, being a better solution in the meanwhile.
This commit focuses in porting JingMatrix/NeoZygisk@2814712#diff-e00e4b92e648c073b9ee1644fba5f7948b2d0b77fcfcdc26b7a4144290e321a3R379 to ReZygisk. Further explanation is given in NeoZygisk commit.
ThePedroo
force-pushed
the
remove/detection-points
branch
from
December 29, 2024 07:01
ab27ffe
to
c030760
Compare
The DenyList is still buggy, don't merge it too soon. |
Now the implementation of DenyList is stable, you can pick my latest two commits into ReZygisk. |
ThePedroo
force-pushed
the
remove/detection-points
branch
2 times, most recently
from
December 29, 2024 22:23
0ad5891
to
b547cdc
Compare
ThePedroo
force-pushed
the
remove/detection-points
branch
from
December 29, 2024 22:24
b547cdc
to
3d99db3
Compare
ThePedroo
force-pushed
the
remove/detection-points
branch
from
January 1, 2025 01:09
8d00340
to
383d28f
Compare
This commit fixes/reverts the removal of SELinux rules, which can be necessary hence causing issues: "The cause is userdebug build has different sepolicy label from user build rom for tmpfs". Thanks aviraxp for reporting this.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Changes
This PR is focused on doing vast things to remove the amount of detection points in ReZygisk, them being futile or not.
Why
This allows users to have less trouble with applications that use huge amount of detections to prohibit the use of their app.
Checkmarks