-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpySeFi_Server.py
93 lines (79 loc) · 1.97 KB
/
pySeFi_Server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# =============================
# Author --> devMen
# Date created --> 01/04/2021
# Last modified --> 05/04/2021
# Version --> Python 3.8.5
# =============================
"""
|Python File Sender|
programa simple para enviar archivos
"""
# =============================
# Imports
import socket
import sys
import argparse
# =============================
'''
this work in linux
from subprocess import check_output
ips = check_output(['hostname', '--all-ip-addresses'])
print(ips.decode())
'''
def banner():
return """
___ ___ ___ _
| _ \_ _/ __| ___| __(_)
| _/ || \__ \/ -_) _|| |
|_| \_, |___/\___|_| |_|
|__/
===> by ☆ developmentMen☆
"""
def conectar(s):
con, addr = s.accept()
print(addr, "se conecto")
return con
def recibir(con):
datos = con.recv(1024)
filename = datos.decode()
file = open(filename, 'wb')
while True:
fileData = con.recv(512)
if not fileData:
break
file.write(fileData)
file.close()
print('archivo recibido -> {}'.format(filename))
def cerrar(con, s):
con.close()
s.close()
def main():
s = socket.socket()
s.bind((args.ipAddress, args.port))
s.listen(3)
print("servidor esperando --> {}".format(args.ipAddress))
con = conectar(s)
recibir(con)
cerrar(con, s)
if __name__=='__main__':
argument = argparse.ArgumentParser(
description="PySefi server to recive a file")
g = argument.add_mutually_exclusive_group()
g.add_argument('-nb', '--noBanner', action='store_true',
help="no print banner")
argument.add_argument(
'-i', '--ipAddress', type=str, required=True,
metavar="", help="ip to up a server")
argument.add_argument(
'-p', '--port', type=int, metavar='',default=6333,
help="Port 1024 to 65535 -> default=6333")
args = argument.parse_args()
if not args.noBanner: print(banner())
try:
main()
except Exception as e:
print('=======ERROR======ERROR=======ERROR=======')
print(e)
print('=======ERROR======ERROR=======ERROR=======')