Skip to content

Commit 3fe0f62

Browse files
committed
commit
1 parent 7ceefd7 commit 3fe0f62

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1033
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@
1414

1515
[6.Xposed基础演练——进击微信之获取附近的人(初级操作)](projects/XposedHookWeiXin2)
1616

17-
[6.Xposed基础演练——进击微信之获取附近的人(进阶操作)](projects/XposedHookWeiXin3)
17+
[7.Xposed基础演练——进击微信之获取附近的人(进阶操作)](projects/XposedHookWeiXin3)
1818

19-
[7.Xposed基础演练——进击微信之自动发朋友圈](projects/XposedHookWeiXin4)
19+
[8.Xposed基础演练——进击微信之摇骰子和猜拳作弊器](projects/XposedHookWeiXin4)
20+
21+
[9.Xposed基础演练——进击微信之自动发朋友圈](projects/XposedHookWeiXin5)
22+
23+
[10.Xposed基础演练——进击微信之任意定位并嗅探附件的人](projects/XposedHookWeiXin6)
2024

2125
**记录一些神奇的地址**
2226

projects/XposedHookWeiXin4/.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.DS_Store
2+
*.DS_Store
3+
*.iml
4+
.gradle
5+
/local.properties
6+
/.idea/caches
7+
/.idea/libraries
8+
/.idea/modules.xml
9+
/.idea/workspace.xml
10+
/.idea/navEditor.xml
11+
/.idea/assetWizardSettings.xml
12+
/build
13+
/captures
14+
.externalNativeBuild
15+

projects/XposedHookWeiXin4/.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/XposedHookWeiXin4/.idea/gradle.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/XposedHookWeiXin4/.idea/markdown-navigator.xml

Lines changed: 82 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/XposedHookWeiXin4/.idea/markdown-navigator/profiles_settings.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/XposedHookWeiXin4/.idea/misc.xml

Lines changed: 130 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/XposedHookWeiXin4/.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/XposedHookWeiXin4/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/XposedHookWeiXin4/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
**本工程目标——通过hook方式完成微信摇骰子和猜拳作弊的功能**
2+
3+
**本工程基于[微信7.0.4版本源码](./docs/weixin_7.0.4_source),根据[Android"挂逼"修炼之行---微信摇骰子和猜拳作弊器原理解析](https://blog.csdn.net/jiangwei0910410003/article/details/52892330)扩展而来**
4+
5+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 28
5+
defaultConfig {
6+
applicationId "com.example.xposedhookweixin1"
7+
minSdkVersion 18
8+
targetSdkVersion 22
9+
versionCode 1
10+
versionName "1.0"
11+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
12+
}
13+
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
18+
}
19+
}
20+
}
21+
22+
dependencies {
23+
implementation fileTree(dir: 'libs', include: ['*.jar'])
24+
implementation 'com.android.support:appcompat-v7:28.0.0'
25+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
26+
testImplementation 'junit:junit:4.12'
27+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
28+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
29+
compileOnly 'de.robv.android.xposed:api:82'
30+
compileOnly 'de.robv.android.xposed:api:82:sources'
31+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package com.example.xposedhookweixin1;
2+
3+
import android.content.Context;
4+
import android.support.test.InstrumentationRegistry;
5+
import android.support.test.runner.AndroidJUnit4;
6+
7+
import org.junit.Test;
8+
import org.junit.runner.RunWith;
9+
10+
import static org.junit.Assert.*;
11+
12+
/**
13+
* Instrumented test, which will execute on an Android device.
14+
*
15+
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
16+
*/
17+
@RunWith(AndroidJUnit4.class)
18+
public class ExampleInstrumentedTest {
19+
@Test
20+
public void useAppContext() {
21+
// Context of the app under test.
22+
Context appContext = InstrumentationRegistry.getTargetContext();
23+
24+
assertEquals("com.example.xposedhookweixin1", appContext.getPackageName());
25+
}
26+
}

0 commit comments

Comments
 (0)