Download Pelles C here: http://www.smorgasbordet.com/pellesc/
include HiddenPasswd.inc
IDC_EDIT equ 4001
PWD_CHAR equ 43 ; ASCII(*)=42
BUFF_SIZE equ 64
.data
DlgBox db 'DLGBOX',0
capt db 'Hidden text',0
.data?
hEdit dd ?
buffer db BUFF_SIZE dup(?)
.code
start:
invoke GetModuleHandle,0
xor ecx,ecx
invoke DialogBoxParam,eax,\
ADDR DlgBox,ecx,ADDR DlgProc,ecx
invoke ExitProcess,eax
DlgProc PROC hWnd:DWORD,uMsg:DWORD,wParam:DWORD,lParam:DWORD
.IF uMsg==WM_INITDIALOG
invoke GetDlgItem,hWnd,IDC_EDIT
mov hEdit,eax
invoke SendMessage,eax,EM_SETPASSWORDCHAR,PWD_CHAR,0
.ELSEIF uMsg==WM_CLOSE
invoke GetWindowText,hEdit,ADDR buffer,BUFF_SIZE
xor ecx,ecx
invoke MessageBox,ecx,ADDR buffer,ADDR capt,ecx
invoke EndDialog,hWnd,0
.ELSE
xor eax,eax
ret
.ENDIF
mov eax,TRUE
ret
DlgProc ENDP
END start
QuoteOverview:https://www.angusj.com/resourcehacker/
Resource HackerTM is a resource editor for 32bit and 64bit Windows® applications. It's both a resource compiler (for *.rc files), and a decompiler - enabling viewing and editing of resources in executables (*.exe; *.dll; *.scr; etc) and compiled resource libraries (*.res, *.mui). While Resource Hacker is primarily a GUI application, it also provides many options for compiling and decompiling resources from the command-line.
QuoteBATHack is a feature rich resource extracter/replacer program capable of extracting or replacing any resource found in either a NE, PE or .FON file. Thats right, extract or replace resources in 16-bit modules or 16-bit font files.
Resources can be exported as either a complied resource (.RES) or as raw data with accompanied resource script file.
so here it is.Page created in 0.023 seconds with 13 queries.