对于走在安全路上的小菜来说,这几个exp、Exploit、Exploit Pack、exp-gui、Payload、MetaSploit名词着实把人转的不轻,下面给大家解释下:
Exp,就是Exploit,漏洞利用的意思,注意,有漏洞不一定就有Exploit(利用)。有Exploit就肯定有漏洞。我们可以引申为利用的方式,通常是以各种代码出现的。可以参见:Debug
Struts2 S2-0...
分类:
Web程序 时间:
2014-07-23 17:10:21
阅读次数:
215
#pragma warning(disable:4996)
#include <Windows.h>
#include <tchar.h>
#include <cstdio>
#include <vector>
using namespace std;
/*
submit time : 1 // But I don‘t know how to deal with "Follow u...
分类:
其他好文 时间:
2014-07-23 13:55:36
阅读次数:
280
在windows 2003 sp2 或者 windows 2008 rac环境中,可能会由于默认的SNP( Scalable Networking Pack)特性会导致 实例驱逐或者节点驱逐...
#include #include #include #include #pragma warning(disable:4996)typedef struct HuffmanTree{ int weight;//权值 int parent;//父节点 int left;//左子树 ...
分类:
其他好文 时间:
2014-07-23 12:49:56
阅读次数:
382
??
内存对齐概念,struct例子:
struct stu{
char a;
intb;
char c;
double d;
char e;
}
取pack(n),n,取结构体中最大成员大小m,取两个小值k, k = m
取每个成员大小p,依次同k比较,取小值q = k
第二步当中依次取...
分类:
其他好文 时间:
2014-07-22 23:48:17
阅读次数:
283
裸敲并查集,很水一次AC 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 11 #pragma comment(linker, ...
分类:
其他好文 时间:
2014-07-22 23:42:17
阅读次数:
284
剪枝暴力搜索。
代码:/******************************************************
* @author:xiefubao
*******************************************************/
#pragma comment(linker, "/STACK:102400000,102400000"...
分类:
其他好文 时间:
2014-07-21 23:29:40
阅读次数:
303
#pragma warning(disable:4996)
#include <cstdio>
#include <tchar.h>
#include <Windows.h>
#include <vector>
using namespace std;
/*
submit time : 1
request :
Given a collection of numbers, retu...
分类:
其他好文 时间:
2014-07-21 23:27:50
阅读次数:
368
利用table的pack与unpack进行数据打包与解包,测试代码如下:
print("Test table.pack()----------------");
local packData =function( ... )
local arg = table.pack(...);
-- print("this arg table length is", arg.n)
--...
分类:
其他好文 时间:
2014-07-21 22:48:47
阅读次数:
297
本篇来介绍下游戏中的敌人类,既EnemySprite.h和EnemySprite.cpp中关于敌人类中的具体实现。
游戏中的敌人类主要有四种,三种不同的敌机和炸弹从上面随机的落下来,同时每个敌人都有自己的生命值,当生命值为0后会被从游戏中移除。
看一下敌人信息的头文件:EnemyInfo.h
#pragma once
const int ENEMY1_MAXLIFE=3;
const in...
分类:
其他好文 时间:
2014-07-21 22:22:38
阅读次数:
163