initial commit

This commit is contained in:
2025-03-11 05:17:34 +08:00
parent d1f60e7c82
commit 9238177ad6
27 changed files with 924 additions and 0 deletions

15
scripts/upload.py Normal file
View File

@@ -0,0 +1,15 @@
from pwn import *
kernel = open("kernel8.img", "rb").read()
r = serialtube("/dev/ttyS5", convert_newlines=False)
input("@")
r.send(str(len(kernel))+"\n")
#print(r.recv())
#r.interactive()
print(r.recvuntil(b") : "))
r.send(kernel)
r.interactive()