From d81147a362009ee50a1fe5c4e3ff8b58f5ac9ca5 Mon Sep 17 00:00:00 2001 From: Corey Edwards Date: Sat, 1 Aug 2015 11:00:09 -0500 Subject: [PATCH 1/8] Block Mobilism Market This app is the mobile app of Mobilism, that contain lots of pirated apps and themes, both free & paid versions. That's no bueno!! --- src/utils/AntiPiracyConstants.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/AntiPiracyConstants.java b/src/utils/AntiPiracyConstants.java index 0b988d6..b3adf95 100644 --- a/src/utils/AntiPiracyConstants.java +++ b/src/utils/AntiPiracyConstants.java @@ -34,6 +34,7 @@ public class AntiPiracyConstants { "com.allinone.free", // All-in-one Downloader "com.repodroid.app", // Get Apk Market "org.creeplays.hack", // CreeHack - "com.baseappfull.fwd" // Game Hacker + "com.baseappfull.fwd", // Game Hacker + "org.mobilism.android" // Mobilism Market }; } From 66cd3755a1a17ba0860e11cd92d3bfc399bdd5d8 Mon Sep 17 00:00:00 2001 From: Corey Edwards Date: Sat, 1 Aug 2015 16:06:53 -0500 Subject: [PATCH 2/8] Block cracked Google Play installler There are a bunch of them, but this is one is the most commonly used. These installers allow the user to install a cracked Google Play that can bypass license verifications, leading to pirated apps/features. There are more, I'll add once I find their package names. --- src/utils/AntiPiracyConstants.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/AntiPiracyConstants.java b/src/utils/AntiPiracyConstants.java index b3adf95..74b499b 100644 --- a/src/utils/AntiPiracyConstants.java +++ b/src/utils/AntiPiracyConstants.java @@ -35,6 +35,7 @@ public class AntiPiracyConstants { "com.repodroid.app", // Get Apk Market "org.creeplays.hack", // CreeHack "com.baseappfull.fwd", // Game Hacker - "org.mobilism.android" // Mobilism Market + "org.mobilism.android", // Mobilism Market + "com.dv.marketmod.installer" // Cracked Google Play installer }; } From 91ec9254866799c60f860d3cc8060d82da250bb7 Mon Sep 17 00:00:00 2001 From: Dave Kessler Date: Thu, 6 Aug 2015 17:12:43 -0400 Subject: [PATCH 3/8] AntiPiracyInstallreceiver: Move the toast out of package check loop --- src/AntiPiracyInstallReceiver.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/AntiPiracyInstallReceiver.java b/src/AntiPiracyInstallReceiver.java index ed32deb..79a088c 100644 --- a/src/AntiPiracyInstallReceiver.java +++ b/src/AntiPiracyInstallReceiver.java @@ -46,6 +46,7 @@ public class AntiPiracyInstallReceiver extends BroadcastReceiver { public void onReceive(Context ctx, Intent intent) { Intent notifyService = new Intent(ctx, AntiPiracyNotifyService.class); if (DEBUG) Log.i(TAG, "install check event"); + boolean displayToast = false; for (String app : PACKAGES) { if (DEBUG) Log.e(TAG, "PACKAGE " + app + " testing for install"); @@ -53,11 +54,15 @@ public void onReceive(Context ctx, Intent intent) { Log.i("(╯°□°)╯︵ ┻━┻", "Blacklisted packages found: " + app); if (!isServiceRunning(AntiPiracyNotifyService.class, ctx)) { ctx.startService(notifyService); - Toast.makeText(ctx, "Anti-piracy software activated", Toast.LENGTH_LONG).show(); + displayToast = true; } break; } } + + if (displayToast) { + Toast.makeText(ctx, "Anti-piracy software activated", Toast.LENGTH_LONG).show(); + } } private boolean isServiceRunning(Class serviceClass, Context ctx) { From 6a353347083731c47e3fe6b2a83053fa2806a636 Mon Sep 17 00:00:00 2001 From: Dave Kessler Date: Thu, 6 Aug 2015 20:26:08 -0400 Subject: [PATCH 4/8] Add Z market to the list --- src/utils/AntiPiracyConstants.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/AntiPiracyConstants.java b/src/utils/AntiPiracyConstants.java index 0b988d6..f66ca2f 100644 --- a/src/utils/AntiPiracyConstants.java +++ b/src/utils/AntiPiracyConstants.java @@ -34,6 +34,7 @@ public class AntiPiracyConstants { "com.allinone.free", // All-in-one Downloader "com.repodroid.app", // Get Apk Market "org.creeplays.hack", // CreeHack - "com.baseappfull.fwd" // Game Hacker + "com.baseappfull.fwd", // Game Hacker + "com.zmapp" // Z market }; } From bcd5ae0bf54b6e1d2b3e23473f8666f7f0d58e62 Mon Sep 17 00:00:00 2001 From: Dave Kessler Date: Thu, 6 Aug 2015 20:36:31 -0400 Subject: [PATCH 5/8] Update readme --- README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a067769..aab0e84 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,17 @@ # AntiPiracySupport -Report new piracy markets and malware to me or get help us out by getting involved. -For ROM developers interested in using this it makes more sense to track this project directly -and then bridge into an existing package with correct perms (like settings). This way any changes made -here to the blacklisted packages and improvements will reach out to everyone. Feel free to fork as well. +ATTN: AntiPiracySupport is slated for depreciation for V2. -commits required: -http://exodus-developers.net:8000/#/c/819/ -http://exodus-developers.net:8000/#/c/1018/ +Report new piracy markets and malware to anyone involved on the team or get help us out by +getting involved. Pull requests are welcome! If you'd like to join the project just ask. +If you're interested in helping to support us it makes more sense to track than it does to fork since +it is going to be maintained here.. but if you fork please be sure to look for updates regularly. -Thank you for helping to support developers/themers by making it more difficult to steal from them! +COMMITS REQUIRED TO INTEGRATE:
+http://exodus-developers.net:8000/#/c/819/
+http://exodus-developers.net:8000/#/c/1018/
+http://exodus-developers.net:8000/#/c/1128/ + +Feel free to message any of the team with questions or comments. +Thank you for helping to support developers/themers! From d8517df38d847cbed695676bba0fcf41b82da497 Mon Sep 17 00:00:00 2001 From: Dave Kessler Date: Thu, 6 Aug 2015 20:43:25 -0400 Subject: [PATCH 6/8] Add cracked play store that gives refunds without uninstalling --- src/utils/AntiPiracyConstants.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/AntiPiracyConstants.java b/src/utils/AntiPiracyConstants.java index f66ca2f..6e83284 100644 --- a/src/utils/AntiPiracyConstants.java +++ b/src/utils/AntiPiracyConstants.java @@ -35,6 +35,7 @@ public class AntiPiracyConstants { "com.repodroid.app", // Get Apk Market "org.creeplays.hack", // CreeHack "com.baseappfull.fwd", // Game Hacker - "com.zmapp" // Z market + "com.zmapp", // Z market + "com.dv.marketmod.installer" // Hacked play store that gives refunds without uninstalling the apk }; } From 528751b9f3e4858e3ec8292f41669637e6af60a8 Mon Sep 17 00:00:00 2001 From: Dave Kessler Date: Thu, 6 Aug 2015 20:46:23 -0400 Subject: [PATCH 7/8] Add mobilism market --- src/utils/AntiPiracyConstants.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/AntiPiracyConstants.java b/src/utils/AntiPiracyConstants.java index 6e83284..d394785 100644 --- a/src/utils/AntiPiracyConstants.java +++ b/src/utils/AntiPiracyConstants.java @@ -36,6 +36,7 @@ public class AntiPiracyConstants { "org.creeplays.hack", // CreeHack "com.baseappfull.fwd", // Game Hacker "com.zmapp", // Z market - "com.dv.marketmod.installer" // Hacked play store that gives refunds without uninstalling the apk + "com.dv.marketmod.installer", // Hacked play store that gives refunds without uninstalling the apk + "org.mobilism.android" // Mobilism market }; } From 0248251b26db876ec10bc9d606661131fcb6a6f5 Mon Sep 17 00:00:00 2001 From: Dave Kessler Date: Mon, 10 Aug 2015 00:59:21 -0400 Subject: [PATCH 8/8] Update readme (required commits list) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aab0e84..6a83e33 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,8 @@ it is going to be maintained here.. but if you fork please be sure to look for u COMMITS REQUIRED TO INTEGRATE:
http://exodus-developers.net:8000/#/c/819/
http://exodus-developers.net:8000/#/c/1018/
-http://exodus-developers.net:8000/#/c/1128/ +http://exodus-developers.net:8000/#/c/1128/
+http://exodus-developers.net:8000/#/c/1172/ Feel free to message any of the team with questions or comments. Thank you for helping to support developers/themers!