今天我们来测试请求中参数的篡改,这个在web安全测试中是常用的,拦截请求包,修改参数,提交1. 首先我们需要启动模拟器,并使用本机的代理(加上参数-partition-size的目的是为了可以往android的/system中拷贝数据,要不然会提示“out of memory”错误)。如果是linu...
分类:
移动开发 时间:
2014-07-16 19:23:27
阅读次数:
267
#encoding=utf-8import randomfrom copy import copy def directInsertSort(seq): """ 直接插入排序 """ size = len(seq) for i in range(1,size): t...
分类:
编程语言 时间:
2014-07-16 18:11:59
阅读次数:
255
1、有符号整形 文章出处http://blog.csdn.net/huguangshanse00/article/details/8469845 什么时候我也能自己总结 = =。 在C语言中,有符号整形变量a用signed int a表示,通常我们写的int a默认为...
分类:
编程语言 时间:
2014-07-16 18:11:27
阅读次数:
380
Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.下面是百度得到的关于罗马数的解释:我的代码: 1 class Solution { 2 ...
分类:
其他好文 时间:
2014-07-16 18:00:22
阅读次数:
214
Description
Captain Clearbeard decided to go to the harbour for a few days so his crew could inspect and repair the ship. Now, a few days later, the pirates are getting landsick(Pirates get landsic...
分类:
其他好文 时间:
2014-07-16 17:26:06
阅读次数:
300
先使用int实验:
public class TTEST {
private static List mList = new LinkedList();
public static void main(String[] args) {
int a = 0;
changeA(a);
System.out.println("a = "+a);
}
public stat...
分类:
编程语言 时间:
2014-07-16 17:19:33
阅读次数:
247
题目如下:
Problem I
23 Out of 5
Input: standard input
Output: standardoutput
Time Limit: 1 second
Memory Limit: 32 MB
Your task is to writea program that can decide whether you can find an arithm...
分类:
其他好文 时间:
2014-07-16 17:16:32
阅读次数:
203
下面的代码实现了MD5值的生成: public class MD5Test2 { public static void main(String[] args) { System.out.println(MD5Test2.MD5Operation("hello")); System.out.print...
分类:
编程语言 时间:
2014-07-15 09:48:17
阅读次数:
243
这篇文章来自iOS Tutorial Team 成员Marcelo Fabri, 他是Movile的一个iOS开发者. Check out hispersonal websiteorfollow him on Twitter.原文地址 当我们开发iOS应用时,好的性能对我们的App来说是很重要的.....
分类:
移动开发 时间:
2014-07-15 09:46:23
阅读次数:
382