Skip to content

Commit 9e0b1e8

Browse files
authored
Merge pull request #1 from talsec/feat/malware
.freeMalwareDetection 1.0.0
2 parents a86da48 + 26d15b9 commit 9e0b1e8

Some content is hidden

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

48 files changed

+1343
-1
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: talsec-app
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
If applicable, steps to reproduce the behavior.
15+
16+
**Expected behavior**
17+
A clear and concise description of what you expected to happen.
18+
19+
**Screenshots**
20+
If applicable, add screenshots to help explain your problem.
21+
22+
**Please complete the following information:**
23+
- Device: [e.g. Samsung Galaxy A50]
24+
- OS version: [e.g. Android 12]
25+
- Version of freeRASP: [e.g. 6.0.0]
26+
27+
**Additional context**
28+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: talsec-app
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/pull_request_template.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# .freeMalwareDetection
2+
<!-- Subtitle or additional text (optional) -->
3+
4+
<!-- Check all tasks. Can be done after submission. -->
5+
## Pre-release checklist
6+
- [ ] 🔎 Malware detection works
7+
- [ ] 📝 Whitelisting works
8+
- [ ] 📝 Logging works
9+
- [ ] 📋 Changelog updated
10+
- [ ] ➡️ `pubspec.yaml` version updated
11+
12+
<!-- Check all tasks. Can be done after submission. -->
13+
## Post-release checklist
14+
- [ ] 📝 GitHub release
15+
16+
## Type of Changes
17+
18+
- [ ] ✨ New feature (non-breaking change which adds functionality)
19+
- [ ] 🛠️ Bug fix (non-breaking change which fixes an issue)
20+
- [ ] ❌ Breaking change (fix or feature that would cause existing functionality to change)
21+
- [ ] 🧹 Code refactor
22+
- [ ] ✅ Build configuration change
23+
- [ ] 📝 Documentation
24+
- [ ] 🗑️ Chore
25+
26+
## Description
27+
28+
<!--
29+
Add description of this release
30+
- what are the improvements?
31+
- what is fixed?
32+
33+
Don't forget to link issues which are resolved. Use keywords for automatically closing issues.
34+
More about it here: https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue
35+
36+
-->

.github/workflows/flutter-ci.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Flutter CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths-ignore:
8+
- '**/*.md'
9+
- '.github/**'
10+
pull_request:
11+
branches:
12+
- main
13+
paths-ignore:
14+
- '**/*.md'
15+
- '.github/**'
16+
17+
workflow_dispatch:
18+
19+
env:
20+
FLUTTER_VERSION: 3.24.0
21+
22+
jobs:
23+
lint:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: 📚 Git Checkout
27+
uses: actions/checkout@v4
28+
29+
- name: 🐦 Setup Flutter
30+
uses: subosito/flutter-action@v2.16.0
31+
with:
32+
channel: stable
33+
flutter-version: ${{ env.FLUTTER_VERSION }}
34+
cache: true
35+
36+
- name: ✂ Format Code
37+
run: dart format --set-exit-if-changed .
38+
39+
- name: 📊 Analyze Code
40+
run: flutter analyze --fatal-infos --fatal-warnings .
41+
42+
build-android:
43+
runs-on: ubuntu-latest
44+
45+
steps:
46+
- name: 📚 Git Checkout
47+
uses: actions/checkout@v4
48+
49+
- name: 🐦 Setup Flutter
50+
uses: subosito/flutter-action@v2.16.0
51+
with:
52+
channel: stable
53+
flutter-version: ${{ env.FLUTTER_VERSION }}
54+
cache: true
55+
56+
- name: 🤖 Build Android app
57+
run: flutter build apk --release
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Issue watcher
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
# Date follows the cron syntax: https://en.wikipedia.org/wiki/Cron
6+
# Every Monday at 6:30 AM
7+
- cron: '30 6 * * 1'
8+
9+
jobs:
10+
check_issues:
11+
uses: talsec/github-workflows/.github/workflows/issue_watcher.yml@master

