forked from ReVanced/revanced-patches-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'lg33/main'
- Loading branch information
Showing
3 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
src/main/kotlin/grindr/patches/grindr/spoof/fingerprints/GetAndroidIDFingerprint.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package app.revanced.patches.grindr.spoof.fingerprints | ||
|
||
import app.revanced.patcher.extensions.or | ||
import app.revanced.patcher.fingerprint.MethodFingerprint | ||
import com.android.tools.smali.dexlib2.AccessFlags | ||
|
||
|
||
internal object GetAndroidIDFingerprint : MethodFingerprint( | ||
parameters = listOf("Landroid/content/Context"), | ||
accessFlags = AccessFlags.PUBLIC or AccessFlags.FINAL, | ||
strings = listOf( | ||
"context", | ||
"android_id" | ||
), | ||
returnType = "Ljava/lang/String" | ||
) |
49 changes: 49 additions & 0 deletions
49
src/main/kotlin/grindr/patches/grindr/spoof/patch/SpoofAndroidDeviceIdPatch.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package app.revanced.patches.grindr.spoof.patch | ||
|
||
import app.revanced.patcher.data.BytecodeContext | ||
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions | ||
import app.revanced.patcher.patch.BytecodePatch | ||
import app.revanced.patcher.patch.annotation.CompatiblePackage | ||
import app.revanced.patcher.patch.annotation.Patch | ||
import app.revanced.patcher.patch.options.PatchOption.PatchExtensions.stringPatchOption | ||
import app.revanced.patches.grindr.spoof.fingerprints.GetAndroidIDFingerprint | ||
|
||
@Patch( | ||
name = "Spoof Android device ID", | ||
description = "Spoofs the Android device ID used by the app for account authentication. " + | ||
"This can be used to copy the account to another device.", | ||
compatiblePackages = [ | ||
CompatiblePackage( | ||
"com.grindrapp.android", | ||
[ | ||
"24.9.0", | ||
"24.10.0", | ||
"24.11.0", | ||
"24.12.0", | ||
"24.13.0", | ||
], | ||
), | ||
] | ||
) | ||
|
||
|
||
object SpoofAndroidDeviceIdPatch : BytecodePatch( | ||
setOf(GetAndroidIDFingerprint), | ||
) { | ||
private var androidDeviceId = | ||
stringPatchOption( | ||
key = "android-device-id", | ||
default = "0011223344556677", | ||
title = "Android device ID", | ||
description = "The Android device ID to spoof to.", | ||
required = true, | ||
) { it!!.matches("[A-Fa-f0-9]{16}".toRegex()) } | ||
|
||
override fun execute(context: BytecodeContext) = GetAndroidIDFingerprint.result?.mutableMethod?.addInstructions( | ||
0, | ||
""" | ||
const-string v0, "$androidDeviceId" | ||
return-object v0 | ||
""", | ||
) ?: throw Exception("Something wrong happened") | ||
} |