Programming and Coding
Programming and coding tips, help and solutions...
1,890 topics in this forum
-
SBVA Patch Src [2012]
by 0xFF- 1 reply
- 4.4k views
This is hardcoded for version 3.3.6.5 (Build 3026 beta), it's not hard to make it work universally. i don't need this anymore, so i'm just dumping it here. Link: http://www.videoaccelerator.com/ SBVA Patch Src.rar
-
- 4 replies
- 5.1k views
Hi guys/girls, I'm really new to Olly plugin writing, so I'm here to beg for your help. I'm writing a very simple plugin for Olly 1.10 that deals with bytes in CPU dump. I'm using Readmemory and Writememory functions and all works fine ... but modified bytes don't look like modified and I can't invoke undo action on them I'll explain better. When you do some action on CPU dump like "Binary | Fill With xxx" operations you end up with "red" modified bytes in the dump, bytes you can even restore back to their initial value. That's the effect I'd like to reproduce. Any pointer, hint or suggestion is appreciated (I'll understand if you'll give me a mouthful ) . Thanks i…
-
- 2 replies
- 4k views
I have already tried to study this problem and gather the most information I could but there still seems to be a problem. I have created a new winasm lib project and I did something like this: .586 .mmx .model flat, stdcall option casemap:none include static.inc .data .data? .const .code start: FxProc proc var:DWORD mov eax, var imul eax, 0123h Ret FxProc EndP end start the code of static.inc is as follows: .const FxProc proto :DWORD then I finally created a static.h wich I included in my main.c using #include "static.h" it is written as follows: __stdcall FxProc(unsigned int Var); after invoking : FxProc(123); my code will not even compile: 1>test1.obj : error LN…
-
DSP in masm
by hibernator- 1 reply
- 8.1k views
Hi all, I am currently on a project which needs to compare the input signal from external source with a reference signal and give the frequency of Input signal .What would be the best and effecient way to do this ? Any help from you guys would mean a lot to me P.S. Implementing in MASM Regards.
-
- 6 replies
- 6.9k views
Hello Tuts4you, I'm working on a new project and for this tool I combined a few of my older tools in one tool with a 'simple' TabControl. Everything with drawing the window above the tabcontrol works fine, but I experienced quite some problems when I introduced the "OnTop" checkbox that makes the window topmost (obvious lol) First it works fine, but when I for example start Olly the background isn't redrawn. (See screenshot). I tried some code from a keygen template I made, but this only makes the window flicker. (http://forum.tuts4you.com/topic/30054-solved-c-winapi-transparent-editbox/#entry141998) I attached the source code of tabs.h, this handles all the tabs b…
-
dmex (.net class library) 1 2
by Ufo-Pu55y- 35 replies
- 33.4k views
First some infos: http://www.joachim-bauch.de/tutorials/load...ry.html/en/view I've tried to convert it into a C# class. Here's an example exe, to see what the class might be used for: Keygen.rar The example maps the native ufmod.dll from the resources into memory and then calls some of its functions to play a chiptune (also from resources). This way you don't have to save the dll to hard-disk before using it. And here's the full package: DMex.rar It contains: -the .net class library -a help file -2 example projects (vb.net and c#) As requested.. here's the source of the DMex class only: class_DMex_source.7z Have phun and post feedback, if it's useful some…
-
RemoteContextInfo
by mrexodia- 3 replies
- 5k views
Hello everyone, Lately iLovro and me were working on nanomites and he came up with the idea to create a tool that recognizes the context struct automatically. Well, here the program is (source code included). Demo video with feature explaination: http://www.mediafire.com/?dk0ld5gtnkau2dd Download: http://tpodt.net16.net/files/RemoteContextInfo01_src.rar Greetings, Mr. eXoDia RemoteContextInfo01_src.rar RemoteContextInfo_demo.rar
-
remove please
by DeadAndGone- 10 replies
- 7.9k views
removed
-
c++ DirectX 9 Code
by cmhost- 0 replies
- 12.2k views
Hello i have the following code i have problems with: // esp_dll.h #include <windows.h> #include "d3dx9.h" #include <d3d9.h> #pragma once using namespace System; namespace esp_dll { public ref class Class1 { void SetModelColor(LPDIRECT3DDEVICE9 pDevice, float r, float g, float b, float a, float glowr, float glowg, float glowb, float glowa) { float lightValues[4] = {r, g, b, a}; float glowValues[4] = {glowr, glowg, glowb, glowa}; pDevice->SetPixelShaderConstantF(1, lightValues, 1); pDevice->SetPixelShaderConstantF(3, glowValues, 1); } }; } Its not working when i try to call SetPixelShaderConstan…
-
read char from int string
by novanakal- 1 reply
- 12k views
hii all... iam new here,. i still learn for c++ i have some question. how bout this, i have 1 structure { i32 Index; i32 Total_Character; str[len=Total_Character] "Text"; }how to make some cpp header for that structure i make one { int Index; int Total_Character; char Text[Total_Character]; }; but still error when compiling thanks before
-
CreateDialog() inside OllyDbg Plugin
by akrutsinger- 3 replies
- 5.1k views
I'm wanting to create a settings dialog inside of my OllyDbg 2.xx plugin, but I'm stuck at the very first part; creating the dialog... This is the code I'm using right now (and have successfully used in many other win32 projects before) hSettings = CreateDialog(hollyinst, MAKEINTRESOURCE(IDD_SETTINGS), hwollymain, (DLGPROC)SettingsDialogProc); if(hSettings != NULL){ ShowWindow(hSettings, SW_SHOW); }else{ MessageBox(hwollymain, L"CreateDialog returned NULL", L"OllyID", MB_OK | MB_ICONINFORMATION); } With this hSettings always returns NULL. What am I missing?
-
Detours Problem Linking
by mjones- 6 replies
- 6.6k views
i'm having trouble linking a simple dll to do function detouring in windows. everything is pretty straightforward but i haven't been able to resolve these linking errors: test.obj : error LNK2005: "void * (__stdcall* pCreateFileW)(wchar_t const *,unsigned long,unsigned long,struct _SECURITY_ATTRIBUTES *,unsigned long,unsigned long,void *)" (?pCreateFileW@@3P6GPAXPB_WKKPAU_SECURITY_ATTRIBUTES@@KKPAX@ZA) already defined in main.obj Z:\test\Debug\test.dll : fatal error LNK1169: one or more multiply defined symbols foundhere is what i've done thus far. 1. installing detours - downloaded detours express 3.0 from http://research.micr...ojects/detours/ - added VC10\bin to %PATH…
-
- 9 replies
- 7.4k views
I built a simple dialog using c#. There are two textbox controls. One is readonly. Question is how to set the readonly property to false given only the released exe file. I used reshacker to open the exe, however no dialog resource displayed. Thank you for helping. Attchment is the exe application. hackForm.zip
-
- 1 follower
- 4 replies
- 4.3k views
weather watcher live (vb 5/6 native code) offline software is running, dew point and temperature values ​​I need to use the memory as a continuous variable to another program( c++ or masm,radasm ),I need to write a program like this, but how I can write. Can you help me in this subject.I'm sorry for my english is bad, I hope you understood my question.
-
Russia Square And Swap Mine Game Source Code
by wxfengyun- 5 replies
- 4.7k views
I wrote two games in masm32 by myself, one is the Russia Square, the other is swap mine. I think writing game is not very difficult, and these games' source code will help you coming into the game world. Please read the source code by yourself if you like these game. Projects.zip
-
Looking for Python RE framework
by 8bec- 5 replies
- 6.2k views
Hi together, I'm looking for a framework I can use with python, beeing able to disassemble, debug, analyze, etc. I've already tried TitanEngine by reversinglabs, but had a lot of errors and found no help. So I think it's kinda dead. So is there a framework to use with python, that is still improved and with a active community? Thanks, 8bec
-
- 1 reply
- 5.8k views
more info And Ref: http://gdtr.wordpres...izer-by-oreans/ Sources: https://github.com/pakt/decv Typical decompilation output: http://pastebin.com/etzbaUhB Regards
-
Need Help Asm in Delphi
by X-88- 9 replies
- 5.8k views
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls; type TForm1 = class(TForm) E1: TEdit; E2: TEdit; Button1: TButton; RG: TRadioGroup; Label1: TLabel; Label2: TLabel; E3: TEdit; Label3: TLabel; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); var Inp1 , Inp2, Res : Integer; begin Inp1 := StrToInt(E1.Text); Inp2 := StrToInt(E2.Text); case RG.ItemIndex of 0 : begin asm Mov…
-
- 1 follower
- 13 replies
- 17.2k views
this is a tool with source(vc++ 2010) for deobfuscate smartassembly last version http://www.mediafire.com/?m6mlrdj3xp56af7 This originally posted Here I can not deobfuscate any file and get error please test if this can deobfuscate.
-
Calculate Memory
by ragdog- 2 replies
- 16.6k views
Hi @All I coding a new toy this scan a Memory from Process I use GetSystemInfo and VirtualQueryEx to calc the Memory Now is the question how can i calc the Primary Memory and Entire Memory example Winhex? Regards, ragdog
-
[SOLVED] [C++, WinApi] Transparent EditBox
by mrexodia- 8 replies
- 10.5k views
Hey everyone, Today I've wasted quite a lot of hours with trying to make a transparent edit box, which operates properly. I managed to create this transparent background, but when I typ is stuff or remove stuff it goes all bad (on windows xp only) I use this code to make the edit transparent: case WM_CTLCOLOREDIT: { RECT rect_edit= {0}; RECT rect_window= {0}; GetWindowRect(hwndDlg, &rect_window); //Window placement GetWindowRect((HWND)lParam, &rect_edit); //Control placement SetBkMode((HDC) wParam, TRANSPARENT); //Transparent control SetTextColor((HDC) wParam, RGB(255, 255, 255)); //White text //Set the brush origin (relative placement) SetBrushOrg…
-
Licensing Software
by Lek_Plepi- 0 replies
- 7.9k views
Hello Does anyone know how can i license this form? Project1.rar
-
Code Snippet to convert
by yano65bis- 11 replies
- 5.4k views
-
- 4 replies
- 4.9k views
Hi. I was working on a timer program recently, and I stored the entire contents of the source code on my flashdisk. Unfortunately, While i was using another 'foreign" computer, the antivirus or something nuked my source code silently, and it was only after copying several large files on/off the disk that I noticed my source was missing. I tried data recovery (Recuva/etc) but none of them even detected the files. So all I have left is the release version binary I tried TMG Ripper studio with no success at getting the ripped code to work, but I think that there should be some way of getting at least some working code back ..... The program was made in MASM32 with u…
-
maybe you can help me
by X-88- 18 replies
- 8.1k views
does anyone have a tutorial for making protection a software verification using php, vbscript or java script?. e.g: matching serial online. The same thing is there in this forum? maybe should I know?