This commit is contained in:
Crispy 2025-07-03 01:23:46 +02:00
parent 491112768c
commit 68ec37f994
66 changed files with 6591 additions and 10096 deletions

13
computer/18/steal.lua Normal file
View file

@ -0,0 +1,13 @@
print("enter id")
id = read()
print("enter path")
path = read()
full_url = "http://crispypin.cc:25566/computer/"..id.."/"..path
print(full_url)
h, err=http.get(full_url)
print(err)
file = fs.open(path, "w")
file.write(h.readAll())
file.close()