python socket服务器命令问题

时间:2017-12-15 19:24:00

标签: python sockets

嘿所以我正在创建一个使用putty或netcat连接到的python服务器,但我的问题是当我连接时我在#help中键入了一个命令,如果你不这样做,它就不会做任何事情。 ;了解问题,只是分享代码

while True:
    conn.send("Command: ")
    cmd = conn.recv(1024)
    if not cmd:
        break
    reply = "" + cmd
    conn.send("\r")
    if cmd.lower() == "#help":
        conn.sendall("[+] Server Commands\r\n")
        conn.sendall("[+] #help - Displays a Help Menu Like This\r\n")

那么为什么这个命令不会通过并回显出帮助选项中的内容

0 个答案:

没有答案