前面一篇学习了下怎么用ClassName或者title来进行占位,现在学习下如何利用该漏洞对于UAF漏洞的利用,最简单的就是通过Heap Spary来实现了,国外的大神也提出了一种不用Heap Spary,直接构造一个对象来利用的方法现在学习一下这两种方法,漏洞利用环境为win7 32位+ie8,我...
分类:
其他好文 时间:
2014-07-30 00:59:42
阅读次数:
367
//function GetUser: string; //获取本机当前用户名varBuffer: array[0..255] of Char;Size: cardinal;beginSize := 256;if GetUserName(Buffer, Size) thenbeginResult :...
分类:
其他好文 时间:
2014-07-29 21:29:52
阅读次数:
219
今天无意间遇到这个错误:java.lang.OutOfMemoryError: Java heap space问题出现原因:使用a标签实现快速下载[当然已经实现了,但想了想还是要归纳解决这类问题]......开始还真有点茫然,没接触这个错误....没办法慢慢分析下再弄了几套数据测试下代码还是出现类似...
分类:
编程语言 时间:
2014-07-29 20:49:12
阅读次数:
234
http://blog.csdn.net/kaitiren/article/details/19974269内存泄露不错的帖子,感谢分享Google Chrome浏览器提供了非常强大的JS调试工具,Heap Profiling便是其中一个。Heap Profiling可以记录当前的堆内存(heap)...
分类:
Web程序 时间:
2014-07-29 17:09:12
阅读次数:
321
http://en.wikipedia.org/wiki/Branch_target_predictor 简要原理 http://www-ee.eng.hawaii.edu/~tep/EE461/Notes/ILP/buffer.html http://web.cs.dal.ca/~mheywood/CSCI3121/Pipe/05-BTB.pdf 如何设计的? http...
分类:
其他好文 时间:
2014-07-29 16:23:29
阅读次数:
171
service端
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define MYPORT 8887
#define QUEUE 20
#define BUFFER_SIZE 1024
int main()
{
///定...
分类:
系统相关 时间:
2014-07-29 14:21:40
阅读次数:
285
实现:#ifndef BINARY_HEAP_H#define BINARY_HEAP_H#include "dsexceptions.h"#include using namespace std;// BinaryHeap class//// CONSTRUCTION: with an optio...
分类:
其他好文 时间:
2014-07-29 14:04:18
阅读次数:
230
#include #include #include #include #include #include #include #define BUFFER_LENGTH 1024void ReverseMessage(char buffer[], ssize_t receivedBytesCount...
分类:
其他好文 时间:
2014-07-29 14:02:28
阅读次数:
222
C代码:
#include
#include
const unsigned short SIZE_OF_BUFFER = 2; //缓冲区长度
unsigned short ProductID = 0; //产品号
unsigned short ConsumeID = 0; //将被消耗的产品号
unsigned short in = 0; //产品进缓冲区时的缓冲区下标
unsigned ...
分类:
其他好文 时间:
2014-07-29 13:17:47
阅读次数:
163