Programming and Coding
Programming and coding tips, help and solutions...
1,876 topics in this forum
-
TMG fade bitmap problem
by r0ger- 2 followers
- 2 replies
- 4.4k views
Hi all i was working on a crack template now and adding the fade bitmaps effect in the dialog. the thing is when i try to modify its width (adding greater than 122h), the template crashes. but when i normalize it to 122h (which was one of TMG's old bitmap's width value), the effect works without problems but the bmp isn't really complete. xor ebx,ebx invoke LoadBitmap,hInstance,201 mov dword_401EB0, eax mov LogoHeight, 7Ah jmp short loc_401AFD …
-
- 2 followers
- 8 replies
- 6.1k views
Hi folks, I hope you're doing well I made a simple dll injector in .net which appears to work just fine, tested using megadumper, when I dump process I find the injected dll in the folder called Dumps. this is the code that I used : Public Function inject() As Integer Dim targetProcess As Process For Each pro As Process In Process.GetProcesses If pro.MainWindowTitle = "test" Then targetProcess = pro Exit For End If Next Dim procHandle As IntPtr = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_QUERY_INFORMATION Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE Or PROCESS_VM_READ,…
-
2 quick questions about C
by amateur- 2 followers
- 6 replies
- 6k views
Hi. I was solving a keyfile me today, and most of the keymaker i made was with inline assembly, because straight in C i was getting wrong values. For now i have 2 questions. I'm not on my laptop right now so i'll try to remember as much close as possible the values 1) Is possible to achieve that with the (right) way, like i have it below? : DWORD eax; eax = 0xF96A872D; /* I want the result: eax = 0xF96A78D2. Even if i "fixed" little the data types/macros i will get either eax: 0xFFFF78D2 or eax: 0x000078D2 */ LOWORD(eax) = ~(WORD)eax; 2) As my comment says i'm getting ebx = 0x18de781b and not ebx = 0xf8de781b. How ca…
-
- 2 followers
- 35 replies
- 15.9k views
Hi guys, short question.I'am using a tool called "Everything" from voidtools to find files on my HDD etc.I see that this tool is using a simple edit control where you can enter text.If I now wanna get selected the whole edit control then I just need to click once on the outline of that edit control and I got all selected in edit control.Thats pretty cool and now I wanna know how to manage that = what kind of "Edit Control Notification Messages" I have to catch? https://docs.microsoft.com/en-us/windows/win32/controls/bumper-edit-control-reference-notifications Don't find any who does it.Do you know how?Below a example image... ....AND.... ...so if …
-
Delete Resource using UpdateResource ???
by CodeExplorer- 6 replies
- 8.6k views
Delete Resource using UpdateResource ??? reference: https://binaryworld.net/main/CodeDetail.aspx?CodeId=3778 Already tried: bool deleteExisting = IsDlgButtonChecked(handle, IDC_CHECK22)==0; HANDLE hUpdate = BeginUpdateResource(SecondFilename, deleteExisting); int result1 = UpdateResource(hUpdate, // update resource handle res_types2[i], // resource type MAKEINTRESOURCE(res_names2[i]), // resource id 0, // neutral language NULL, // ptr to resource info - NULL FOR DELETING 0); // size of resource info - 0 for deleting it always return int lasterror = GetLastError(); lasterror = 87 ER…
-
- 1 follower
- 0 replies
- 6.8k views
Hi there! I have some questions about the library, if anyone knows help with advice 😃 1) Is it possible to replace the icon of the build file of the program through the library? 2) Is it possible to replace the properties of the build file in Properties.AssemblyInfo.cs (AssemblyTitle, AssemblyVersion e.t.c) ?? 3) How do I replace (int)integer values? 4) Can I change the .NetFramework version using dnlib? Regarding the library itself, the information is not very enough to understand it well, I will be grateful for any information!
-
- 1 follower
- 2 replies
- 5k views
From an old topic: https://forum.tuts4you.com/topic/42934-c-dnlib-how-do-i-change-const-string/?tab=comments#comment-208456 Source Code Stub file: namespace DlibStub { using System; public static class ConstTester { public const string MYCONST = "1111"; public const string DNTEST = "2222"; public static void GetResult() { Console.WriteLine($"Result: {MYCONST}"); Console.WriteLine($"Result: {DNTEST}"); } } } IL Code: field: System.String DlibStub.ConstTester::DNTEST field: System.String DlibStub.ConstTester::MYCONST Instruction: IL_0000: ldstr "Dnlib Tester" Instruction: IL_000…
-
- 2 followers
- 24 replies
- 5.4k views
Hi guys, so yesterday I got an access violation exception in my app by calling the function StrStrA and it seems that the memory block I wanted to check for a string was gone already = AV crash.Somehow strange because I did check before whether a address is present to check = Yes but somehow the block must be freed by anything. .if MEMBLOCK != FALSE invoke StrStr,MEMBLOCK,chr$('Sting2Check') ; <---- AV inside ... .endif Ok, in this case I did just check whether in the variable MEMBLOCK is anything = normaly the memblock address.Now, the address was still present in variable but not present for real.Now I would like what kind of function/s I can use to ve…
-
Mobile flash tool written in .NET
by iceberg- 2 followers
- 4 replies
- 4.8k views
Hello guys , what are the prerequisites to code a mobile flash tool from scratch like (odin) for example, Should I learn about GSM ? I tried to search for any open source flash tool written in .Net but I didn't find anything till now. If you have any resources it will be great (VB.NET / C#) thank you.
-
- 1 follower
- 1 reply
- 3.9k views
Hi guys, I'am using those C functions above to read / write data to file and have that problem with the Macintosh CR (see notepate status bar).In normal case I write text fields like this... db "Some Info", 13,10 db "Here too", 13,10 db "Look not!",0 ....just 3 test lins with one line break between.Now if I do use the fwrite function with it then it does write the LBs in double LBs like this... db "Some Info", 13,10,13,10 db "Here too", 13,10,13,10 db "Look not!",0 ....and not in Unix style.How can I tell the function using Unix style instead of Macintosh? greetz
-
How to show a progressbar as tray icon?
by LCF-AT- 1 follower
- 19 replies
- 8.2k views
Hi guys, does anyone know a example / way how to set a progressbar into tray as icon to show the progress status?So you know like Taskmanager does it. Thank you
-
Listbox & Color questions
by LCF-AT- 2 followers
- 21 replies
- 6k views
Hi guys, just have a quick question about Listbox control and using some colors into them.Normaly I dont use OD for ListBox control but in this case it seems I have to use any.My goal is it just to color the background and specific text entrys I do send into the LB.All in all just 3 colors - Background, - TextColor Blue for normal logs / state (all ok) & TextColor Red for Error logs.So in normal case I color back / text at WM_CTLCOLORLISTBOX message but it seems I can not color the text entrys seperated... Info 1 <-- Blue Info 2 <-- Blue ErrorX <-- Red ....I get all blue or red only = Bad.Otherwise I dont wanna make any large Own…
-
Delphi to VB6 code conversion
by tarequl.hassan- 1 follower
- 14 replies
- 5.8k views
Hi Can anyone convert this delphi code to BV6? procedure TKeyGen.Button1Click(Sender: TObject); const Const_Array : array[0..7] of Char = ('e','n','c','r','y','w','e','b'); Var StrName, Part2, Code : string; i, AL, Last_Char : Integer; begin Code := '' ; StrName := Edit1.Text; If StrName = '' then Edit2.Text := 'Enter your Name !!!' else Begin For i := 0 to length(StrName) - 1 do begin AL := ((Ord(StrName[i + 1]) + (i) + Length(StrName) + Ord(Const_Array[(I and 80000007)])) mod 10) + 48; Code := Char (AL) + Code ; end; Last_Char := ((Length(StrName) + 112) mod 10) + 48; Edit2.Text := …
-
How to read from CLI till its finished 1 2
by LCF-AT- 1 follower
- 34 replies
- 14.3k views
Hi guys, I have again a small question about piping a CLI output to my buffer.So I just wanna start a CLI app with paramters and reading the output (content I also see in CMD window) so long till its finished.So the only problem I have so far is how to wait till its finished.Lets say the CLI app needs a while (a minute etc).My question is what function/s I need to use for that?I see I cant use WaitForSingleObject with INFINITE paramter so this dosent work because the CLI app dosent exit itself so long I didnt had reading the bytes.If I just read the bytes using PeekNamedPipe / ReadFile function then I dont get the whole content = it quits to early and the CLI app is …
-
How to generate random values?
by LCF-AT- 2 followers
- 12 replies
- 5.1k views
Hi again, short question.I wanna create random values (0 till -1h) and found 2 C++ function called rand and srand. https://www.cplusplus.com/reference/cstdlib/rand/ https://www.cplusplus.com/reference/cstdlib/srand/ So if I check it right then I have to call first srand with any value X as paramter and then calling rand right after.If I do that to call srand first with same value like 10h then I get a results of 5Ah back from rand function.So is it just to prevent creating same random values?Should I call it like this below each time if I need to create a random value? .data holder dd FALSE invoke crt_srand, holder invoke crt_rand inc holder …
-
How to create splitter?
by LCF-AT- 1 follower
- 0 replies
- 4.4k views
Hi guys, I was trying to check out those splitter control (pseudo control) stuff and don't find any easy examples for that.I didn't worked with splitter/s before and I would give it a try to know how to use and implement it if I should need it.So I am not really sure anymore about that splitter stuff.Is it a real control class I can use with CreateWindowEx or is it just a pseudo control created by few controls (EDIT etc) using the WS_EX_CLIENTEDGE style?!?In MASM package I can find a example source (masm32\examples\exampl05\splitter\splitter.asm) and the code does just that to create 2 EDITS (no splitter control) and working with that.This seems to be really tricky s…
-
- 1 follower
- 5 replies
- 5.7k views
public const string Test = "{ConstText}"; And Found Const using (var module = ModuleDefMD.Load(Resources.Stub)) { foreach (var type in module.GetTypes().Where(t => t.HasMethods)) { IList<FieldDef> fieldstr = type.Fields; for (int i = 0; i < fieldstr.Count; i++) { // fieldstr[i].Name - This found const string } } How to change ?
-
Patch file example
by Teerayoot- 1 follower
- 4 replies
- 4.7k views
// ConsoleApplication1.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> #include <stdio.h> #include <Windows.h> //Returns the last Win32 error, in string format. Returns an empty string if there is no error. std::string GetLastErrorAsString() { //Get the error message ID, if any. DWORD errorMessageID = ::GetLastError(); if (errorMessageID == 0) { return std::string(); //No error message has been recorded } LPSTR messageBuffer = nullptr; //Ask Win32 to give us the string version of that message ID. //The parameters we pass in, tell Win32 to create the buffer that holds the message f…
-
- 1 follower
- 6 replies
- 6k views
Can you ülease help me with some code snippet or example on how to change a byte[] with dnlib or other libs ? thanks
-
- 2 followers
- 0 replies
- 4.2k views
using var module = ModuleDefMD.Load(Properties.Resources.Bin); // How to change this icon ? module.Write("Save_NewFile.exe");
-
LZMA packer / depacker code
by mudlord- 1 follower
- 1 reply
- 14.8k views
Figured I drop this here. Its the packer and decompressor I use for my private build of my exe packer. Feel free to do what you want with it. lzma_decenc.rar
-
Crazy Word 0.1 by x0man[tPORt]
by r0ger- 2 followers
- 5 replies
- 4.8k views
hi there guys , does anyone have this effect that is actually missing ? recently came across this link where it had the download links to these kind of effects (which are already dead) , and i really want to add this effect for my next templates .
-
Python to Assembly code
by tarequl.hassan- 13 replies
- 5.6k views
Hi All What could be the code in Assembly for the below Python code? Result =str(random.randint(800000,899999)) This is just to get random number of 6 digit between 800000 to 899999. Thanks
-
.py to exe conversion
by tarequl.hassan- 1 follower
- 1 reply
- 4.9k views
Hi Is there any easy way to convert .py to exe? Thanks
-
How to understand an executable file?
by Jason Long- 3 followers
- 2 replies
- 5.1k views
Hello, How can I learn how an executable file work and when open a file in a reverse engineering or debugging tool, understand it? Thank you.