CTF-web8 110 点进去页面,给出代码审计 可以得到要求构造ac和fn的值且当两值相等时输出flag file_get_contents()函数的作用是把文件内容读入一个字符串中,可以利用php://input进行fn的赋值 构造a=123&fn=php://input,再将fn值post进 ...
分类:
Web程序 时间:
2020-07-10 13:21:08
阅读次数:
82
做项目遇到请求对方页面,对方返回的参数串直接拼接到我的URL上,是一个加密串. 因为忘记了之前有URLEncoder这个步骤, 解密的时候没有使用URLDecoder进行解密, 直接使用AES解密遇到报错, Input length must be multiple of 16 when decry ...
分类:
其他好文 时间:
2020-07-10 12:57:16
阅读次数:
103
Given an n-ary tree, return the level order traversal of its nodes' values. Nary-Tree input serialization is represented in their level order traversa ...
分类:
其他好文 时间:
2020-07-10 11:20:42
阅读次数:
63
当前页:<span id="currentPage"></span> 总页数:<span id="totalPage"></span> 总条数:<span id="totalCount"></span> <input id="Button1" type="button" value="首页" onc ...
分类:
其他好文 时间:
2020-07-10 00:39:40
阅读次数:
71
扩展选择器 <style> div p{ color:red; } div > p { border: 1px solid; } input[type='text']{ border: 5px solid; } a:link{ color: pink; } a:hover{ color: green ...
分类:
Web程序 时间:
2020-07-10 00:10:29
阅读次数:
67
v-model是用来在表单控件或者组件上创建双向数据绑定的 他的本质是v-bind和v-on的语法糖 <input v-model="sth" /> // 等同于 <input :value="sth" @input="sth = $event.target.value" /> ...
分类:
其他好文 时间:
2020-07-09 22:47:12
阅读次数:
73
1.常用的表单选择器 input:匹配所有input、textarea、select和button元素 text:匹配所有单行文本框 password:匹配所有密码框 radio:匹配所有单项按钮 checkbox:匹配所有复选框 submit:匹配所有提交按钮 image:匹配所有图像域 rese ...
分类:
其他好文 时间:
2020-07-09 22:42:32
阅读次数:
81
Centos 6.5/6.10 操作系统OpeSSH高危漏洞修复、离线升级OpeSSH详细步骤,内外网通用教程,纯手打 升级所需要的所有包下载地址:https://blog.csdn.net/qq_42626061 1.准备工作,准备好升级安装需要的包 telnet-0.17-47.el6.x86_ ...
分类:
其他好文 时间:
2020-07-09 22:21:03
阅读次数:
244
题目链接:http://poj.org/problem?id=3321 题目大意:给定一棵树,某些节点上有苹果,多次询问各子树上的节点数,并且在询问的中途随时可能新增和删除苹果。 Sample Input 3 1 2 1 3 3 Q 1 C 2 Q 1 Sample Output 3 2 emmm, ...
分类:
移动开发 时间:
2020-07-09 19:37:43
阅读次数:
84
https://blog.csdn.net/danmeng8068/article/details/96430660 1.分离视频音频流 ffmpeg -i input_file -vcodec copy -an output_file_video //分离视频流 ffmpeg -i input_f ...
分类:
其他好文 时间:
2020-07-09 19:12:12
阅读次数:
85