Skip to content

Instantly share code, notes, and snippets.

View tsiemens's full-sized avatar

Trevor Siemens tsiemens

View GitHub Profile
@rrudolph
rrudolph / Decode COVID smart health card data string.py
Last active September 8, 2021 18:27
For decoding the base64-encoded smart health card string from the COVID vaccine digital record qr code.
'''
Want to know exactly what is in your covid vaccine QR code issued to you?
Decode it with a QR code reader and paste it into the qr_data variable and run.
Credit to this post for the detailed explaination.
source: https://marcan2020.medium.com/reversing-smart-health-cards-e765157fae9
'''
import re
import base64
import zlib