├── .DS_Store ├── .gitignore ├── AppScope ├── app.json5 └── resources │ └── base │ ├── element │ └── string.json │ └── media │ ├── background.png │ ├── foreground.png │ └── layered_image.json ├── LICENSE ├── LICENSE.txt ├── README.md ├── code-linter.json5 ├── docs └── signing-setup.md ├── entry ├── .gitignore ├── build-profile.json5 ├── hvigorfile.ts ├── obfuscation-rules.txt ├── oh-package-lock.json5 ├── oh-package.json5 └── src │ ├── main │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── types │ │ │ └── libentry │ │ │ │ ├── Index.d.ts │ │ │ │ └── oh-package.json5 │ │ └── vuln_jni.cpp │ ├── ets │ │ ├── entryability │ │ │ ├── EntryAbility.ets │ │ │ ├── LeakyImplicitAbility.ets │ │ │ └── SecretAbility.ets │ │ ├── entrybackupability │ │ │ └── EntryBackupAbility.ets │ │ └── pages │ │ │ ├── ClipboardLeakPage.ets │ │ │ ├── HardcodedKeyPage.ets │ │ │ ├── ImplicitHijackPage.ets │ │ │ ├── ImplicitHijackReceiver.ets │ │ │ ├── Index.ets │ │ │ ├── InsecureNetworkPage.ets │ │ │ ├── InsecureStoragePage.ets │ │ │ ├── NdkPage.ets │ │ │ ├── SecurePaymentPage.ets │ │ │ ├── SqlInjectionPage.ets │ │ │ └── WebViewPage.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ ├── element │ │ │ ├── color.json │ │ │ ├── float.json │ │ │ └── string.json │ │ ├── media │ │ │ ├── background.png │ │ │ ├── foreground.png │ │ │ ├── icon.png │ │ │ ├── layered_image.json │ │ │ └── startIcon.png │ │ └── profile │ │ │ ├── backup_config.json │ │ │ └── main_pages.json │ │ ├── dark │ │ └── element │ │ │ └── color.json │ │ └── rawfile │ │ └── vuln.html │ ├── mock │ ├── Libentry.mock.ets │ └── mock-config.json5 │ ├── ohosTest │ ├── ets │ │ └── test │ │ │ ├── Ability.test.ets │ │ │ └── List.test.ets │ └── module.json5 │ └── test │ ├── List.test.ets │ └── LocalUnit.test.ets ├── hvigor └── hvigor-config.json5 ├── hvigorfile.ts ├── oh-package-lock.json5 └── oh-package.json5 /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/.gitignore -------------------------------------------------------------------------------- /AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/AppScope/app.json5 -------------------------------------------------------------------------------- /AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /AppScope/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/AppScope/resources/base/media/background.png -------------------------------------------------------------------------------- /AppScope/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/AppScope/resources/base/media/foreground.png -------------------------------------------------------------------------------- /AppScope/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/AppScope/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/README.md -------------------------------------------------------------------------------- /code-linter.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/code-linter.json5 -------------------------------------------------------------------------------- /docs/signing-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/docs/signing-setup.md -------------------------------------------------------------------------------- /entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/.gitignore -------------------------------------------------------------------------------- /entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/build-profile.json5 -------------------------------------------------------------------------------- /entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/hvigorfile.ts -------------------------------------------------------------------------------- /entry/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/obfuscation-rules.txt -------------------------------------------------------------------------------- /entry/oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/oh-package-lock.json5 -------------------------------------------------------------------------------- /entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /entry/src/main/cpp/types/libentry/Index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/cpp/types/libentry/Index.d.ts -------------------------------------------------------------------------------- /entry/src/main/cpp/types/libentry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/cpp/types/libentry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/cpp/vuln_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/cpp/vuln_jni.cpp -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/LeakyImplicitAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/entryability/LeakyImplicitAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/SecretAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/entryability/SecretAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entrybackupability/EntryBackupAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/entrybackupability/EntryBackupAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/ClipboardLeakPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/ClipboardLeakPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/HardcodedKeyPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/HardcodedKeyPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/ImplicitHijackPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/ImplicitHijackPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/ImplicitHijackReceiver.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/ImplicitHijackReceiver.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/InsecureNetworkPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/InsecureNetworkPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/InsecureStoragePage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/InsecureStoragePage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/NdkPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/NdkPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/SecurePaymentPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/SecurePaymentPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/SqlInjectionPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/SqlInjectionPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/WebViewPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/ets/pages/WebViewPage.ets -------------------------------------------------------------------------------- /entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/module.json5 -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/base/element/float.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/base/media/background.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/base/media/foreground.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/base/media/icon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/startIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/base/media/startIcon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/backup_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "allowToBackupRestore": true 3 | } -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /entry/src/main/resources/dark/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/dark/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/rawfile/vuln.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/main/resources/rawfile/vuln.html -------------------------------------------------------------------------------- /entry/src/mock/Libentry.mock.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/mock/Libentry.mock.ets -------------------------------------------------------------------------------- /entry/src/mock/mock-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/mock/mock-config.json5 -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /entry/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/entry/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/hvigorfile.ts -------------------------------------------------------------------------------- /oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/oh-package-lock.json5 -------------------------------------------------------------------------------- /oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrainn/harmonyTarget/HEAD/oh-package.json5 --------------------------------------------------------------------------------