Programming and Coding
Programming and coding tips, help and solutions...
1,882 topics in this forum
-
Nice About Effect 2
by FudoWarez- 1 follower
- 12 replies
- 9.1k views
skull.zip
-
The Advanced Batch AI
by jahwi- 3 replies
- 5.3k views
hello guys! I've have been looking for a batch ai/chatbot for the last year. so I thought to myself: why not just make one? so I went ahead and did. please leave reviews,ratings comments etc. get it here:https://sourceforge.net/projects/meri/
-
- 1 follower
- 2 replies
- 4.5k views
I want to write a plugin that can set command line. The executable have some dynamic arguments ,so i decided to write a plugin. I browsed some apis from ollydbg plugin help, couldnot find .Or i missed something . Any hint , so appreciated . Thanks.
-
- 1 reply
- 3.9k views
I'm using plain C to call these functions of GDI+ ,and response WM_PAINT with this function ,the last call of GdipDrawImage returns 0, it means success ,but on my picture control I can not find my picture on it.source.txt
-
CaptureStackbackTrace
by Pancake- 1 reply
- 4.9k views
Hello. I was wondering how can i create a call stack to view the return addresses. So i found that fancy function, it worked prefrectly in one .exe, showing call stack up to ntdll but it does not show full backtrace when called from a hook. Sometimes it prints 1, 2, 3 addresses but i know how that program is working and the call stack is much bigger. The "Call Stack" function from olly shows exactly same not full result but i can view stack and see which address is a return address, but i cant dereference values from the stack to see if its a return address because i would crash on access vioaltion very quickly. How can i make it work properly?
-
PureBasic keygen template by [SST]
by Bilbardfayim- 0 replies
- 10.9k views
File Name: PureBasic keygen template by [sST] File Submitter: Bilbardfayim File Submitted: 11 Apr 2015 File Category: Source Code PureBasic keygen template by [sST] Click here to download this file
-
Creating and exe from zero
by Pancake- 4 replies
- 4.6k views
Hello everyone. Today i bumped onto one very crazy idea I am trying to preapre an exe file from scratch, not using any compiler, just create hex file. Im goin to create PE header, fill all values, create sections, directories, imports etc. So here comes my question. How much work has to be done to make windows loader successfully load the exe, map it and run the code inside? Is it only about creating the header with all its dependiences, or somehing more?
-
VirtualBox Hardened Loader x64 (kernelmode.info)
by Insid3Code- 2 replies
- 7.6k views
VirtualBox Hardened VM detection mitigation loader x64 from kernelmode.info.Step by step guide for VirtualBox Hardened (4.3.14+) VM detection mitigation configuring. http://www.kernelmode.info/forum/viewtopic.php?f=11&t=3478'>>http://www.kernelmode.info/forum/viewtopic.php?f=11&t=3478 https://github.com/hfiref0x/VBoxHardenedLoader'>>https://github.com/hfiref0x/VBoxHardenedLoader
-
[dotNet] How to patch the dngEXE?
by despy- 1 reply
- 5.2k views
exe is protected by dng3.68,unpack it using DNGuardHVMUnpacker, and it work well,but when i patch and save it in reflector,it show error. Round Trip with ILDASM ILASM fails: error -- Failed to open managed resource file '' error -- Failed to open managed resource file ' ' Output file contains errors ...... Now i want to add some codes in the exe ,what can i do ?
-
[Delphi Source]
by root- 2 replies
- 6.3k views
Hello, I decided to share some projects are difficult to find in Delphi.I hope it will be useful and that someone can improve - DbgThr - Fast and simple Debug in delphi - PE_LIB - library for manipulating File format PE32 / 64 - DAForge_IA - Artificial Intelligence in Delphi There is also another project(Private repository at this Moment), code generator based on nasm. It works very well but still is the first release and is to be tested and then I would also implement the syntax MASM. https://bitbucket.org/Pigreco6 Hello soon sorry for my bad english
-
[Q?][.NET] ByteArray in .bmp image
by Meteor2142- 2 replies
- 5.1k views
/del pls Full here bellow Sorry tuts is lagging
-
[C/C++] UACME (kernelmode.info)
by Insid3Code- 0 replies
- 8k views
Defeating Windows User Account Control from kernelmode.info.Defeating Windows User Account Control by abusing built-in Windows AutoElevate backdoor. http://www.kernelmode.info/forum/viewtopic.php?f=11&t=3643 https://github.com/hfiref0x/UACME
-
OllyDbg Plugin in C#
by li0nsar3c00l- 4 replies
- 5.2k views
Did anybody ever created plugins for ollydbg in c#? is it worth it to try, as im more experiecned with c#, or should i rather do it in c/c++? or is it easier for simple tasks to use scripts? if this is not the proper section, please move the thread
-
- 1 follower
- 12 replies
- 7.1k views
Source code in OOP C++ for the Windows PE. In the next post I will post the source code of the functions, in this one I will post the header of it. Note that the most of the functions are coded by steve10120, but I modified/added some things to make it work for x64 files too and for windows 7+. PE.h #ifndef PEH #define PEH #include <vcl.h> class PE_management { protected: HANDLE hOpenFile; HANDLE hOpenFileMapping; public: HANDLE hFile; PIMAGE_DOS_HEADER pIDH; PIMAGE_NT_HEADERS32 pINH; PIMAGE_SECTION_HEADER pIFS; PIMAGE_SECTION_HEADER sectionHeaderOfOEP; PIMAGE_IMPORT_DESCRIPTOR pIID; String fileName; unsigned int sizeOf…
-
[C#] Make Encoder from Decoder
by Meteor2142- 2 replies
- 4.6k views
Hello guys, Have a some problem, need to make an encoder code from decoder code. It's possible? Here it is: private static byte[] ByteArray = new byte[] { 198, 155, 210, 181, 170, 198, 80, 247, 165, 134, 249, 215, 18, 204, 212, 8, 71, 122, 144, 187, 164, 225, 159, 57 }; private static string Decoder(string MOLmemeNWSgZXjzu, byte[] VEuOxZqRKRisj) { byte[] array = Convert.FromBase64String(MOLmemeNWSgZXjzu); for (int i = 0; i < array.Length; i++) { for (int j = 0; j < VEuOxZqRKRisj.Length; j++) { array[i] ^= VEuOxZqRKRisj[j]; } } string text = ""; byte[] array2 = array; for (int k = 0; k < array2.Length; k++) { byte …
-
text selection color of an edit control
by qwsa21- 1 reply
- 6.6k views
hi all, i want to change the default text selection color of an edit control (which is blue) to another color. how can i do this? any help will be appreciated.
-
[C/C++ ] VMDE (kernelmode.info)
by Insid3Code- 0 replies
- 7.5k views
Virtual Machines Detection Enhanced from kernelmode.info Yes, as you've already noticed! I appreciate all projects coded by EP_X0FF https://github.com/hfiref0x/VMDE
-
More MetaBalls
by PeterPunk- 2 replies
- 11.2k views
Hi everyone, I was boring and I've coded a .dll in MASM32 to use the famous MetaBall effect on any language: MetaBalls.zip Also includes the source code and an example for some languages (MASM32, Delphi 7, VB6 and VB .NET). Maybe will be useful for someone. Regards. PS: Sorry for my English
-
DSEFix x64 (kernelmode.info)
by Insid3Code- 0 replies
- 18.1k views
Windows x64 Driver Signature Enforcement Overrider from kernelmode.info. Updated Source and binary: https://github.com/hfiref0x/DSEFix
-
My program will not run on win8
by Pancake- 4 replies
- 5.8k views
Hello. I created simple tray application wih options of showing a messagebox and launching one .exe in same folder as the tray app. But for some reason it shows some blue bar on windows8 saying it will not allow to open or smth like that... What may be the reason?
-
Bitwise rotation with C/C++ and Delphi
by ghandi- 10 replies
- 12.4k views
Hi all, I posted this topic over on ARTeam forum and thought that maybe someone might find this useful here also? If not, disregard this post and forget you ever read it, . I recently tried converting some of my assembler code across to C and Delphi and it required bitwise rotations. Although the C compiler will optimise in rotations, natively they are not accessible that i am aware of. To use them you either have to use intrinsics or inline assembler, the other option is to define macros which use bitwise SHL/SHR and and OR to achieve a psuedo-rotation. I'm not sure whether or not the Delphi 7 compiler will place rotations in, but i know you can use inline assembler or…
-
Using RtlAdjustPrivilege to detect debugger.
by Insid3Code- 8 replies
- 9k views
A basic way using RtlAdjustPrivilege to detect the debugger (OllyDbg and IDA demo 6.6)As usually but not (enabled by default) for all debugger, the Debugger must acquiring debug privilege to work with its complete capacity. The snippet is simple and probably already used but I write it as simple as possible to get a clear ASM code inside the debugger.RtlAdjustPrivilege: Enables or disables a privilege from the calling thread or process. NTSTATUS RtlAdjustPrivilege ( ULONG Privilege, //[In] Privilege index to change. BOOLEAN Enable, //[In] If TRUE, then enable the privilege otherwise disable. BOOLEAN CurrentThread, //[In] If TRUE, then enable in…
-
- 2 replies
- 4.3k views
how can i get ECC RSA DES DSA MD5 BASE64 C OR C++ SOUCE?
-
Remove space
by javed- 0 replies
- 7.3k views
Remove space from a string in php without using any php function.
-
reduce exe size in visual studio
by Dickyb0b- 4 replies
- 8.3k views
i cant seem to reduce my exe size that was built with VS 2010, ive followed many guides and everytime my file is 51kb and all it does is MessageBoxA I have followed this guide from start to finish http://linkyzer0.com/papers/Decrease_WinCppProject_FileSize.pdf what am i doing wrong ?