Programming and Coding
Programming and coding tips, help and solutions...
1,894 topics in this forum
-
Ran across these two tricks while browsing through the Woomann blogs forum. http://www.woodmann.com/forum/showthread.php?t=11318 http://www.woodmann.com/forum/showthread.php?t=11451 http://www.woodmann.com/forum/showthread.php?t=11078 Haven't seen those before, figured I might bring it to your guys' attention before a protection author does Cheers!
-
Hi! Can anybody help me ? i need to use bassmod.dll or minifmod.dll i wonder how the code should look like
-
LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { switch(message) { case WM_CREATE: sndPlaySound("hello.wav", SND_FILENAME | SND_ASYNC); return 0; }I know how to stop it by sndPlaySound("", SND_FILENAME | SND_ASYNC); //sending NULL string but how to pause and resume it? Thanks a lot for helping me.
-
Someone might help to create an nfo scroll in asm because I have no idea, and will be great if someone gives me a hand please! thank's.....
-
I can calculate the result by pressing <enter>, however, It will doesn't work after I click the application's tray icon. Thanks a lot, my buddies Attachment is my project. Below is my source code. #include <windows.h> #include <stdio.h> #include "resource.h"HINSTANCE hInst; NOTIFYICONDATA nid; bool isMin = false;BOOL CALLBACK DlgProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { char szBuf[15]; double a, b, result; switch(message) { case WM_INITDIALOG: //create tray icon nid.cbSize = sizeof(nid); nid.hIcon = LoadIcon(hInst, "MYICON"); nid.uCallbackMessage = WM_USER + 1; nid.hWnd = hwnd; nid.uID = WM_USER + 2; str…
-
who know delphi code to encrypt directory?? help me please..
-
-
Any buddy can help me to tackle this problem? Thanks a lot. Attachment is my source files. o10.zip
-
I am patching an old game, I have reversed the winmm.dll calls for playing audio from the cd, and I know how to get out the track number and convert it to a filename. I want to replace the playing routines with bass.dll so I can play the .wav rips instead. I need to be able to play, stop and loop (and checking the position of the current play to loop it). anyone can help with this? I tried the examples that come with bass , but they .wav player doesn't seem to work on my system (no sound). I plan to write a nocd tut for this game when I am done patching and testing, so all help much appreciated. =) Cheers
-
I was wondering how do packer makers make stubs? Do they program a unpack stub in say C++ then get the bytecodes and have the unpacker use the bytecodes as a base stub?
-
Sometimes keygens and websites use that feature, in a program you got a textbox and the text like moves to the left and it deletes a character everytime, but then the text reappears from the other side, thats where im stuck.. i can make it disappear to the left but i have no idea how to make it reappear again... that's the code i wrote so far Public back As StringPrivate Sub Command1_Click() If (Timer1.Enabled = True) Then Timer1.Enabled = False Else Timer1.Enabled = True End If End SubPrivate Sub Form_Load() Timer1.Enabled = False Timer1.Interval = 80 End SubPrivate Sub Timer1_Timer() If (LenB(Text1.Text) <> 0) Then back = Text1.Text back = Mid$(back, 2, Len(Tex…
-
Here is a unpacker for PECompact packed dll, but there are some error occur: 1、CreateProcess use command line: loaddll.exe *.dll (just like ollydbg) 2、While CREATE_PROCESS_DEBUG_EVENT,log the DBEvent.u.CreateProcessInfo.hProcess and DBEvent.u.CreateProcessInfo.hThread 3、While LOAD_DLL_DEBUG_EVENT, when load *.dll, SuspendThread DBEvent.u.CreateProcessInfo.hThread, than set breakpoint in OEP,and ResumeThread DBEvent.u.CreateProcessInfo.hThread, while GetThreadContext, Context.regEip always stop in ntdll.KiFastSystemCallRet, can not get dll's regEip: ProcessDll proc LOCAL Buffer [64]:byte LOCAL BP1_data,BP2_data,BP3_data,BP4_data:DWORD LOCAL BP1,BP2,BP3,BP4:DWORD LOCAL hPro…
-
Can someone give me an example in Delphi/ASM on how to write a loader: That breaks on the first DefWindowProcA, modifies an address and then resumes process. Just some example code will do, thanks.
-
Got a window that has a field for a machine specific license and a field for a key that pops the getwindowtexta in the following code with every keystroke until the field is filled. TIA for any explanation of code. .text:004F0FAD align 10h .text:004F0FB0 push 0FFFFFFFFh .text:004F0FB2 push offset loc_579A18 .text:004F0FB7 mov eax, large fs:0 .text:004F0FBD push eax .text:004F0FBE mov large fs:0, esp .text:004F0FC5 push ecx .text:004F0FC6 push esi .text:004F0FC7 mov esi, ecx .text:004F0FC9 …
-
I'm adding some additional menus in reshack, I have the menu structure I want with the new ,XXXX control IDs. My question is how do connect the XXXX ids to engauge the action item of the menu to a the external launched exe? Like in the menu, I want to launch ImpRec. I now have the menu item, just need to figure out the launch sequence based on the fixed path. I can't find anything in reshack that allows modification of this. I've searched the forum, can't seem to find what I'm trying to do. Thoughts and tools? Chris
-
Here is a media player I created in C# with DotNetBar. DotNetBar was used as a cracking target in "Cracking dotnet controls pt.1". I just wanted to show everyone what this little awesome control can do, anywho, the app was created on vista ultimate w/ .net 3.5, but should work on xp, also, of course you will need the dotnet framework to run. WindowsFormsApplication1.rar
-
I was wondering, how does compression/decompression of bits work? anyone have an example of compressing bits in C++. Just a simple one?
-
hi all I recently registered here after reading a bit of the forums here for some time and thought I might share a recently created 'subreddit' on reddit.com for asm related links, code or articles http://asm.reddit.com It has a few interesting links, but could do with some more, so I thought maybe some people here have some gems that would be suitable for submitting to reddit? ps. if you haven't used reddit before, people submit links and they are either voted up or down based on peoples opinion of them and you can also comment on submissions
-
Hi to all my question is mentioned in the subject. besides this is there any way to play .gif in the VB 2005
-
Hi.. I checked out the forum for any random number code in asm and the only thing I found was too complicate plus it was in MASM. My question is, is there any way I can generate a random number in the range of 1 - 100 or something like that? Thanks for reading ^ ^
-
is there a Good code (function is better ) to know when the exe file executed from text section ...in access or write no problem if it is ASM or C++ Or VB6.0 many thanks
-
-
So firefox has a manager for rememer password but IE7 doesn't. So I was wondering if anyone can help me with this. I have analyzed IE7 decrypting the usernames/passwords and this is what I got. Get every visited page. Hash each visted page and see if it is in the registry Grab that registries data Decrypt with CryptUnprotectdata (Key is the forms name) HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IntelliForms\Storage2 contains the usernames/passwords held like. name(site hashed), value(data struct crypted with CryptProtect) Don't know what HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IntelliForms\Storage1 is for though. Maybe has the form names. is thi…
-
Hello everyone, Here's the source code of one of the best resources editting . The code is written in Delphi . See the attachments . XN_Resource_Editor.rar
-
Diagnosis v0.1 first release. I will continue to evolute this tool if get some feedback from you guys. Need to know what could be better or what could be added to version 0.2. Now this tool actually compares 2 files (original/patched), with the same size and tells ya what offsets are patched. The original and the patched bytes also. Download here: [hide] http://zumatitan.googlepages.com/Diagnosisv01pre-release.zip[/hide]