摘要: 看js脚本: ''' function d(input){ rv = window.atob(input); rv = escape(rv); rv = decodeURIComponent(rv); return rv; } document.title = d('d3d3LmFjODUueHl6 阅读全文
posted @ 2020-12-03 17:52 凹凸曼大人 阅读(631) 评论(0) 推荐(0)
摘要: from urllib import parset = ''t = parse.unquote(t) 最终结果 t =decodeURIComponent(t); 在浏览器console 里输入的结果相同。 阅读全文
posted @ 2020-12-03 17:48 凹凸曼大人 阅读(1159) 评论(0) 推荐(0)
摘要: import urllibtemp= '' st =temp.replace('%u', '\\u') #print(st) k =urllib.parse.unquote(st.encode().decode('unicode-escape')) #先解密 t=urllib.parse.quote 阅读全文
posted @ 2020-12-03 17:46 凹凸曼大人 阅读(144) 评论(0) 推荐(0)
摘要: import base64input= 'd3d3LmFjODUueHl6' temp = base64.b64decode(input) temp= str(temp).split('\'') temp.pop() temp.pop(0) temp=''.join(temp) print(temp 阅读全文
posted @ 2020-12-03 17:43 凹凸曼大人 阅读(525) 评论(0) 推荐(0)