blob: f8f42cd941993c6232e1b0a6869d13b73f81a729 [file] [log] [blame]
#!/usr/bin/env python3
import os
import sys
sys.stdout.write(
'Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document\r\n'
'Content-Security-Policy: frame-ancestors \'none\'\r\n\r\n'
)
sys.stdout.flush()
with open(os.path.join(os.path.dirname(__file__), 'pass.docx'), 'rb') as file:
sys.stdout.buffer.write(file.read())