BottomReturnCatalogExpand Images
Anonymous
what is the site supposed to even be?
Anonymous
Probably no standard base64. If you inspect the html code of that site you can see a similar looking code. If you complete the captcha, you find the exact same code displayed on the text. If you refresh the page, this code gets changed every time
AnonymousMEDIUM 58
>>68420 (OP)
jarvis said
`

from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PrivateKeyfrom cryptography.hazmat.primitives import serializationimport base64, hashlibfrom base64 import b32encode
B64 = "jU8keMvYcd0GYkQ17zfNrTgpZe3dKS1xWM/qG/HbBDfg/jQZd9dkHcEIX6S7Whb/wnwfhWaXV6EOktuWsxCVJw=="data = base64.b64decode(B64)
if len(data) not in (32, 64): raise SystemExit("decoded length is not 32 or 64 bytes")
seed = data[:32] # take first 32 bytes as seed/private key
# construct Ed25519 private key from seed and get public keysk = Ed25519PrivateKey.from_private_bytes(seed)pk = sk.public_key().public_bytes( encoding=serialization.Encoding.Raw, format=serialization.PublicFormat.Raw) # 32 bytes
# onion v3 address: base32(pubkey || checksum || version)version = b"\x03"chk = hashlib.sha3_256(b".onion checksum" + pk + version).digest()[:2]addr = b32encode(pk + chk + version).decode('ascii').lower().strip("=") + ".onion"print(addr)

If the blob is an Ed25519 seed/private key for a v3 service, this prints the 56-char base32 .onion address.
`
but the site is offline

ReturnCatalogTopLast 100