シェルショックの悪用可能なリクエストで常に 500 レスポンスをチェックするのはなぜですか? なぜ 200、301 などではないのですか?
conn.request("GET", path, headers=headers)
res = conn.getresponse()
if res.status == 500:
print "Shell Shock Exploitable"
シェルショックの悪用可能なリクエストで常に 500 レスポンスをチェックするのはなぜですか? なぜ 200、301 などではないのですか?
conn.request("GET", path, headers=headers)
res = conn.getresponse()
if res.status == 500:
print "Shell Shock Exploitable"