Blue Note

Store Your Notes.

Please report any suspicious URL to the admin.

Only URLs starting with http://bnote-web:5005/ are allowed.


#!/usr/bin/env python3

import random
import hashlib

while True:
    s = 'e0a481' + ''.join(random.choices('abcdefghijklmnopqrstuvwxyz', k=16))
    h = hashlib.sha256(s.encode()).hexdigest()
    if h.startswith('0be6de'):
        print(s)
        break

There are currently 0 URLs to process in the queue.