From 144a6b07b3f8cde06e635b05b78b0e10e1ad0ec2 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 28 Jan 2026 16:35:55 +0000 Subject: [PATCH] avm_sid.py aktualisiert --- avm_sid.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/avm_sid.py b/avm_sid.py index 9b08f7b..75cc870 100644 --- a/avm_sid.py +++ b/avm_sid.py @@ -99,8 +99,8 @@ def send_response(box_url: str, username: str, challenge_response: str) ->str: def lights_on(): url = 'http://192.168.178.1' - username = 'magzsmart' - password = 'pipi123!' + username = 'hier_user_eintragen' + password = 'hier_pw_eintragen' sid = get_sid(url, username, password) print(f"Successful login for user: {username}") print(f"sid: {sid}") @@ -115,8 +115,8 @@ def lights_on(): def lights_off(): url = 'http://192.168.178.1' - username = 'magzsmart' - password = 'pipi123!' + username = 'hier_user_eintragen' + password = 'hier_pw_eintragen' sid = get_sid(url, username, password) print(f"Successful login for user: {username}") print(f"sid: {sid}") @@ -131,8 +131,8 @@ def lights_off(): def main(): url = 'http://192.168.178.1' - username = 'magzsmart' - password = 'pipi123!' + username = 'hier_user_eintragen' + password = 'hier_pw_eintragen' sid = get_sid(url, username, password) print(f"Successful login for user: {username}") print(f"sid: {sid}")