温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

addslashes的一些问题

发布时间:2020-07-09 07:39:18 来源:网络 阅读:401 作者:招魂怪 栏目:安全技术

至于宽字节注入,有人写过,我就不多写了:

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)


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI