您好,登錄后才能下訂單哦!
至于寬字節(jié)注入,有人寫過,我就不多寫了:
https://www.91ri.org/8611.html
http://netsecurity.51cto.com/art/201404/435379_4.htm
針對iconv()函數,我就試著寫了個utf-8和gbk的url編碼轉換
import os,urllib print"""if u want change gbk to utf-8,please input gbk,so as input utf-8. input exit and exit,others make u try agin""" st = raw_input() def utf8cwgbk(st): if st=="utf-8": print "input string" url1 = raw_input() st1 = urllib.unquote(url1) st2 = st1.decode("utf-8").encode("gbk") url2 = urllib.quote(st2) print """utf-8的url編碼---gbk的url編碼---utf-8的漢字---gbk的漢字""" print url1,'---',url2,'---',st1,'---',st2 os.system('pause') if st=="gbk": print "input string" url1 = raw_input() st1 = urllib.unquote(url1) st2 = st1.decode("gbk").encode("utf-8") url2 = urllib.quote(st2) print """utf-8的url編碼---gbk的url編碼---utf-8的漢字---gbk的漢字""" print url1,'---',url2,'---',st2,'---',st1 os.system('pause') if st=="exit": os.system('exit') else: print"""please try again.if u want change gbk to utf-8,please input gbk,else input utf8,finally input exit""" st = raw_input() utf8cwgbk(st) if __name__=="__main__": utf8cwgbk(st)
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。