Programming and Coding
Programming and coding tips, help and solutions...
1,882 topics in this forum
-
Proxy(made in java) for Mobile Game(help needed)
by madskillz- 3 replies
- 3.9k views
One of my friend has created a proxy for a mobile game in java The proxy contains the decryption module in it for the mobile game traffic The traffic is sent via socket connection, Now the java proxy is loaded on the windows machine and the game is loaded on the android device. The hosts file in the android device is routed to the windows machine WIFI IP address. (Android Device and Windows Machine are on the same WIFI network). The Java proxy starts its working as the mobile game is loaded. It intercepts the traffic then decrypts it and saves it in a text log file. Now I want to this proxy to actually forward the data to fiddler where I ca…
-
- 3 replies
- 4.6k views
Hello, Can anyone help me to add "Byte" and "IL & Byte" as language in Reflector as CodeCracker did in Reflector 7.0 hacked version. Then it will be very useful to make patches easily. Thanks in advance bsvo2786
-
Is KANAL opensource?
by xSRTsect- 3 replies
- 5.5k views
is it?
-
How do I set a method as a setter using Dnlib?
by CodeExplorer- 1 reply
- 4.1k views
How do I set a method as a setter using Dnlib? setm.IsSetter = true; // set the method as setter (using Mono.Cecil) Mono.Cecil declaration on MethodDefinition: public bool get_IsSetter() { return this.GetSemantics((MethodSemanticsAttributes.None | MethodSemanticsAttributes.Setter)); } Where are these on Dnlib?
-
- 3 replies
- 6.6k views
hi all could possibly help me, I'm trying to create a non-commercial application to manage simple or any store to be managed, but I was a little problem when I tried it on another Computer not installed Delphi. if I put midas.dll the same folder / directory on System32 always appears Error message: Error loading midas.dll, but if I put midas.dll on the desktop then the error message did not appear and the application running normally.how to handle midas.dll so I can place it in the same folder?thx b4! ...
-
Delphi Hook Library
by V65j- 0 replies
- 7.9k views
Delphi Hook LibraryCan Hook procedure/function,COM Object method...http://code.google.com/p/delphi-hook-library/ or http://www.raysoftware.cn/?p=357 Google-translated any one can help me about how to use this com hook for hooking an ocx functions? edit: attached file is google translated EN version Delphi Hook Library.rar
-
packet encryption
by jamsb123- 10 replies
- 7.1k views
how i can find the recv decrypted packets? i tried to follow them but not helped.
-
get 3'th byte of eax?
by FastLife- 9 replies
- 6.3k views
hello tuts4you, i tried to solve a keygenme and faced a problem. the return value of a function is in example: eax == 00001234. now i want the 3'th byte of it, which is 12. so does anybody know a way to do this? have a nice day!
-
question for memory write
by Gegul- 1 reply
- 12.8k views
i want to write value on running process memory so need value dynamic memory region that value is keep changing memory address value on windows xp how can i find that ? maybe that memory address is created like malloc function thanks all
-
Skinning GUI with C/C++ [Win32 API]
by Zekim- 6 replies
- 7.3k views
Hello There ! There is very less information about skinning GUI with C/C++ on Internet I wasted (Invested) my pretty good time to find solutions of many problems I'm posting a complete solution of this ... I am sure it'll helpful to those guys who learn by example like me I have attached source code in both MSVC and Dev-Cpp of skin examples I couldn't do that without some persons help so greetings all of them whose tutorial learnt me all this Enjoy ! .. Skin-Examples.7z Greetings To ... Shiva, Pongs, Blue Indian, CybotX, Cyclops, Korupt, Mikgfi
-
- 6 replies
- 4.6k views
I have been fooling around with scripting for years and have that down pat. I started doing C++ and C# in 2010/2011, but really got into coding for about a year now. I write almost exclusively in C++ and LUA. To expand on this, just to help pinpoint what I might be missing, I have completed my education in C++ at university, first year. Got through what would be about an entire introduction level text book to C++ in a semester, next semester went onto boolean algebra and basic data structures. In that semester I also started to get really familiar, already had used them just getting a lot of work in with them, with pointers, classes, and structs. My question is this:…
-
Help learning programming a web bot
by NeWOT- 9 replies
- 4.9k views
Removed!
-
Delphi Glyphs
by NOP- 2 replies
- 6.5k views
Does anybody have the standard Delphi Glyphs on their computer that they could upload for me? They are normally saved in c:\Program Files\Common Files\Borland Shared\Images\GlyFX or C:\Program Files\Common Files\CodeGear Shared\Images\GlyFX For some reason the GlyFX folder is not included in the 2 different Delphi versions I have Thanks in advance for anyone that can help
-
Help needed / changing keyboard layout in a game
by Starship Orion- 6 replies
- 5.1k views
Hi! I'm new to reverse engineering and I'd like to get some help with my project with the game Heroes of Might and Magic 3. I'm trying to change the keyboard layout in the game to finnish language. I've opened the exe file of the game in OllyDBG 2.01 and Resource Hacker, but so far I haven't been able to find much anything helpful. I started the project by looking for any function calls that would be related to keyboard layout. However there are no cases of user32.LoadKeyboardLayout or user32.activatekeyboardlayout which I think would be the right functions to call. Yet the game always uses the US keyboard layout, even the Polish version of the game. There…
-
Help C programming
by NeWOT- 2 replies
- 13.1k views
1
-
x32 and x64 device drivers
by Pancake- 9 replies
- 7.1k views
Hello. I got few small technical problems - im developing my kernel mode driver, everything runs fine on x32 system but it doesnt work on x64. How can i make my driver compatible with x64 systems? Second question, is im lookin for flink offset in process list structure for windows 8 (i mean the list you use to hide process by modifying flink and blink in this system list). I digged the internet and found all working offsets for xp and higher up to win 7 but cant get win 8. Thanx in advance
-
patchLib v3 Release
by atom0s- 8 replies
- 6.1k views
No longer sharing this project on this site.
-
- 1 follower
- 8 replies
- 12.6k views
Hi,all We all know "pushad" command in x32 mode. Like these: Do you know how to use these code in x64 mode ? Now I know these code needed to be modified. Like But how to convert "pushfd" command ? This make me confused. :( Some examples will be nice if possible.
-
simple math issue
by FastLife- 3 replies
- 8.3k views
hello tuts4you, i got a simple math question. when a lenght of a string divisible by 36, the counter should be added by 10.So i got this working but i bet there is a better/cleaner way to do this. this is what i got and it works, but could someone help me to improve my function? invoke lstrlen, Addr szString .if eax <= 36 push 10 .elseif eax <= 72 ; + 36 push 20 ; + 10 .elseif eax <= 108 ; + 36 push 30 ; + 10 etc.. .elseif eax<= 144 push 40 .elseif eax <= 180 push 50 .elseif eax <= 216 push 60 .elseif eax <= 252 push 70 .else push 80 .endif
-
Exit process without api
by FastLife- 16 replies
- 8k views
Is there a way to shutdown/exit a process/application without using a api and without hardcoding?
-
- 1 reply
- 4.2k views
Hi,I would know if create a web proxy like Charles Proxy or Fiddler (but a minimal version) sounds possible. I want to know what was requested, then answer to these requests by what I want (the real page or a fake response)Thanks in advance and sorry for the incovenience
-
PureBasic Keyfilemaker Template
by tim619- 2 replies
- 6.8k views
File Name: PureBasic Keyfilemaker Template File Submitter: tim619 File Submitted: 13 Jul 2014 File Category: Source Code This is a Keygen and Keyfilemaker written in PureBasic 5, similar to this one. Unfortunaly the cpu usage is quite high and I had to make dirty hacks for not resetting gadget strings. This time I didn't use transparency and fading but again chiptune support After keygeneration the keyfile should be exported using "Export Key" and it will be saved in same dir as the keygen is. Hopefully it will help someone Click here to download this file
-
[.NET] Components For Working With PE & MetaData
by IllusiveMan- 1 reply
- 4.1k views
Hello, Language, i am using: C#. So, i need your advise. I am looking for a components (Libraries or Classes) for working with PE and MetaData Tables. Some examples: 1) MetadataReader by CodeCracker. ( Cool class, but i am looking for a complex solutions ) 2) Mono.Cecil edited for ConfuserEx. ( There is class, which helps to work with metadata tables, but it's so hard to understand how to use it ). I would like to make an analogue of PE_Tools or something for my own use and studying. Thank in advance. Sorry for my bad English.
-
may you help me?thanks all.
by diskgetor- 1 reply
- 19.1k views
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + (7E80 ^ 0xA35C) / 99 + ((unsigned int)((unsigned __int64)(818089009i64 * AB50) >> 32) >> 31) + ((unsigned int)((unsigned __int64)(156180629i64 * (D075 ^ 0x701B)) >> 32) >> 31); D075 = D075; v22 = (unsigned __int8)(D075 ^ 0x1B); v23 = (v22 + 1) * ((unsigned __int8)(2929 ^ 0x79) + 211) + ((v22 + 1) * ((unsigned int)(unsigned __int8)(2929 ^ 0x79) + 211) >> 16) + (((unsigned __int16)(((unsigned __int16)(D075 ^ 7E80) ^ 0xD347) + ((D075 ^ 7E80 ^ 0xD347u) >&g…
-
hello guys,please help me this loop................
by diskgetor- 3 replies
- 4.3k views
8C7A:canstants now you known this: char [10]={7A D0 07 71 DE 82 5F 40 AA 13} next is the cacl: 78787879 imul 7A=00000039:696969AA //get char[0] 39 SAR 3=7 7A ADD 7=81 8C7A ADD 81=8CFB 78787879 imul 8CFB=00004258:00004AA3 4258 SAR 3=084B 084B ADD 8CFB=9546 78787879 imul D0=00000061:E1E1E250 //get char[1] 61 SAR 3=0C D0 ADD 0C=DC 9546 ADD DC=9622 78787879 imul 9622=000046A6:9696E612 46A6 SAR 3=08D4 08D4 ADD 9622=9EF6//D0 78787879 imul 07=00000003:4B4B4B4F //get char[2] 3 SAR 3=0 07 ADD 0=07 9EF6 ADD 7=9EFD 78787879 imul 9EFD=00004AD1:6969BD95 4AD1 SAR 3=095A 095A ADD 9EFD=A857//07 78787879 imul 71=00000035:2D2D2D69 //get char[3] 35 SAR 3=6 71 ADD 6=…