I am creating a basic "whois" script, but it is not working. When I try to run it in the Linux terminal, it returns the error:
"TypeError: a bytes-like object is required, not 'str'" indicated inthe line of code:
s.send(sys.argv[1]+"\r"+"\n")
.
consulta.py
#!/usr/share/pythonimport socketimport sysimport pyfigletascii_banner = pyfiglet.figlet_format("WHOIS - Gustang")print (ascii_banner)reg = "whois.godaddy.com"if len(sys.argv) == 2: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect((reg, 43)) s.send(sys.argv[1]+"\r"+"\n") resp = s.recv(1024) print (resp)else: print ("Modo de Uso: IPv4 + Porta") print ("Exemplo: 255.255.255.255 21")