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
+14
View File
@@ -0,0 +1,14 @@
import os
import json
modules=[]
with open("requirements.json", 'r') as f:
modules = json.load(f)
for module in modules:
os.system(f'pip3 install {module}')
os.system('python3 -m pipx install impacket')