Add initial implementation of file server, mount, upload, and WebDAV scripts

This commit is contained in:
Mabe
2026-05-07 18:57:01 +02:00
commit ebaa5c86b0
6 changed files with 53 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import os
os.system('python3 -m pyftpdlib --port 21 --write')
os.system('impacket-smbserver share -smb2support /tmp/smbshare -user user -password Mabe') # Username: user Password: Mabe
os.system('python3 -m uploadserver')
os.system('wsgidav --host=0.0.0.0 --port=80 --root=/tmp --auth=anonymous')