Files
metasploit-gs/external/source/byakugan/test/testHeapOverflow.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
263 B
C++
Raw Normal View History

2008-08-20 19:27:03 +00:00
#include <windows.h>
#include <stdlib.h>
#include "../msfpattern.h"
int main() {
char *ownme, *next;
Sleep(10000);
ownme = (char *) malloc(256);
next = (char *) malloc(256);
msf_pattern_create(264, ownme);
free(next); free(ownme);
return (0);
}