You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This isn't a bug but a security issue. As long as I know the IP of the device, I can do everything like, wipe out the date, pull the data, restart the device, etc. Or is there any way to setup a password in the device? I am using SpeedFace-H5L.
In this below code, I can read without the password.
attendance = conn.get_attendance()
if attendance:
for record in attendance:
print(f"User: {record.user_id}, Timestamp: {record.timestamp}, Status: {record.status}")
else:
print("No attendance records found.")
conn.enable_device()
except Exception as e:
print(f"Error: {e}")
finally:
if conn:
conn.disconnect()
The text was updated successfully, but these errors were encountered:
This isn't a bug but a security issue. As long as I know the IP of the device, I can do everything like, wipe out the date, pull the data, restart the device, etc. Or is there any way to setup a password in the device? I am using SpeedFace-H5L.
In this below code, I can read without the password.
from zk import ZK
zk = ZK('192.168.1.2', port=4370, verbose=True)
conn = None
try:
conn = zk.connect()
conn.disable_device()
except Exception as e:
print(f"Error: {e}")
finally:
if conn:
conn.disconnect()
The text was updated successfully, but these errors were encountered: