美文网首页
查找特定的字符串

查找特定的字符串

作者: KKK_air | 来源:发表于2018-01-15 14:33 被阅读7次

    查找项目中使用的.php 接口名

    屏幕快照 2018-01-15 下午2.32.06.png
    def action():
        apiurls = []
        for p in paths:
            if not os.path.isfile(p):
                print p
                break
            f = open(p,'r').read()
            res = re.findall('@\"(.*).php\"',f)
            # print res
            if res is not None and len(res) > 0:
                apiurls.extend(res)
        apidict = {}
        for api in apiurls:
            api = api.replace('%@','')
            api += '.php'
            apidict[api] = api
    
        return apidict
    
    
    keys = action().keys()
    print len(keys)
    

    相关文章

      网友评论

          本文标题:查找特定的字符串

          本文链接:https://www.haomeiwen.com/subject/ynzroxtx.html