mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
Add sendurls.py
This commit is contained in:
parent
e72c6c1cea
commit
c57359f9f4
44
servefiles/sendurls.py
Normal file
44
servefiles/sendurls.py
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# coding: utf-8 -*-
|
||||||
|
|
||||||
|
import socket
|
||||||
|
import struct
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
|
||||||
|
try:
|
||||||
|
from urlparse import urlparse
|
||||||
|
except ImportError:
|
||||||
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
|
if len(sys.argv) < 3:
|
||||||
|
print('Usage: ' + sys.argv[0] + ' <target ip> <url>...')
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
target_ip = sys.argv[1]
|
||||||
|
file_list_payload = ''
|
||||||
|
|
||||||
|
for url in sys.argv[2:]:
|
||||||
|
parsed = urlparse(url);
|
||||||
|
if not parsed.scheme in ('http', 'https') or parsed.netloc == '':
|
||||||
|
print(url + ': Invalid URL')
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
file_list_payload += url + '\n'
|
||||||
|
|
||||||
|
file_list_payloadBytes = file_list_payload.encode('ascii')
|
||||||
|
|
||||||
|
print('URLs:')
|
||||||
|
print(file_list_payload)
|
||||||
|
|
||||||
|
try:
|
||||||
|
print('Sending URL(s) to '+ target_ip + ' on port 5000...')
|
||||||
|
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
|
sock.connect((target_ip, 5000))
|
||||||
|
sock.sendall(struct.pack('!L', len(file_list_payloadBytes)) + file_list_payloadBytes)
|
||||||
|
while len(sock.recv(1)) < 1:
|
||||||
|
time.sleep(0.05)
|
||||||
|
sock.close()
|
||||||
|
except Exception as e:
|
||||||
|
print('An error occurred: ' + str(e))
|
||||||
|
sys.exit(1)
|
Loading…
x
Reference in New Issue
Block a user