第一步就死了:原来是要GET传参啊!http://120.24.86.145:8002/flagphp/?hint=1 个人反思: 一般攻击入口只有两个: 1、URL框 2、页面中的输入框 当我在URL框中想半天寻找攻击点的时候,只想到了用御剑去扫描目录然后来查看一些文件,就没有想到GET传递,实在 ...
分类:
Web程序 时间:
2018-10-04 17:51:59
阅读次数:
378
无法直接传入int因为它是primitive type, changes made to it will not be visible outside the function scope. ...
分类:
其他好文 时间:
2018-10-02 18:00:26
阅读次数:
147
jQeury提供了2个帮助获取表单元素数据的方法。分别是serialize() 和 serializeArray()。两者作用完全相同,只不过是返回值不同,前者是返回一个字符串,后者返回一个Json对象数组。直接看例子,一目了然。 1.表单结构代码 2.js代码 3.输出结果 jQuery会自动搜索 ...
分类:
Web程序 时间:
2018-10-02 00:51:41
阅读次数:
220
Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or ...
分类:
其他好文 时间:
2018-10-01 22:10:37
阅读次数:
196
当我们想要将数组值存储到数据库时,就可以对数组进行序列化操作,然后将序列化后的值存储到数据库中。其实PHP序列化数组就是将复杂的数组数据类型转换为字符串,方便数组存库操作。对PHP数组进行序列化和反序列化操作,主要就用到两个函数,serialize和unserialize。 一、PHP数组序列化:s ...
分类:
编程语言 时间:
2018-10-01 19:09:11
阅读次数:
191
【一】步骤: 1)将对象转化为Json字符串。 2)将Json字符串编码为byte数组。 3)设置传输对象(WebRequest或者HttpClient)的ContentType是"application/json"。 4)设置传输对象的ContentLength=Byte数组的长度。 5)开始传输 ...
分类:
Web程序 时间:
2018-09-28 22:10:54
阅读次数:
223
public static T Deserialize(S stream) where S : Stream where T : class, new() { using (stream) { BinaryFormatter formatter = new BinaryFormatter();... ...
public static T Deserialize(S stream) where S : Stream where T : class, new() { using (stream) { XmlSerializer xmlSearializer = new XmlSerializer(type... ...
public static T Deserialize(string content) where T : class, new() { return JsonConvert.DeserializeObject(content); } public static string Serialize(T... ...
1. 核心概念 StreamingContext Create StreamingContext StreamingContext的构造函数 batch interval 可以根据你的应用程序需求的延迟要求以及集群可用的资源状况来设置 创建StreamingContext可以做什么? 1. Defi ...
分类:
其他好文 时间:
2018-09-23 13:50:25
阅读次数:
168