获取终端输出的颜色/返回文本的颜色

时间:2019-06-03 17:02:02

标签: python sockets colors terminal pwntools

我目前正在尝试自动化一个简单的颜色读取测试。我使用nc连接到该服务,它为我提供了某种颜色的文本,然后提示用户在上方命名彩色文本。

这看起来像这样: 数控 这是您的颜色:颜色! (例如绿色)

>绿色

好!

这里是您的颜色:颜色! (例如蓝色)

>红色

错误!不好!<​​/ p>

退出...

我当前的代码看起来像这样,但是我不知道如何实现它。


    #!/usr/bin/python
    import sys
    import socket
    from pwn import *

    hostname='ip'
    port=777

    r = remote(hostname, port)

    def recv(string):
            print r.recv()
            print r.recvuntil(string)

    def send(string):
            print r.send(string)

    #Loop through orders and check for order
    while True:

            recv("Here is your color:")
            color=r.recvuntil("color!") #Receive color
            print "Color is:" + command
            recv(">") #Receive until input prompt

            if color=green: #Check which color
                    send("green")
            else:
                    send("else")

该解决方案应使其无休止地运行,而无需用户提示任何内容。

1 个答案:

答案 0 :(得分:0)

现在已解决。 我通过打印接收到的字符串的原始版本找到了颜色。

repr(color)

对于绿色文字,结果为:

  

\ x1b [92mGreen

然后我只需检查颜色标识符(\ x1b [92m)是否在字符串中。