摘要: a="d87 x65 x6c x63 o157 d109 o145 b100000 d116 b1101111 o40 x6b b1100101 b1101100 o141 d105 x62 d101 b1101001 d46 o40 d71 x69 d118 x65 x20 b1111001 o1 阅读全文
posted @ 2025-07-08 20:43 白嫖帝 阅读(9) 评论(0) 推荐(0)
摘要: let courseId="" let worksId="" let url_PostData="https://gzjxjy.gzsrs.cn/gzjxjy/front/api/study/save" let method_Post="POST" let totalHour="" let body 阅读全文
posted @ 2025-07-08 17:07 白嫖帝 阅读(43) 评论(1) 推荐(0)
摘要: let a=JSON.parse('{"a":1}')// console.log(a)//输出一下内容 /* { "a": 1 } */ let b= JSON.stringify(a)//'{"a":1}' console.log(b) 阅读全文
posted @ 2025-07-08 16:36 白嫖帝 阅读(21) 评论(0) 推荐(0)
摘要: //base64加密 let a=btoa('Hello World!') console.log(a)//SGVsbG8gV29ybGQh //base64解密 b=atob("SGVsbG8gV29ybGQh") console.log(b)//Hello World! 阅读全文
posted @ 2025-07-08 16:26 白嫖帝 阅读(9) 评论(0) 推荐(0)
摘要: import base64 import requests s=requests.session() url='http://117.72.52.127:12829/' res=s.get(url) heard=res.headers['flag'] result=base64.b64decode( 阅读全文
posted @ 2025-07-08 11:55 白嫖帝 阅读(8) 评论(0) 推荐(0)