Skip to content

Commit 1b89ceb

Browse files
authored
Supporting Files
1 parent 0d24ffe commit 1b89ceb

File tree

4 files changed

+32
-14
lines changed

4 files changed

+32
-14
lines changed

Developer Setup Guide.docx

31.6 KB
Binary file not shown.

Installation Guide.docx

583 KB
Binary file not shown.

injection_system_poc.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
FOLDER_PATH="/Applications/AegisCore/Tweaks"
4+
5+
while true; do
6+
if [ -n "$(find "$FOLDER_PATH" -name '*.sh' -print -quit)" ]; then
7+
sh_file=$(find "$FOLDER_PATH" -name '*.sh' -print -quit)
8+
echo "Found .sh file: $sh_file"
9+
chmod +x "$sh_file"
10+
"$sh_file"
11+
break
12+
fi
13+
sleep 10
14+
done

repo.json

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
[
2-
{
3-
"name": "App 1",
4-
"image": "https://example.com/app1_icon.png"
5-
},
6-
{
7-
"name": "App 2",
8-
"image": "https://example.com/app2_icon.png"
9-
},
10-
{
11-
"name": "App 3",
12-
"image": "https://example.com/app3_icon.png"
13-
}
14-
]
1+
[
2+
{
3+
"name": "Example Package 1",
4+
"image": "https://example.com/repo/icon1.png",
5+
"url": "https://example.com/repo/package_file2",
6+
"description": "An example of a software package distributed through Aegis.",
7+
"version": "0.1",
8+
"md5": "03b36gh37f91h2fh37f7578hfi465d5"
9+
},
10+
{
11+
"name": "Example Package 2",
12+
"image": "https://example.com/repo/icon2.png",
13+
"url": "https://example.com/repo/package_file2",
14+
"description": "An example of a software package distributed through Aegis.",
15+
"version": "0.2",
16+
"md5": "fh37f7578hfi465d503b36gh37f91h2"
17+
}
18+
]

0 commit comments

Comments
 (0)