Files
snootgame.xyz/downloads.py
2023-01-03 01:40:29 -06:00

13 lines
277 B
Python
Executable File

#!/usr/bin/python
import cgi
import cgitb
cgitb.enable()
storage = open("downloads.txt", 'a+')
storage.write(str(1))
storage.close()
print("Content-Type: text/html\n\n")
with open("download.html", 'r+') as downloads:
for line in downloads.readlines():
print(line)