这两行在此代码中是什么意思?

时间:2019-03-31 15:28:45

标签: python python-3.x python-2.7 penetration-testing

[:http_payload.index("\r\n\r\n")+2]中的“:”和“ +2”是什么意思? 在.split("/")[1]中“(“ /”)“和” [1]“是什么意思?

def get_http_headers(http_payload):
    try:
        # split the headers off if it is HTTP traffic
        headers_raw = http_payload[:http_payload.index("\r\n\r\n")+2]

        # break out the headers
        headers = dict(re.findall(r"(?P<name>.*?): (? P<value>.*?)\r\n", headers_raw))

    except:
        return None

    return headers

def extract_image(headers, http_payload):
    image = None
    image_type = None

    try:
        if "image" in headers["Content-Type"]:
            # grab the image type and image body
            image_type = headers["Content-Type"].split("/")[1]

            image = http_payload[http_payload.index("\r\n\r\n")+4:]



            except:
                pass
    except:
        return None, None

    return image, image_type

1 个答案:

答案 0 :(得分:1)

http_payload[:http_payload.index("\r\n\r\n")+2] slices字符串http_payload,以便只有字符串的开头直到“ \ r \ n \ r \ n”的第一个出现和第一个“ \ r” \ n“仍然存在。字符串的.index()方法将返回字符串中模式首次出现的索引。

示例:

test = "abcdefg"
# slicing:
print(test[1:3])  # will output 'bc'

# index:
print(test.index('bc'))  # will output 1 (index of start of substring 'bc')

# either start or end (or both) of the slice can be left out, so the following is equivalent:
print(test[:2] == test[0:2])  # will output True

.split("/")[1]将以“ /”字符分隔字符串,并返回一个列表,可从中访问索引为1的项目。 例如,请参见以下代码:

test = "/this/is/a/path"
print(test.split("/"))  # will output ["this", "is", "a", "path"]
print(test.split("/")[0])  # will output "is" since element of index 1 of the resulting list is accessed.
相关问题