working on syscall manifest and fixed anther exploit

This commit is contained in:
2026-03-02 22:25:37 -05:00
parent eb5bed0f09
commit b7f52dd17b
3 changed files with 105 additions and 3 deletions

View File

@@ -4,6 +4,7 @@ path=path or "/dev/tty/1"
local syscalls=syscall.sysdump()
local fd=syscall.open(path,"w")
for i=1, #syscalls do
syscall.write(fd,syscalls[i].."\n)
syscall.write(fd,syscalls[i].."\n")
end
syscall.write(fd,"Total # of syscalls: "..tostring(#syscalls))
syscall.write(fd,"Total # of syscalls: "..tostring(#syscalls))
syscall.close(fd)