mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-26 03:16:36 +08:00
Update servefiles.py
making parameter count verification strict adding file extension verification when a file is given as parameter adding output error to stderr adding hostPort choice (for the HTTP server) rename 'directory' into 'target_path' rename 'payload' into 'file_list_payload' adding comments some small cleanups (indent, print(), ...)
This commit is contained in:
parent
a71759d2df
commit
07f69db677
@ -1,4 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
# coding: utf-8 -*-
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import socket
|
import socket
|
||||||
import struct
|
import struct
|
||||||
@ -18,69 +20,68 @@ except ImportError:
|
|||||||
from urllib.parse import urljoin, quote
|
from urllib.parse import urljoin, quote
|
||||||
from urllib.request import pathname2url
|
from urllib.request import pathname2url
|
||||||
|
|
||||||
if len(sys.argv) < 3:
|
if len(sys.argv) < 3 or len(sys.argv) > 5:
|
||||||
print("Usage: " + sys.argv[0] + " <ip> <file/directory> [host ip]")
|
print('Usage:', sys.argv[0], '<target ip> <file / directory> [host ip] [host port]')
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
ip = sys.argv[1]
|
accepted_extension = ('.cia', '.tik')
|
||||||
directory = sys.argv[2]
|
target_ip = sys.argv[1]
|
||||||
|
target_path = sys.argv[2]
|
||||||
|
hostPort = 8080 # default value
|
||||||
|
|
||||||
if not os.path.exists(directory):
|
if not os.path.exists(target_path):
|
||||||
print(directory + ": No such file or directory.")
|
print(target_path, ': No such file or directory.', file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
if len(sys.argv) >= 4:
|
if len(sys.argv) >= 4:
|
||||||
hostIp = sys.argv[3]
|
hostIp = sys.argv[3]
|
||||||
|
if len(sys.argv) == 5:
|
||||||
|
hostPort = int(sys.argv[4])
|
||||||
else:
|
else:
|
||||||
|
print('Finding host ip ...') # loop over network address to find one
|
||||||
hostIp = [(s.connect(('8.8.8.8', 53)), s.getsockname()[0], s.close()) for s in [socket.socket(socket.AF_INET, socket.SOCK_DGRAM)]][0][1]
|
hostIp = [(s.connect(('8.8.8.8', 53)), s.getsockname()[0], s.close()) for s in [socket.socket(socket.AF_INET, socket.SOCK_DGRAM)]][0][1]
|
||||||
|
|
||||||
print("Preparing data...")
|
print('Preparing data ...')
|
||||||
|
baseUrl = hostIp + ':' + str(hostPort) + '/'
|
||||||
|
|
||||||
baseUrl = hostIp + ":8080/"
|
if os.path.isfile(target_path) and target_path.endswith(accepted_extension):
|
||||||
payload = ""
|
file_list_payload = baseUrl + quote(os.path.basename(target_path))
|
||||||
|
directory = os.path.dirname(target_path) # get file directory
|
||||||
if os.path.isfile(directory):
|
|
||||||
payload += baseUrl + quote(os.path.basename(directory))
|
|
||||||
directory = os.path.dirname(directory)
|
|
||||||
else:
|
else:
|
||||||
for file in [ file for file in next(os.walk(directory))[2] if file.endswith(('.cia', '.tik')) ]:
|
directory = target_path # it's a directory
|
||||||
payload += baseUrl + quote(file) + "\n"
|
file_list_payload = '' # init the payload before adding lines
|
||||||
|
for file in [file for file in next(os.walk(target_path))[2] if file.endswith(accepted_extension)]:
|
||||||
|
file_list_payload += baseUrl + quote(file) + '\n'
|
||||||
|
|
||||||
if len(payload) == 0:
|
if len(file_list_payload) == 0:
|
||||||
print("No files to serve.")
|
print('No files to serve.', file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
payloadBytes = payload.encode("ascii")
|
file_list_payloadBytes = file_list_payload.encode('ascii')
|
||||||
|
|
||||||
if not directory == "":
|
if directory and directory != '.': # doesn't need to move if it's already the current working directory
|
||||||
os.chdir(directory)
|
os.chdir(directory) # set working directory to the right folder to be able to serve files
|
||||||
|
|
||||||
print("")
|
print('\nURLS (payload send) :')
|
||||||
print("URLS:")
|
print(file_list_payload, '\n')
|
||||||
print(payload)
|
|
||||||
print("")
|
|
||||||
|
|
||||||
print("Opening HTTP server on port 8080...")
|
print('Opening HTTP server on port :', hostPort)
|
||||||
|
server = TCPServer(('', hostPort), SimpleHTTPRequestHandler)
|
||||||
server = TCPServer(("", 8080), SimpleHTTPRequestHandler)
|
|
||||||
thread = threading.Thread(target=server.serve_forever)
|
thread = threading.Thread(target=server.serve_forever)
|
||||||
thread.start()
|
thread.start()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
print("Sending URL(s) to " + ip + ":5000...")
|
print('Sending URL(s) to', target_ip, 'on port 5000 ...')
|
||||||
|
|
||||||
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
sock.connect((ip, 5000))
|
sock.connect((target_ip, 5000))
|
||||||
sock.sendall(struct.pack('!L', len(payloadBytes)) + payloadBytes)
|
sock.sendall(struct.pack('!L', len(file_list_payloadBytes)) + file_list_payloadBytes)
|
||||||
while len(sock.recv(1)) < 1:
|
while len(sock.recv(1)) < 1:
|
||||||
time.sleep(0.05)
|
time.sleep(0.05)
|
||||||
|
|
||||||
sock.close()
|
sock.close()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("Error: " + str(e))
|
print('An Error occurred :', str(e), file=sys.stderr)
|
||||||
server.shutdown()
|
server.shutdown()
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
print("Shutting down HTTP server...")
|
print('Shutting down HTTP server ...')
|
||||||
|
|
||||||
server.shutdown()
|
server.shutdown()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user