From 15f490b82dca8a09ea88c2bd29e027ce98ef4c02 Mon Sep 17 00:00:00 2001 From: Games_Crack <46073213+Games-Crack@users.noreply.github.com> Date: Sat, 5 Aug 2023 18:19:52 +0200 Subject: [PATCH] Added Professionalism to pve-fake-subscription --- usr/bin/pve-fake-subscription | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr/bin/pve-fake-subscription b/usr/bin/pve-fake-subscription index 8deeaa3..3e9913f 100755 --- a/usr/bin/pve-fake-subscription +++ b/usr/bin/pve-fake-subscription @@ -41,7 +41,7 @@ def generate_subscription_pve_pmg(key: str, server_ids: List[str]) -> str: "status": "Active", "key": key, "validdirectory": ",".join(server_ids), - "productname": "YajuuSenpai", + "productname": "Fake Subscription", "regdate": dt_string("%Y-%m-%d %H:%M:%S"), "nextduedate": dt_string("%Y-%m-%d", 1296000), } @@ -80,11 +80,11 @@ def generate_subscription_pbs(key: str, server_ids: List[str]) -> str: "serverid": ",".join(server_ids), "checktime": get_timestamp(), "key": key, - "message": "Yajuu Senpai has got your back", - "productname": "YajuuSenpai", + "message": "Fake Subscription", + "productname": "Fake Subscription", "regdate": dt_string("%Y-%m-%d %H:%M:%S"), "nextduedate": dt_string("%Y-%m-%d", 1296000), # 1296000: MAX_LOCAL_KEY_AGE in src/tools/subscription.rs - "url": "https://github.com/Jamesits/pve-fake-subscription", + "url": "", } data = base64.standard_b64encode(json.dumps(localinfo).encode()).decode()