码迷,mamicode.com
首页 >  
搜索关键字:dvwa 暴力破解 防御 burpsuite high    ( 4870个结果
XSS的原理分析与解剖(一)
0×01 前言:《xss攻击手法》一开始在互联网上资料并不多(都是现成的代码,没有从基础的开始),直到刺的《白帽子讲WEB安全》和cn4rry的《XSS跨站脚本攻击剖析与防御》才开始好转。我这里就不说什么xss的历史什么东西了,xss是一门又热门又不太受重视的Web攻击手法,为什么会这样呢,原因有下...
分类:其他好文   时间:2014-09-09 21:28:09    阅读次数:263
Delphi XE7 GPS控件android下的新变化
Delphi XE7 GPS控件的Android新变化GPS控件的Accuracy可以起作用了,Accuracy>0时: 1--100:ACCURACY_HIGH 101--500:ACCURACY_MEDIUM 其它值时:ACCURACY_LOWAccuracy=0时根据以下方式进行定位:1.GP...
分类:移动开发   时间:2014-09-09 15:29:48    阅读次数:202
拦截导弹
拦截导弹 时间限制:3000 ms  |  内存限制:65535 KB 难度:3 描述 某国为了防御敌国的导弹袭击,发展中一种导弹拦截系统。但是这种导弹拦截系统有一个缺陷:虽然它的第一发炮弹能够到达任意的高度,但是以后每一发炮弹都不能高于等于前一发的高度。某天,雷达捕捉到敌国导弹来袭。由于该系统还在试用阶段,所以只用一套系统,因此有可能不能拦截所有的导弹。 输入第一行输入测试数据组...
分类:其他好文   时间:2014-09-09 13:11:28    阅读次数:138
快排算法实现
public class QuickSort { public static void sort(int arr[],int low,int high){ int l=low; int h=high; int temp=arr[low]; ...
分类:其他好文   时间:2014-09-09 11:15:48    阅读次数:241
归并排序 求逆序数 链表的归并排序 多线程归并排序 java
import java.util.Scanner;public class Main { private static int count=0; public static void mergesort(int a[],int low,int high) { if(l...
分类:编程语言   时间:2014-09-09 10:39:58    阅读次数:241
[LeetCode] Search a 2D Matrix
public class Solution { public boolean searchMatrix(int[][] matrix, int target) { int low=0, high=matrix.length-1; while (low target)...
分类:其他好文   时间:2014-09-08 00:58:06    阅读次数:347
[LeetCode] Container With Most Water
public class Solution { public int maxArea(int[] height) { int len = height.length, low = 0, high = len - 1; int area = 0; whi...
分类:其他好文   时间:2014-09-07 23:40:15    阅读次数:233
Implement strStr()
Implement strStr().Returns a pointer to the first occurrence of needle in haystack, ornullif needle is not part of haystack.方法一:暴力破解,O(mn),超时,写了这段代码,估...
分类:其他好文   时间:2014-09-07 22:25:45    阅读次数:328
排序算法总结之归并排序
基本思想 设归并排序的当前区间是R[low..high],分治法的三个步骤是: ①分解:将当前区间一分为二,即求分裂点                  ②求解:递归地对两个子区间R[low..mid]和R[mid+1..high]进行归并排序; ③组合:将已排序的两个子区间R[low..mid]和R[mid+1..high]归并为一个有序的区间R[low..high]。...
分类:其他好文   时间:2014-09-07 19:50:35    阅读次数:244
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!