Programming and Coding
Programming and coding tips, help and solutions...
1,875 topics in this forum
-
A Request !
by starzboy- 3 replies
- 3.9k views
This is not a crack request....but a Code request *help ! My last request was unheard here at SnD ..... Wonder why.....i know there are many talented Coders in here ! Anyways ... .todays question is how do i transfer a file to the folder in which the exe was patched ! and how do i transfer values to registry ! Hope to get some help in here ! Thanks to FuDowarez,Whiterat and Napalm for the help !
-
Help On The Fx Of This Code
by Guest nothing_2006- 3 replies
- 3.7k views
i saw below code in one tutorial, but i dont understand what it means ============== 01 MOV ECX, FFFFFFFF 02 SUB EAX, EAX 03 REPNZ SCASB 04 NOT ECX 05 DEC ECX <== length ============== the tut said it's used to calculate the length of the string/char and ECX mean say the length line 01: mov -1 to ECX line 02: EAX-EAX=> ZF=1 line 03: ??????? line 04: NOT ECX line 05: ECX=ECX-1 can anyone help...
-
I Need Some Help
by starzboy- 0 replies
- 3.8k views
I was trying code a patch for Yahoo Spade buddy and had some problems ! There are for ASm Coding ! Hope to get some help ! #1. How do i transfer Values to the registry..... #2. How do i tramsport File(eg..*.reg) to the folder ! #3. Dunno but suddenly this is not working..... .data include chiptune.inc xmSize equ $ - table there is a cross at include chiptune.inc.....and the exe dosent Compile....used to work before fomat..... added chiptune but....dosent work....maybe i missed something this time...help ! Regards
-
Asm Jumps
by Scale- 2 replies
- 4.6k views
My mate is getting new hardware and he wants to beat me with 3d mark, Now i cant beat him officaly so i tought lets modify 3ds mark hehe. Well i found where to modify, but this piece of code is used 2 twice at start and then it doesnt do my modifyed code (adding to eax) so i made an cmp but i dont think its correct //jump in from original code 006F811D 3D F8E41200 CMP EAX,12E4F8 006F8122 ^ 75 E3 JNZ SHORT 3DMark05.006F8107 //eax = 12E4F8 then runs this and jump back 006F8124 8B4424 10 MOV EAX,DWORD PTR SS:[ESP+10] 006F8128 85C0 TEST EAX,EAX 006F812A - E9 8E43D7FF JMP 3DMark05.0046C4BD //else add 1388 t…
-
Vb - Hex2dec
by Guest Dater_- 3 replies
- 5.5k views
Hi. I have problem with converting Hex to Dec in VB. I have hex string for example "975D46ED" - in HexDecChar by Ap0x it is "-1755494675" (bad) but in CrackersTool it is "2539472621"(good). Hmm strange... My code is : SerialHex = CStr(Blabla1hex) & CStr(Blabla2hex) & CStr(Blabla3hex) Hex2Dec = CLng("&H" + SerialHex)Text2.Text = Hex2DecAnd my app give me...bad "-1755494675" not good "2539472621". Can anyone help ?
-
Asm Tutorials
by Guest P43- 5 replies
- 4.9k views
Can some one give me some good ASM tutorials? Thanks in advance.
-
- 2 replies
- 3.6k views
Hi all! I have just finished going though Lenas' tut and I wanted to know how to make more of the XM music file files that Lena151 included in the keygentemplate source code, which I must say is a terrific tut. It's a pity the tut had to end there,but I guess Lena151 can't spend the rest of life teaching us newbies. Anyway, can someone explain how to do it?
-
Masm32 Bass Source Code
by Guest badboy- 17 replies
- 7.5k views
http://rapidshare.de/files/25159045/bass_src.zip.htmlsuported files MO3 / IT / XM / S3M / MTM / MOD / UMX/ MP3/WAV/MIDI AND MORE enjoy -Fudo
-
Coding... Coding...
by Guest DarkDragon- 5 replies
- 4.9k views
i wanna start learning these languages: ASM, C , C++ , Java. What's the best way to start ? can you share with us your experience ? How did you start, yor schedule, the problems you faced, how did you bypassed 'em, how much did it took for you to learn ? Especially, links to free referencing ebooks, or if you've some free ones spidering in your HD, share 'em with us please !! Thank you allllllllllll in advance ! greets,
-
Asm Routine Beginner Question
by Guest Dater_- 9 replies
- 4.7k views
Hi. I wanna recognize and code keygen. My routine of serial have 2 parts: 1_Part: Generate digits (second part of serial) 1_Part: Genarate one letter from part1 serial in hex This is part2 : MOV EAX,ESI ** ===> Move A657C to EAX (A657C is my hex serial) MOV ECX,1A ** ===> Move 1A to ECX (1A is constant) CDQ ** ===> CDQ mean EAX to "EDX:EAX" so "5:A657C" (EDX is 5 and it is constant) IDIV ECX ** ===> Divide ??? by 1A ADD EDX,41 ** ===> Add "A"+ 41 = 4B (char K) PUSH EDX ** ===> Push edx So my problem is with understand CDQ. I readed about it and this mean "Divide EDX by EAX…
-
Starting A New Process
by Scale- 2 replies
- 3.6k views
I have a program which checks if u have passed your trail if not u get a screen saying u passed your trail time and that u can buy. If not u can run the game now i know it start a new process which runs as blabla.dll in the folder it also looks like a dll, but if u rename it to .exe it gets the game icon but it crashes on launch. Now my question what API calls can be used to start a new process, becuase i cant find where the program start the other program. list of API calls: Calls.txt: http://www.ewa-clan.co.uk/calls.txt
-
Newbie Help
by starzboy- 9 replies
- 5.5k views
i read the tut by gopitt and when i assemble(go all) .386 .model flat, stdcall option casemap:none include windows.inc include kernel32.inc include user32.inc includelib kernel32.lib includelib user32.lib.data MsgBoxCaption db "Simple MessageBox Program",0 MsgBoxText db "Hello World!",0 .code start: invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK invoke ExitProcess,0 end starti get an error \Masm32\Bin\rc /v /I"\Masm32\Include" "D:\Program Files\WinAsm\Samples\Dialog\Dialog.rc" Make error: Cannot create process. \Masm32\Bin\ML /c /coff /Cp /nologo /I"\Masm32\Include" "D:\Program Files\WinAsm\Samples\Dialog\Dialog.asm" Make error: Cannot cr…
-
Asm With C ?
by Guest Firebreath- 2 replies
- 4.4k views
hello I know c programming and currently learning asm (masm). I know that you can combine c and asm together, but its still confusing to me. Are there any resources that can help me with this? also... would it matter which asm assembler i learn for combining asm with c, because of the different syntax in each?
-
Change Section Attributes
by Guest svetlana57- 2 replies
- 3.8k views
I'm coding an application in TASM and it has self-modifying code. But when I compile it, by default code section doesn't have write attribute, so my app gets exception. Of course I can change section attributes for example in PETools after compiling, but I recompile it rather often, so it annoys me. How can I change section attributes? Maybe some parameter should be given to linker? Maybe not in tasm, but in other asm (MASM/FASM)?
-
Code Question
by Scale- 0 replies
- 3.7k views
How would i go about and find the code for repressing for example: In most games when u shoot a pistol it will fire only once till u press it again, or Quake games where if u press and hold space in mid air u will automaticly jump again once u hit the ground. but then wont jump again unless u release and repress space. Dont know how i should look for it :X Thanks for the help.
-
Need Help With Masm Dialog Resource File Data
by kittmaster- 2 replies
- 3.7k views
Thanks!! Chris I found winasm, that makes life sooooooo much easier!!! chris
-
Asm Bassmod Source Code
by Guest badboy- 4 replies
- 4.4k views
http://rapidshare.de/files/21576646/bassmodasm.zip.html Enjoy -FudoWarez
-
Vb6 Help
by Guest Rhys2002- 8 replies
- 5.1k views
Any ideas how i can close exe's down when opened with shellexecute. Or is there another way i can open and close these exe's but keep the default exe directory path. Thanks again
-
Recourse Hacking
by Scale- 15 replies
- 8.7k views
In the 16'th tutorial lena shows a modifyed olly with an extra menu with his other tools. Now adding the menu wasnt that hard. But how do tell the program start those programs when clicking that menu button. A litle explantion or a point in the right direction or a tutorial would be very appriciated. Scale. (sorry if this wasnt in the correct section)
-
Mouseover Buttons
by Guest Tundra- 8 replies
- 6.2k views
How do you test if a mouse is hovering over a certain button?
-
Delphi Multiline Editcontrol
by Ziggy- 2 replies
- 6.6k views
I need to have a multiline readonly editcontrol in a Delphi 2005 app - the equivalent of the ES_MULTILINE MASM resource flag. I can't find anything in the Delphi 2005 documentation describing how to do this. Web search didn't find anything helpful either - maybe I'm not looking in the right place ? Any help appreciated please. Z
-
Mod Format Help
by Guest Firebreath- 3 replies
- 4.4k views
Hello I am still new to programming in asm, and I would like to ask how is it possible i could run *.mod files in assembly for music? i came across a tutorial to run *.xm files in asm which was great, but i wanted to know how it would be possible to add mod files.
-
Combobox Background Colour
by Ziggy- 3 replies
- 7.8k views
I want to change the background colour of a ComboBox control. For static and edit controls this can easily be done by handling the WM_CTLCOLORSTATIC or WM_CTLCOLOREDIT messages. But I don't know what to use for a ComboBox. WM_CTLCOLORLISTBOX doesn't work and a search hasn't turned up much of any use. Any help appreciated please. Z
-
Delphi Function Problem
by SuperCRacker- 15 replies
- 6.6k views
Hi all, I'm facing these days a problem with my delphi coding. To be brief, the problem is that Delphi doesn't provide in its internal functions a function that can search for a hex value in a file. I coded my own function but it seems that it takes too much time, I also looked around in the net, but nothing found. If you can help me either by suggesting a delphi function found on the net, or a delphi component or your own algo (even in different language) or maybe an API function that could do this job . The most important thing is that it must take less time (very quick). Thnks for your help. SC.
-
- 0 replies
- 7.9k views
Most here will probably be checking ARTeam tutorials and releases on a regular basis. For those who have missed it, Goppit has released a very nice tutorial on w32ASM coding for reversers. Great release: />http://cracking.accessroot.com (follow links to tutoial section) Thanx to Goppit and ARTeam for their effort writing this one!