Programming and Coding
Programming and coding tips, help and solutions...
1,876 topics in this forum
-
Prof. DrAcULA's Installer
by profdracula- 4 replies
- 3.2k views
Hi, sometime ago, I got inspired by the Installer of the game: VietCong II. So, I have coded a custom installer for apps. Its not complete yet- some more features that I would add are; Region-able main window and buttons, masked about window, masked images as progressbar, support for installation using multiple CDs etc. The release I am posting here, is just a preview: its not fully functional yet. One more thing; I have coded a ShellTreeView like TShellTreeView of Delphi, but it might be buggy sometimes. Your suggestions, bug-reports and feedback are of immense importance. So plz let me know of your ideas and findings. Prof. DrAcULA }:-) pd_Installer.rar
-
storing data in a new pe section
by StreamLine- 5 replies
- 3.1k views
as the title says, i am creating a new section and storing data in it, i would like to know the best way to store a large amount of data and read it back, perfer delphi, but any lang would be good.
-
[Share] VB animation Text
by agoes_doubleb- 6 replies
- 3.6k views
This is some animation text with vb... VERSION 5.00 Begin VB.Form Form1 Caption = "Form1" ClientHeight = 3570 ClientLeft = 60 ClientTop = 450 ClientWidth = 7500 LinkTopic = "Form1" ScaleHeight = 3570 ScaleWidth = 7500 StartUpPosition = 3 'Windows Default Begin VB.Timer TmrAnim8 Interval = 50 Left = 6660 Top = 3780 End Begin VB.Timer TmrAnim7 Interval = 20 Left = 6210 Top = 3780 End Begin VB.Timer TmrAnim6 Interval = 50 Left = 5760 Top = 3780 End Begin VB.Timer TmrAnim5 Interval = 100 Left = 5310 Top = …
-
A Good Anti Loader Trick
by Hadi.Delphi- 12 replies
- 5.5k views
this is a anti loader trick writen in delphi. executing code in randomly place ( not a specific address ) only for fun !!! AntiLoader.rar
-
- 23 replies
- 9.9k views
Pre-compiled header, and add conio.h and windows.h if anyone needs describition on what's going on or have a question, then post here and i will be glad to help out. // ConsoleInjector.cpp : Defines the entry point for the console application. //#include "stdafx.h"//DWORD dwProcessId;void inject(LPCWSTR procname, LPCSTR dll_path) { SIZE_T BytesWritten; HANDLE hSnap; PROCESSENTRY32 lppe; lppe.dwSize = sizeof(lppe); hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); Process32First(hSnap, &lppe); do { if( wcscmp( lppe.szExeFile, procname ) == 0 ) { printf("Found target!\n"); break; } } while( Process32Next(hSnap, &lppe) ); HANDLE hP…
-
Removing AccessDeniedAce
by urbanyoung- 1 reply
- 2.8k views
Hey, I'm making a program atm which needs to open other processes, however there are a few processes that I've come across that use AddAccessDeniedAce and SetSecurityInfo to prevent me from opening the process. I can't use SetSecurityInfo to remove this attribute because that requires a handle to the process, which I cannot obtain due the the ACE. I can reverse this easily, but I'm trying to code it into a program that will work on all apps. Can someone give me some hints on how to open a process that's using AddAccessDeniedAce? I've been googling for quite a while but couldn't find anything useful. I don't want to do a system wide hook (at startup) because that would aff…
-
Container File
by starzboy- 6 replies
- 3.1k views
Hello Today we see a lot of applications which use the container file. How does this container file work ? We have many files and some folders with files in them, if i need to create a container to store them, how does it work ? Does it have a fixed header whihc has the file names and sizes ? Please shed some light on this
-
- 12 replies
- 3.3k views
Sorry don't know the technical term. How do you register a dll to be loaded into every process? (Also how do you get the list of all the dlls loaded into every process?) On a side note, is this documentation on writing a driver still good (it is 4-5 years old)? Is there something I should know/worry about when making a driver?
-
- 3 replies
- 2.7k views
Hi, How a other window/apps title change? I need delphi7 code. Please help me.
-
Nice/easy Instruction Reference set for noobs
by Guest LaYmAn- 2 replies
- 3.3k views
I found this resource to this handy online Instruction Set reference a little while back and it has come in quite handy for me to reference whilst learning the trade. I thought I'd share with other starters that may need this quick reference to understand whats being done. just click the Letter to the instruction you are after and follow... I hope someone gets a good use from it: http://faydoc.tripod.com/cpu
-
Make program in Radasm
by tagor- 17 replies
- 9.2k views
Please give me tutorial with make program for Radasm???Please???? And give me source code for Radasm to!!!
-
help in writing ida plugins
by abhijit mohanta- 0 replies
- 2.6k views
I have written simple hellpoworld ida plugin using devcpp on windows ida plugin dev kit.I have put the .plw file into plugins path in ida . plugin sdk version 5.2 ida version 5.2 but I dont see the plugin coming in ida edit-->plugins options.I tried to configure plugins.cfg file still no results.I want to know whats wrong.I have even tried to place some readymade plugins in the plugin folder I see some of them orking while others not.Can anyone suggest on this. plugin source code #include <ida.hpp> #include <idp.hpp> #include <loader.hpp> int IDAP_init(void) { } void IDAP_term(void) { return; } void IDAP_run(int arg) { msg("hello world"); return…
-
[Delphi] HoundPE
by steve10120- 15 replies
- 6.1k views
HoundPE.rar
-
[MASM32] A wsprintf prototype replacement
by bigboss-62- 0 replies
- 3.3k views
Hello guys... The wsprintf function is very cool, but it destroy most of registers. The most important in this function is the conversion, and the only needed return value is the size of formatted buffer. I have written the following prototype to include some functions of wsprintf, and the only modified value in return was eax, which contains the size of buffer. Also included is a test program. Currently supports: - %s (string) - %??d (decimal signed, up to 16 chars displayed) - %??X (haxadecimal, up to 16 chars displayed) - %??u (decimal, up to 16 chars displayed). The working method is like the original wsprintf function... Any comments / ideas / tests are welcome... La…
-
- 9 replies
- 15.9k views
Hi, I want to write a little program, which should only consists out of two or three specific functions as i want then to analyse it with ollydbg and see if i can figure it out, how the asm code actually works. Unfortunately i have some problems, maybe someone can help me. I am using Microsoft Visual C++ 2008 Express Edition as my IDE, but the code seems already a little 'overwhelmed' when i wrote a program which only prints hello world. The basic source looks like this: using namespace std;int _tmain(int argc, _TCHAR* argv[]) { cout << "Hello World\n"; system("pause"); return 0; }When i try to analyse this with ollydbg, i get the following message when opening: …
-
[Help]C++ Dumping a dll's memory
by urbanyoung- 4 replies
- 3.5k views
Hey, I'm trying to dump a dll in memory using c++, the actual dumping is fine but I'm looking for help in fixing he virtual addresses. At the moment I am dumping the virtual addresses but need to change them to the offset (i think that's right). I know I'm not being very clear, so I'll post some code. 01E5102A A1 1444E901 MOV EAX,DWORD PTR DS:[1E94414]Of course because I'm not changing the virtual address code, the dump will crash when run (because it will try to mov 1E94414 into eax, which is an invalid address). I'd really appreciate some help, I looked around the forum but couldn't find anything that helped.
-
cppInjector v.1.1
by 0xFF- 15 replies
- 6.6k views
Features: Process Information. Module Unloader. Process Watcher. Fixes: No more memory leaks. http://www.speedyshare.com/716737345.html
-
(Asm) How to get 2nd string from given string?
by busclock- 1 reply
- 4.2k views
I need to modify some source code. I need to get a 2nd string from given string which contains 2 string. The length of 1st string is always changed time to time. For example: NuQW4CSS0Qpa8TnZor in hex: 01 01 01 01 01 01 01 01 1C 01 01 01 01 01 08 4E 75 51 57 34 43 53 53 01 01 01 01 01 08 30 51 70 61 38 54 6E 5Athe 1st string NuQW4CSS (4E 75 51 57 34 43 53 53) it begins with 1 byte in front (08) as the length of the string the 2nd string 0Qpa8TnZ (30 51 70 61 38 54 6E 5A) it also begins with 1 byte in front (08) as the length of the string The problem in the source code i got is, it gets the 2nd string with fixed method, always get it from the 29th byte, which is actually …
-
- 0 replies
- 2.9k views
I'm using VC6.0 In Debug Output Window, there're lots of "no matching symbolic information found" e.g. How to disable these message without installing debug symbols? Thanks for helping.
-
Chiptunes in Visual Basic
by Bleed- 6 replies
- 4.7k views
Hi, I was just playing around in visual basic 6 and some idea from nowhere came. The idea was to add music to my projects. I was thinking of using chiptunes (xm or mod) but I don't know how. Please do help me if this is possible. Thanks.
-
Need source
by _ak47_- 2 replies
- 3.1k views
hello everyone I just make this post beacuase I looK for any cryptersuorce made in VB If anybody have one please shared it for me thanks
-
C# Pe packer
by 0ron- 4 replies
- 4.7k views
Does anyone have source for a C# exe or dll packer?
-
Ripping code delphi
by nosconf- 7 replies
- 3.7k views
Is it possible to rip asm code and use it in delphi? Many thanks NoScONf
-
how to draw MessageBox buttons
by alaphate- 4 replies
- 3.2k views
I found a article about how to change the button text of MessageBox. http://www.codeguru.com/cpp/w-p/win32/mess...icle.php/c10873 Could Any buddy tell me how to draw MessageBox buttons? Such as IDOK button IDCANCEL button I know how to make these buttons to OWNERDRAW buttons in CBTProc hook procedure. i.e. SendMessage(hMB,BM_SETSTYLE,BS_OWNERDRAW,TRUE); However, I don't figure out how to draw these buttons. Thanks for help.
-
HVLPlay : A AHX/HVL playback library in C
by mudlord- 13 replies
- 4.5k views
Hello, Here's some stuff I have been mucking around with since WinAHX has a tendency to play some AHX tunes completely wrong. This lib is based on Xeron/IRIS's official code, straight from the official replayer and Winamp plugin sources. CPU usage of the library is very small too (around 0-4% on a E2200 dual core). The lib is public domain and is built with MSVC6. Included is the source code as well as a usage example. hvlplay.zip