可我浪费着我寒冷的年华

webscan v0.01

ps:本人不是写代码的料。写出来的贼垃圾。大牛看了如果有可以优化的提出来哈。

#by def
import urllib
res = {}
website = raw_input()
if "https://" or "http://" not in website:
    website = "http://" + website
with open('php.dict') as f:
    for char in f.readlines():
        web = website+char
        if urllib.urlopen(web).code == 200:print web

 

posted @ 2017-09-24 20:19  珍惜少年时  阅读(150)  评论(0)    收藏  举报
可我浪费着我寒冷的年华