Skip to content

Commit 8fa8cdd

Browse files
committed
UI Improvements
0 parents  commit 8fa8cdd

File tree

176 files changed

+12740
-0
lines changed

Some content is hidden

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

176 files changed

+12740
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.github/workflows/codeql.yaml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: CodeQL
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
paths:
9+
- 'src/**'
10+
11+
jobs:
12+
analyze:
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
java-version: [ "17" ]
17+
include:
18+
- language: java-kotlin
19+
build-mode: manual
20+
21+
runs-on: ubuntu-latest
22+
23+
permissions:
24+
security-events: write
25+
packages: read
26+
actions: read
27+
contents: read
28+
29+
steps:
30+
- name: Checkout Repository
31+
uses: actions/checkout@v4
32+
33+
- name: Set Up Java ${{ matrix.java-version }}
34+
uses: actions/setup-java@v5
35+
with:
36+
java-version: ${{ matrix.java-version }}
37+
distribution: "temurin"
38+
cache: "gradle"
39+
40+
- name: Initialize CodeQL
41+
uses: github/codeql-action/init@v3
42+
with:
43+
languages: ${{ matrix.language }}
44+
build-mode: ${{ matrix.build-mode }}
45+
46+
- if: ${{ matrix.build-mode == 'manual' }}
47+
name: Gradle Build
48+
working-directory: src/Malware
49+
run: ./gradlew assembleDebug --no-daemon --no-build-cache || exit 1
50+
51+
- name: Perform CodeQL Analysis
52+
uses: github/codeql-action/analyze@v3
53+
with:
54+
category: "/language:${{matrix.language}}"

.github/workflows/mobsf.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: MobSF
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
paths:
9+
- 'src/**'
10+
11+
jobs:
12+
analyze:
13+
strategy:
14+
matrix:
15+
python-version: [ "3.12" ]
16+
17+
runs-on: ubuntu-latest
18+
19+
permissions:
20+
security-events: write
21+
packages: read
22+
actions: read
23+
contents: read
24+
25+
steps:
26+
- name: Checkout Repository
27+
uses: actions/checkout@v4
28+
29+
- name: Set Up Python ${{ matrix.python-version }}
30+
uses: actions/setup-python@v5
31+
with:
32+
python-version: ${{ matrix.python-version }}
33+
34+
- name: Run MobSF
35+
uses: MobSF/mobsfscan@main
36+
with:
37+
args: . --sarif --output results.sarif || true
38+
39+
- name: Upload MobSF Report
40+
uses: github/codeql-action/upload-sarif@v3
41+
with:
42+
sarif_file: results.sarif

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Gradle files
2+
.gradle/
3+
build/
4+
release/
5+
6+
# Local configuration file (sdk path, etc)
7+
local.properties
8+
9+
# Log/OS Files
10+
*.log
11+
12+
# Android Studio generated files and folders
13+
captures/
14+
.externalNativeBuild/
15+
.cxx/
16+
*.apk
17+
output.json
18+
19+
# IntelliJ
20+
*.iml
21+
.idea/
22+
misc.xml
23+
deploymentTargetDropDown.xml
24+
render.experimental.xml
25+
26+
# Keystore files
27+
*.jks
28+
*.keystore
29+
keystore.properties
30+
31+
# Google Services (e.g. APIs or Firebase)
32+
google-services.json
33+
34+
# Android Profiling
35+
*.hprof
36+
37+
*.DS_Store

LICENSE

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) 2024 Ivan Šincek
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.

0 commit comments

Comments
 (0)