url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和 delete也可以使用,但仅部分浏览器支持。timeout: 要求为Number类型的参数,设置请求...
分类:
Web程序 时间:
2014-06-27 21:41:47
阅读次数:
299
1.漏洞成因
Linux kernel对ARM上的get_user/put_user缺少访问权限检查,本地攻击者可利用此漏洞读写内核内存,获取权限提升。
2.受影响的系统
Linux kernel 3.2.2
Linux kernel 3.2.13
Linux kernel 3.2.1
3.PoC分析
(1)从/proc/kallsyms文件中获得数据结构pt...
分类:
数据库 时间:
2014-06-26 13:48:33
阅读次数:
344
如题,不解释
普通青年:
HashMap map = new HashMap;
map.put("name","Lily");
map.put("age","11");
文艺青年:
HashMap map = new HashMap{
{
put("name","Lily");
put("age","11");...
分类:
其他好文 时间:
2014-06-26 11:04:48
阅读次数:
221
我们直接看例子:
Map mallMap = new HashMap();
mallMap.put(MallStatus.SELFMALL.toString(),
MallStatus.SELFMALL.getValue());
mallMap.put(MallStatus.DELEGATIONMALL.toString(),
MallStatus.DELEGATIONMALL.getV...
分类:
编程语言 时间:
2014-06-25 19:59:55
阅读次数:
207
ARRAY array-name { subscript } ;*字符型数组输出;data a; array simple{3}$ red green yellow ("r" "g" "b"); put red=; put simple(1)=;run;...
分类:
其他好文 时间:
2014-06-25 15:11:35
阅读次数:
881
a little riak book 的无聊总结
#!/bin/bash
# Riak HTTP interface stays true to their intent: 1xx Informational, 2xx Success,
# 3xx Further Action, 4xx Client Error, 5xx Server Error
### put
PORT=10...
分类:
其他好文 时间:
2014-06-25 08:22:11
阅读次数:
178
var map=new Map();
map.put("a","A");map.put("b","B");map.put("c","C");
map.get("a"); //返回:A
map.entrySet() // 返回Entity[key,value]
map.containsKey('kevin') //返回:false
function Map() {
th...
分类:
编程语言 时间:
2014-06-25 00:05:28
阅读次数:
309
0.前言
本文解释如何使用Jquery中的ajax方法传递JSON数据包,传递的方法使用POST(当然PUT又有时也是一个不错的选择)。POST JSON数据包相比标准的POST格式可读性更好些,层次结构也更清晰。
为了说明问题,前端和后端较为简单,重点突出AJAX的应用。
【前端】——add-post-json.html
图1 ad...
分类:
Web程序 时间:
2014-06-24 21:52:17
阅读次数:
220
请求方法是请求一定的Web页面的程序或用于特定的URL。可选用下列几种:GET:请求指定的页面信息,并返回实体主体。HEAD:只请求页面的首部。POST:请求服务器接受所指定的文档作为对所标识的URI的新的从属实体。PUT:从客户端向服务器传送的数据取代指定的文档的内容。DELETE:请求服务器删除...
分类:
其他好文 时间:
2014-06-24 15:01:26
阅读次数:
138
Last night it took me about two hours to learn arrays. For the sake of less time, I did not put emphaises on the practice question, just now when reading the book, I found that some methods
referred...
分类:
其他好文 时间:
2014-06-22 17:14:10
阅读次数:
152