Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improved script #379

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 50 additions & 28 deletions Cyber_security projects/CLIENT.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,53 @@

import socket
import threading


def send_msg():
while True:

msg =input().encode()
s.send(msg)

def recv_msg():
while True:
recevied = s.recv(1024)
print(recevied.decode())


s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
print("connecting..")
while True:
try:
s.connect("127.0.0.1",8888)
break
except CoonectionRefusedError:
continue

print("connected....")

t1 = threading.Thread(target=send_msg)
t1.start()
recv_msg()
import time

def send_msg(sock):
while True:
try:
msg = input().encode('utf-8') # Specify encoding
sock.send(msg)
except KeyboardInterrupt:
print("Exiting gracefully")
sock.close()
break

def recv_msg(sock):
while True:
try:
received = sock.recv(1024)
print(received.decode('utf-8')) # Specify decoding
except ConnectionResetError:
print("Server has closed the connection.")
break

def connect_to_server(host, port, retries=5, delay=2):
"""Attempt to connect to the server with retries."""
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print("Connecting..")
for attempt in range(retries):
try:
s.connect((host, port))
print("Connected!")
return s
except socket.error as e:
print(f"Connection attempt {attempt+1}/{retries} failed: {e}")
time.sleep(delay)
print("Could not connect to the server.")
return None

host = "127.0.0.1"
port = 8888

s = connect_to_server(host, port)
if s:
t1 = threading.Thread(target=send_msg, args=(s,))
t1.start()

try:
recv_msg(s)
except KeyboardInterrupt:
print("Exiting...")
finally:
s.close()
Loading