mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2025-07-01 18:37:27 -04:00
5 lines
90 B
Python
5 lines
90 B
Python
import os
|
|
|
|
def new_session_id():
|
|
return ':'.join(['%02x' % b for b in os.urandom(6)])
|