Programming and Coding
Programming and coding tips, help and solutions...
1,890 topics in this forum
-
- 8 replies
- 4.5k views
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…
-
Delphi encrypt directory
by afre_N- 4 replies
- 3.6k views
who know delphi code to encrypt directory?? help me please..
-
MiniDBG with source
by langxang- 0 replies
- 3k views
MASM source of MiniDBG debugger.rar
-
minifmod help, win32 api programming, thx
by alaphate- 4 replies
- 4.1k views
Any buddy can help me to tackle this problem? Thanks a lot. Attachment is my source files. o10.zip
-
bass.dll
by Fungus- 9 replies
- 4.6k views
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
-
unpacker stubs?
by high6- 6 replies
- 3.8k views
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?
-
Moving text effect
by ShadowRayz- 1 reply
- 5.8k views
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…
-
dll unpack, GetThreadContext error... solution
by langxang- 3 replies
- 4.7k views
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…
-
Writing A Loader
by .::God::.- 10 replies
- 8.3k views
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.
-
Code Segment
by rcemoss- 6 replies
- 6.2k views
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 …
-
Adding More Menus To My Olly With Reshack
by kittmaster- 24 replies
- 7.9k views
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
-
My Contribution To Hacker/Cracker/Programmer Community
by Tony Scott- 0 replies
- 3k views
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
-
compression?
by high6- 2 replies
- 3.7k views
I was wondering, how does compression/decompression of bits work? anyone have an example of compressing bits in C++. Just a simple one?
-
interesting asm links?
by glaufan- 0 replies
- 2.9k views
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
-
- 1 reply
- 3.2k views
Hi to all my question is mentioned in the subject. besides this is there any way to play .gif in the VB 2005
-
Random number in TASM
by Revos- 8 replies
- 6.1k views
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 ^ ^
-
when executed text section
by ahmadmansoor- 6 replies
- 3.9k views
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
-
SQL,cpp,directx,html,java,vb 'video tut'
by silv3r- 0 replies
- 2.9k views
_http://sean.cruels.net/
-
IE remember password?
by high6- 3 replies
- 4.4k views
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…
-
XN Resource Editor
by GamingMasteR- 1 reply
- 3.4k views
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 - Comments, Improovements
by zuma555- 9 replies
- 8.7k views
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]
-
how to inject midi Music File?
by Mouradpr- 3 replies
- 3.6k views
hi all plz how to inject midi Music File in asm
-
Search & Replace Patch Source ?
by Matrix- 2 replies
- 4.9k views
Hi Friends Please Help Me I Need "Search & Replace Patch Source In Visual Basic" Like Dup2 May Help Me Tnx
-
AdvApi32 MD5?
by high6- 9 replies
- 6k views
So I have a program that uses AdvApi32's MD5 function and was wonder how difficult/easy it is to un-hash and md5 from it? Information about how the program uses them to hash. PUSH 0 PUSH 1 PUSH [009D1328] ; UNICODE "Microsoft Base Cryptographic Provider v1.0" PUSH 0 PUSH EDX CALL ESI; ADVAPI32.CryptAcquireContextW; <&ADVAPI32.CryptAcquireContextW> PUSH ECX PUSH 0 PUSH 0 PUSH 08003h PUSH EDX CALL DWORD PTR DS:[<&ADVAPI32.CryptCreateHash>]; ADVAPI32.CryptCreateHash PUSH 0 PUSH EAX PUSH ECX PUSH EAX CALL DWORD PTR DS:[<&ADVAPI32.CryptHashData>]; ADVAPI32.CryptHashData PUSH 0 PUSH ECX PUSH EDX PUSH 4 P…
-
Delphi Keygen Src
by IMPosTOR- 3 replies
- 4.4k views
Delphi Scr by IMPosTOR function Generate_Serial : string; var r,r1,r2,r3,m,n,r_g,r_g1,r_g2,r_g3,r_g4,r_g5,r_g6 : string; Part1,Part2,Final_Serial : string; r_g_,r_g1_,r_g2_,r_g3_,r_g4_,r_g5_ : string; i,j,k,l: integer; begin result := 'Error : contact impostor_76171@yahoo.com'; m := 'LITELOVESHISWIFENICY'; n := Uppercase(Email); . . . .Have bug? , feedback : impostor_76171[at]yahoo[.]com Src_by_IMPosTOR.zip