-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from ICTrust/dev
Update 1.6.0
- Loading branch information
Showing
116 changed files
with
12,460 additions
and
1,697 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,53 @@ | ||
|
||
|
||
# PObY-A | ||
PObY-A, Privacy Owned by You - Android, is an application which aims to help Android users improve the security and privacy of their devices. | ||
PObY-A, Privacy Owned by You - Android, is a security and privacy application for Android devices to improve security and privacy of their devices. It uses ClamAV database to scan for malware and warn users about apps with dangerous permissions. It also enforces some settings based on CIS recommendations. | ||
|
||
Malware scan is offline and based on two databases: | ||
- ClamAV database, which is updated daily. The app will download the database when it is outdated. | ||
- PObY-A database, managed by ICTrust. | ||
|
||
## Features | ||
|
||
| PObY-A Features | | | ||
|----------------------------------------------------------------|-----| | ||
| 🚫 No Ads or Purchases | ✅ | | ||
| 📙 Translations (FR & EN) | ✅ | | ||
| 🪲 Malware scan | ✅ | | ||
| ⏱️ Live monitoring (install/uninstall) | ✅ | | ||
| 🔐 Enforce settings privacy based on some CIS* recommendations | ✅ | | ||
| ⚠️ Warn of apps with dangerous* permissions | ✅ | | ||
| ⚡ Many more coming... | ✅ | | ||
| PObY-A Features | | | ||
|----------------------------------------------------------------|---| | ||
| 🚫 No Ads or Purchases | ✅ | | ||
| 📙 Translations (FR & EN) | ✅ | | ||
| 🪲 Malware scan | ✅ | | ||
| 🛡️ CVD: ClamAV database integration | ✅ | | ||
| 🔐 Enforce settings privacy based on some CIS* recommendations | ✅ | | ||
| ⚠️ Warn apps with dangerous* permissions | ✅ | | ||
| ⚡ Many more coming... | ✅ | | ||
|
||
**CIS:** Center of Internet Security | ||
**CIS:** Center for Internet Security | ||
|
||
**dangerous**: "A higher-risk permission that would give a requesting application access to private user data or control over the device that can negatively impact the user" [permission element](https://developer.android.com/guide/topics/manifest/permission-element) | ||
|
||
## Supported Android versions | ||
**8.0 (API 26) to 12 (API 31)** | ||
**8.0 (API 26) to 13 (API 34)** | ||
|
||
## Required permissions | ||
- Write system settings | ||
- "force-lock" admin permission | ||
- Bluetooth permission: needed to automate disable bluetooth | ||
- Foreground service permission: needed for live monitoring | ||
- External Storage | ||
|
||
|
||
## Screenshots | ||
<div style="display: block; margin: auto; margin-left: auto; margin-right: auto;" > | ||
<img src="screenshots/sidemenu.jpg" alt="drawing" width="200"/> | ||
<img src="screenshots/dashboard.jpg" alt="drawing" width="200"/> | ||
<img src="screenshots/AppsMenu.jpg" alt="drawing" width="225"/> | ||
<img src="screenshots/AppPermissions.jpg" alt="drawing" width="215"/> | ||
<img src="screenshots/dashboard.png" alt="drawing" width="200"/> | ||
<img src="screenshots/MalwareScan.jpg" alt="drawing" width="200"/> | ||
<img src="screenshots/noThreatFound.jpg" alt="drawing" width="215"/> | ||
<img src="screenshots/PossibleMalwareFound.jpg" alt="drawing" width="200"/> | ||
<img src="screenshots/settings.jpg" alt="drawing" width="200"/> | ||
<img src="screenshots/MalwareScan.png" alt="drawing" width="200"/> | ||
<img src="screenshots/app_preferences.png" alt="drawing" width="200"/> | ||
<img src="screenshots/ThreatApp.png" alt="drawing" width="200"/> | ||
<img src="screenshots/settings.png" alt="drawing" width="200"/> | ||
<img src="screenshots/ActionSettings.jpg" alt="drawing" width="200"/> | ||
<img src="screenshots/preferences.png" alt="drawing" width="200"/> | ||
</div> | ||
|
||
|
||
## Disclaimer | ||
ICTrust is not affiliated with ClamAV. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
app/src/main/java/ch/ictrust/pobya/Utillies/AppAdminReceiver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.