From 64991dcc0cc32e2a31cf36664f1cb9c9cf019432 Mon Sep 17 00:00:00 2001 From: Fahad Date: Tue, 3 Nov 2020 18:12:50 +0500 Subject: [PATCH 1/3] Update README.md --- README.md | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 0ed6b49..bb5f559 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# TikTok source code +## TikTok source code Reverse engineered source code to the android tiktok app. -# background +### Background This project is a bit different from my other projects. TikTok is a data collection engine disguised as a social media platform. It's legitimate spyware, so I thought I would reverse engineer the Android application @@ -17,39 +17,39 @@ Here is the full reverse engineered source code. Enjoy [NOTE] this is where I got the APK. https://apkpure.com/tiktok/com.ss.android.ugc.trill -# interesting code +### Interesting Code -###### location tracking: -tiktok_source/df_miniapp/classes/com/tt/miniapp/maplocate/TMALocation.java -tiktok_source/df_miniapp/classes/com/tt/miniapp/maplocate/ILocator.java +###### Location tracking: +- [TMALocation.java](https://github.com/augustgl/tiktok_source/blob/master/df_miniapp/classes/com/tt/miniapp/maplocate/TMALocation.java) +- [ILocation.java](https://github.com/augustgl/tiktok_source/blob/master/df_miniapp/classes/com/tt/miniapp/maplocate/ILocator.java) -##### phone calls: -tiktok_source/df_miniapp/classes/com/tt/miniapp/call/PhoneCallImpl.java +##### Phone calls: +- [PhoneCallImpl.java](https://github.com/augustgl/tiktok_source/blob/master/df_miniapp/classes/com/tt/miniapp/call/PhoneCallImpl.java) -##### screenshot code: +##### Screenshot code: +- [TakeScreenshotManager.java](https://github.com/augustgl/tiktok_source/blob/master/df_miniapp/classes/com/tt/miniapp/msg/onUserCaptureScreen/TakeScreenshotManager.java) tiktok_source/df_miniapp/classes/com/tt/miniapp/msg/onUserCaptureScreen/TakeScreenshotManager.java -weird list in the screenshot code (this is nothing particularly special) +Wierd List in the screenshot code (this is nothing particularly special) ``` static final String[] KEYWORDS = new String[] { "screenshot", "screen_shot", "screen-shot", "screen shot", "screencapture", "screen_capture", "screen-capture", "screen capture", "screencap", "screen_cap", "screen-cap", "screen cap", "截屏" }; ``` -###### get wifi networks: -tiktok_source/df_miniapp/classes/com/tt/miniapp/msg/wifi/ApiGetWifiListCtrl.java +###### Get Wifi networks: +- [ApiGetWifiListCtrl.java](https://github.com/augustgl/tiktok_source/blob/master/df_miniapp/classes/com/tt/miniapp/msg/wifi/ApiGetWifiListCtrl.java) -###### facial recognition: -tiktok_source/df_miniapp/classes/com/tt/miniapp/facialverify/FacialVerifyProtocolActivity.java +###### Facial recognition: +- [FacialVerifyProtocolActivity.java](https://github.com/augustgl/tiktok_source/blob/master/df_miniapp/classes/com/tt/miniapp/facialverify/FacialVerifyProtocolActivity.java) -## update 9/11/2020 +### Update 9/11/2020 -###### sketchy address code -df_miniapp/classes/com/tt/miniapp/address/LoadAddressTask.java +###### Sketchy Address code +- [LoadAddressTask.java](https://github.com/augustgl/tiktok_source/blob/master/df_miniapp/classes/com/tt/miniapp/address/LoadAddressTask.java) -# TODO LIST - -decode all android manifests +### TODO LIST +- Decode all android manifests ### Done by From da000dd0fa219d447909bf6b8b6e8a5a075f352c Mon Sep 17 00:00:00 2001 From: Fahad Date: Tue, 3 Nov 2020 18:13:55 +0500 Subject: [PATCH 2/3] hippity hopiity ur project is now my property --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb5f559..63750d4 100644 --- a/README.md +++ b/README.md @@ -53,5 +53,5 @@ Wierd List in the screenshot code (this is nothing particularly special) ### Done by -- augustgl (github.com/augustgl -- quantumcore (github.com/quantumcore) +- [augustgl](https://github.com/augustgl) +- [quantumcore](https://github.com/quantumcore) From 9835f78ffb5649af172f78d37e467645e6fcb1ad Mon Sep 17 00:00:00 2001 From: Fahad Date: Tue, 3 Nov 2020 18:14:20 +0500 Subject: [PATCH 3/3] deez nuts --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 63750d4..ee67b82 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ China, I'll see you when you send the hitmen to my house. Here is the full reverse engineered source code. Enjoy -[NOTE] this is where I got the APK. https://apkpure.com/tiktok/com.ss.android.ugc.trill +**NOTE** : this is where I got the APK. https://apkpure.com/tiktok/com.ss.android.ugc.trill ### Interesting Code