Skip to content

Commit 874489c

Browse files
committed
add blacklist
1 parent bfd5cf3 commit 874489c

File tree

4 files changed

+114
-51
lines changed

4 files changed

+114
-51
lines changed

docs/.vitepress/config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { writeFile, readFile } from "fs/promises";
55
import { parse } from "yaml";
66
import { resolve } from "path";
77
import { repositoriesJSONstringify } from "../data/repositories";
8+
import { blacklistJSONstringify } from "../data/blacklist";
89

910
export default defineConfig({
1011
vite: {
@@ -31,8 +32,9 @@ export default defineConfig({
3132
buildEnd: async (config: SiteConfig) => {
3233
const publicApi = resolve(config.outDir, "api");
3334
const publicRepoList = resolve(publicApi, "repositories.json");
35+
const publicBlackList = resolve(publicApi, "blacklist.json");
3436

35-
console.log("Writing repositories.json");
3637
await writeFile(publicRepoList, repositoriesJSONstringify);
38+
await writeFile(publicRepoList, blacklistJSONstringify);
3739
},
3840
});

docs/data/blacklist.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { readFileSync } from "fs";
2+
import { join } from "path";
3+
import { parse } from "yaml";
4+
5+
export const fileName = join(__dirname, "blacklist.yaml");
6+
7+
export const blacklist: any = parse(readFileSync(fileName, "utf8"));
8+
export const blacklistJSONstringify: string = JSON.stringify(
9+
blacklist,
10+
null,
11+
4
12+
);

docs/data/blacklist.yaml

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
- id: ATWEAKER
2+
source: https://github.com/C0d3h01/AndroidTweaker
3+
hidden: false
4+
notes: ""
5+
antifeatures:
6+
- NoSourceSince
7+
8+
- id: STRP
9+
source: https://github.com/CRANKV2/CRV2
10+
hidden: false
11+
notes:
12+
Aggressive terminal logging - Sends device specs to external server - Includes
13+
APK without source - Includes obfuscated scripts
14+
antifeatures:
15+
- UnaskedRemoval
16+
- Tracking
17+
- NoSourceSince
18+
- Obfuscation
19+
20+
- id: STRPxZRAM
21+
source: https://github.com/CRANKV2/ZRAM
22+
hidden: false
23+
notes: ""
24+
antifeatures:
25+
- UnaskedRemoval
26+
- Tracking
27+
- NoSourceSince
28+
- Obfuscation
29+
30+
- id: STRPxSPOOFER
31+
source: https://github.com/CRANKV2/STRPxSPOOFER
32+
hidden: false
33+
notes: Sends device specs to external server
34+
antifeatures:
35+
- UnaskedRemoval
36+
- Tracking
37+
- Obfuscation
38+
39+
- id: movecerts
40+
source: https://www.androidacy.com/magisk-modules-repository#movecerts
41+
notes:
42+
Device specs are send with `apiClient.sh` to **Androidacy** servers. Remove
43+
`apiClient.sh` to avoid tracking.
44+
hidden: false
45+
antifeatures:
46+
- NonFreeNet
47+
- Tracking
48+
49+
- id: fontrevival
50+
source: https://www.androidacy.com/magisk-modules-repository#fontrevival
51+
notes: Uses `utm_source` and `utm_medium` parameters in openable URLs
52+
hidden: false
53+
antifeatures:
54+
- NonFreeNet
55+
- Tracking
56+
57+
- id: bromitewebview
58+
source: https://www.androidacy.com/magisk-modules-repository#bromitewebview
59+
notes:
60+
Device specs are send with `apiClient.sh` to **Androidacy** servers. Remove
61+
`apiClient.sh` to avoid tracking.
62+
hidden: false
63+
antifeatures:
64+
- NonFreeNet
65+
- Tracking
66+
67+
- id: encore
68+
source: https://encore.rem01gaming.dev/download/
69+
notes: ""
70+
hidden: false
71+
antifeatures:
72+
- NoSourceSince
73+
74+
- id: GD
75+
source: https://t.me/modulosdec/1075
76+
notes: ""
77+
hidden: false
78+
antifeatures:
79+
- Ads
80+
- Tracking
81+
- Obfuscation
82+
83+
- id: GSUnlocker
84+
source: https://t.me/modulosdec/1069
85+
notes: ""
86+
hidden: false
87+
antifeatures:
88+
- Ads
89+
- Tracking
90+
- Obfuscation
91+
92+
- id: android_enhancer
93+
source: https://github.com/iamlooper/Android-Enhancer-Module
94+
notes: |
95+
Maybe contains a residential proxy.
96+
hidden: false
97+
antifeatures:
98+
- Tracking
99+
- Obfuscation

docs/data/repositories.json

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)