(conn)
| 6 | response_ok_data="0700000200000002000000" |
| 7 | |
| 8 | def receive_data(conn): |
| 9 | data = conn.recv(1024) |
| 10 | print("[*] Receiveing the package : {}".format(data)) |
| 11 | return str(data).lower() |
| 12 | |
| 13 | def send_data(conn,data): |
| 14 | print("[*] Sending the package : {}".format(data)) |