.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
migrate_working_dir/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# The .vscode folder contains launch configuration and tasks you configure in
20+
# VS Code which you may wish to be included in version control, so this line
21+
# is commented out by default.
22+
#.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
**/doc/api/
26+
**/ios/Flutter/.last_build_id
27+
.dart_tool/
28+
.flutter-plugins
29+
.flutter-plugins-dependencies
30+
.pub-cache/
31+
.pub/
32+
/build/
33+
34+
# Symbolication related
35+
app.*.symbols
36+
37+
# Obfuscation related
38+
app.*.map.json
39+
40+
# Android Studio will place build artifacts here
41+
/android/app/debug
42+
/android/app/profile
43+
/android/app/release

.metadata

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: "a14f74ff3a1cbd521163c5f03d68113d50af93d3"
8+
channel: "stable"
9+
10+
project_type: app
11+
12+
# Tracks metadata for the flutter migrate command
13+
migration:
14+
platforms:
15+
- platform: root
16+
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
17+
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
18+
- platform: android
19+
create_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
20+
base_revision: a14f74ff3a1cbd521163c5f03d68113d50af93d3
21+
22+
# User provided section
23+
24+
# List of Local paths (relative to this file) that should be
25+
# ignored by the migrate tool.
26+
#
27+
# Files that are not part of the templates will be ignored by default.
28+
unmanaged_files:
29+
- 'lib/main.dart'
30+
- 'ios/Runner.xcodeproj/project.pbxproj'

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [1.0.0] - 2024-11-08
9+
- Initial release

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Talsec
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,46 @@
1-
Hello
1+
![freeMalwareDetection](https://raw.githubusercontent.com/talsec/freeMalwareDetection/main/visuals/freeMalwareDetection.png)
2+
3+
# freeMalwareDetection for Flutter
4+
5+
Enhance the security of your Android application with Free Malware Detection, a powerful feature designed to scan for malicious or suspicious apps. Leveraging various blacklists and security policies, this tool ensures your application remains protected from known threats, providing a secure environment for your users.
6+
7+
## Overview
8+
9+
freeMalwareDetection is an easy-to-integrate SDK that operates asynchronously to safeguard your application without compromising performance. It runs scans in the background, ensuring that your app's performance remains unaffected while delivering comprehensive security checks. This SDK is freely available and designed for seamless integration with the freeRASP SDK, delivering a comprehensive security solution.
10+
11+
## Key Advantages
12+
13+
- **Asynchronous Scanning**: Perform malware scans in the background without impacting app performance.
14+
- **Threat Analysis**: Receive information about detected threats to better inform and protect your users.
15+
- **Simple Integration**: Easy-to-follow integration process with extensive documentation and support.
16+
- **Versatile Blacklisting**: Supports hash-based, package name-based, and permission-based blacklists for comprehensive threat detection.
17+
- **Seamless Operation**: Integrates smoothly with freeRASP SDK to provide an all-in-one security solution.
18+
19+
## 🎯 Features
20+
21+
Free Malware Detection provides protection against potentially dangerous applications and behaviors, including:
22+
23+
✔️ Detection of apps with suspicious package names or hashes.
24+
25+
✔️ Blocking of apps with disallowed permissions.
26+
27+
✔️ Whitelisting of trusted installation sources to prevent unauthorized app installations.
28+
29+
Visit our wiki to learn more about the specific checks performed and their impact on app security.
30+
31+
## 📖 Discover Official Documentation
32+
33+
Explore our [GitBook page](https://docs.talsec.app/freemalwaredetection) for detailed guides, tutorials, and technical documentation.
34+
35+
## 🔗 Integration Guide
36+
37+
To integrate Free Malware Detection, follow our step-by-step [Integration Guide](https://docs.talsec.app/freemalwaredetection/integration-guide/requirements). This guide provides all the details you need for a smooth setup process on any platform.
38+
39+
## ✨ Enhancements
40+
41+
If you have any suggestions for improvement or notice anything that could be clarified in the new documentation, please open an issue. Your feedback helps us maintain high-quality resources for all users.
42+
43+
You can check out the [project board](https://github.com/orgs/talsec/projects/3) here.
44+
45+
## :page_facing_up: License
46+
This project is provided as freemium software, i.e. there is a fair usage policy that imposes some limitations on the free usage. The SDK software consists of open-source and binary parts, which is the property of Talsec. The open-source part is licensed under the MIT License - see the LICENSE file for details.

0 commit comments

Comments
 (0)