Programming and Coding
Programming and coding tips, help and solutions...
1,894 topics in this forum
-
i want to add some shortcut to olly like dup imprec etc. but don't know how to? thx for reply. example is on pic
-
Hi all, I am trying to produce a keygen, but am a little confused by what is happening in this section... CompString: push ebp mov ebp,esp sub esp,0000000Ch push esi push edi push ebx mov [L10087B48],ebp mov [ebp-04h],eax mov [ebp-08h],edx mov ecx,[fDict_RT] cmp ecx,00000002h jl L10032496 push edx push eax call SUB_L100324AC mov [ebp-0Ch],eax jmp L1003249F L10032496: call [L10081C04] mov [ebp-0Ch],eax L1003249F: mov eax,[ebp-0Ch] cmp eax,00000000h pop ebx pop edi pop esi mov esp,ebp pop ebp retn Your help is appreciated Rocky
-
hi all, i have a prob... i need to write a text line to an existing .txt i try WriteFile but nothing... i think my prob is geting the handle of the .txt file can someone help me? by all 5k3l3t0r
-
I like Winasm to do the editing of the asm file. Is there a way to have the text pass to MASM? The only way I've been doing it is save asm file within and reopening it in qeditor. Its a pita, I've looked through the options but can't put a finger on how to pass the arguments to the program. I use the "build all" option to compile the file without issue and its easy Any thoughts for an easier solution? Chris
-
Hi, Can you please help me how to write (in visual c++) a function that calculates the time elapsed to perform another function(like generating a code,benchmark......) Thanks
-
I need Source Code for loader (Serial Retriever)
-
Hi i downloaded the crack for Starters Orders Pro 2.x and i have to change crack.reg : Windows Registry Editor Version 5.00 [HKEY_ LOCAL_MACHINE\SOFTWARE\Starters Order Pro] "Install_Dir"="c:\\games\\sopro";Change the above info to the directory where you have installed the application :-)But no matter what i do, it won't add it to the registry i also tried to change it to: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Starters Order Pro] "Install_Dir"="c:\games\sopro"Please help me. You should spend a couple of extra minutes beautifying your posts, they look better and readable when they are presentable... Ted.
-
Hi, I want (finally ) start learning my 1st program language and I'd like to know with which language you have started, or which do you recommend to an total program newbie like me . (btw. I'm young and ambitious ) Best regards Till.ch
-
How this code for keygen in asm? I must need a way and for chose random digits. Example 4 digit ABCD are random. But only thing: A+B+C+D must 26 (hex) How do?
-
I only use assembler but this may be useful to coders of C++/C#/VB etc. Windows? Server 2003 R2 Platform SDK ISO Download />http://www.microsoft.com/downloads/details.aspx?familyid=E15438AC-60BE-41BD-AA14-7F1E0F19CA0D&displaylang=en
-
Hi and happy new year for all ! Just to know if there a source code exemple of a loader ( patch memory doing search & replace bytes) ? no succeed with google, so may be you can help me thinks for any help
-
- 4 replies
- 5k views
- 1 follower
-
-
hi all, i get troubles here i don't know what is functions that used to write a serial in a keygen auto without press any key or btn could somone give me example for that?
-
hi all i was writing a keygen for keygenme2 by diablo2002 and i put riped code in a keygen tempelate and solved it but when i build it i got errors i goto the line error and find this instruction BSWAP EDXi don't know what is that mean? and how i can use it in keygen tempelate
-
I'm using Ziggy's keygen template files, I want to change the dialog box icon from the orange key to something else. I've been able to change the other things like the test and lines etc using the rcsc.rc file and I've looked at the asm for the file an app_icon.ico and can't figure out how to modify it. I'm using winasm in visual mode, any idea wth I'm doing wrong?.......... Chris
-
hi all i create a small app just for a test i don't why he got a crashes when write to file .data FILENAME DB "key.lic",0.data? hInstance HINSTANCE ? read db ? write db ?.const IDD_DLG1 equ 1000 IDC_BTN1 equ 1001 IDC_EDT1 equ 1002DlgProc proc hWnd:HWND, uMsg:UINT, wParam:WPARAM, lParam:LPARAM .if uMsg == WM_INITDIALOG invoke SendMessage, hWnd, WM_SETICON, 1, eax .elseif uMsg == WM_COMMAND mov eax,wParam .if eax==IDC_BTN1 invoke CreateFile,ADDR FILENAME,GENERIC_READ+GENERIC_WRITE,0,NULL,CREATE_NEW,FILE_ATTRIBUTE_NORMAL,NULL invoke GetDlgItemText,1000,1002,addr read,512 invoke SetFilePointer,addr FILENAME,0,0,FILE_BEGIN invoke WriteFile,addr FILENAME,add…
-
hello is there any one know how i can ceate keygen with vb?
-
Thanks to Lena for putting some knowledge behind my reserving i used just do things now i actually understand what i do And thanks fot subzero for the inlining tutorial now for my question: I inlined an app like this: 004BA6E1 . 68 51A74B00 PUSH ssc4.004BA751 ; /pModule = "GDI32.dll" 004BA6E6 . FF15 A4114C00 CALL DWORD PTR DS:[<&KERNEL32.GetModuleHandleA>] ; \GetModuleHandleA 004BA6EC . 68 C5A74B00 PUSH ssc4.004BA7C5 ; /ProcNameOrOrdinal = "GetDIBits" 004BA6F1 . 50 PUSH EAX …
-
grr .... i have a weird problem here ... i was trying to enter a userinput into registry ... .data REG_PATH db 'SOFTWARE\xxx\xxxx\xxxxx\',0 REG_SUB_KEY0 db 'UserName',0 REG_SUB_KEY1 db 'UserCompany',0 REG_VAL0 db ' starzboy',0 REG_VAL1 db ' starzboy',0 .data? hKey PHKEY ? buffer db 512 dup(?) buffer1 db 512 dup(?) invoke GetDlgItemText,hwnd,10021,ADDR buffer,512 ----> copy to 1st buffer invoke GetDlgItemText,hwnd,10022,ADDR buffer1,512 ----> copy to 2nd buffer invoke RegCreateKey,HKEY_LOCAL_MACHINE,addr REG_PATH,addr hKey ----> make the key invoke RegSetValueEx,hKey,addr REG_SUB_KEY0,0,REG_SZ,a…
-
First of all, sorry for my poor english since it's not my first language , but I'll try my best to make the content understandable. I was making a simple program that would read another process's memory Via the most popular FindWindow -> GetWindowThreadProcessId -> OpenProcess -> ReadProcessMemory method and all worked fine while assembling insinde WinAsm IDE and running "inside" the IDE. But once I started to run the program outside the IDA, in other words when I double clicked on the produced .exe then the program wouldn't function as expected so I went on debugging the program in OllyDbg to find out which API failed. But the strange thing is, even in Oll…
-
Hi I've moved on to the more visual side of things using c++ now. And i've looked around for some chiptune players. I saw ufmod had some c source for playing chiptunes, but it was overbloated, and was too complex for me too handle. I was wondering if anybody had a vc++ project which only contained the code to run the chiptune! not all these buttons and things. Any help on this would be appriciated!! Thanks in advance! Regards, BooGLE
-
Hi everybody, I have a C++ program with inline ASM code that I need to convert to C, bcuz 64bit systems do not support the inline ASM. It wouldn't matter if the code's unreadable, unmaintainable, just for it to compile. Thanks for the help in advance!
-
FAQ: Window Regions: http://comrade.ownz.com/docs/regions.htmCustom-Shaped and Transparent Windows: http://comrade.ownz.com/docs/shapewnd.htm
-
hi guys, anyone can help me to decode this hex? i think it is using safer k64 algorithm 0=0545BA9DCF302942 1=F6DE2FE7B95AEC3F 2=9BE6D53A6F7A3493 3=03A0 4=26846E02A7BAF757C38E02AF612CBB7232ACBBA49F4F923423C8B701D5ED79B0E6795773B060D655FCF2BAC47B38FEF2FF7FB3B7F5A5B062819D25597F0429D994FA74868EEC921388AFC9CCE14E5C6C671F4D78AA68602F5BC933FA42D1CACE22F19154BFAEBD35C617B15C7642C09348D073DADAD2E642BC4BD6D3B94A1D4A58AB7CF381310C36B4E4F8FF38ED1A03DB4E440E66F6DBC83616D2E06129D05E155D6A6087C89BEA420DAEE32F2CA9D6597460B890E519EFE58661E45B2C85CAB4DDD9AB7F4964BB3E76716EF8A72965B6598E7B1EA35164C05E41F699E66894AD263A2DFEDFCAD67BE896B294EBDD6A179FF5C93FF8B2B6A2680AD3911EB0485F149A2D4148F1…
-
hi i saw the latest patch for Slysoft Products by Markhus .... as usal it rocks ....and one more thing i like in it was ... the find file if we want to scan a file in a specific dir we can use FindFirstFile but how does markhus find the exe when the patch is not in same dir ... he may use reg entries to find if the soft is installed ... but then how does he specify the patch to the target ! i have alraedy pm'd markhus for this ... but i didnt get any reply .... its ok if this is "internal" btw Markus a big "thumbs-up" for this excellent work on slysoft ! hope to hear from soon for the gurus thanx PS* since my question is releated to a SnD release plz dont take it negativ…
-
Hi! Ive just started coding in c++ and i think it's really a cool language. Im only doing things in system menu no gui yet, but i'd really appriciate it if somebody gave me a few examples of keygens in c++ using tables or something else. ive made a few keygens in c++ and would like some source code or some examples of using tables. That would really be cool, cheers if you can help in any way! Best Regards, BooGLE