Programming and Coding
Programming and coding tips, help and solutions...
1,894 topics in this forum
-
hi does anyone know best solution for creating a patcher please i have found a way to patch out themida and winlicense server contacts to check if a license key is valid so i have patched out a way to bypass this in about 6 programs that i protected by the newest versions available
-
- 2 replies
- 2.8k views
- 1 follower
-
-
Hello my friends ..... What is the name of the function that depends on to know the host for the process of converting it to a local server?
-
- 1 reply
- 6k views
- 1 follower
-
-
Hey guys, as you might know we have one day left to live, because the 21'th the world will be gone... So I would like to say thanks to all my friends in the rce scene. Farewel !Hahaha no just kidding ! This is the real story: Christmas Present (Pass = HAPPYxMAS) http://199.201.127.158/index.php?dir=&file=Silences.Programmings.Tour.-.MASM32.%28General.Edition%29.zip'>>http://199.201.127.158/index.php?dir=&file=Silences.Programmings.Tour.-.MASM32.%28General.Edition%29.zip
-
https://vimeo.com/759543579 https://twitter.com/w2k3builder magnet:?xt=urn:btih:d89a3d7a0857cc315bb494b83bc77e6acc21517b&dn=w2k3builderv1_final.ova&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce
-
Hello Im looking for very simple dotnet obfuscator,everything that it should do is renaming classes/methods/strings/etc using dnlib Nothing more I want to change it to fit my ideas, but projects like confuserex are too complicated for me bc i never worked with dotnet obfuscators before
-
Dear all I want to compile one vc++ project vc 2010. But it does no compile. I have attached the file. Thanks solution-1 check.zip
-
The console is allocated at new thread ( not main ) , it's possible to hide it without access to source code?
-
- 1 reply
- 2.6k views
- 1 follower
-
-
using ModuleDefMD module = ModuleDefMD.Load(Resources.Build); foreach (TypeDef type in module.GetTypes()) { foreach (FieldDef field in type.Fields) { string[] MyTexts = new string[] { ".data", ".key" }; field. ? = MyTexts; //For byte array this replace //byte[] fake = new byte[] { 0x6B, 0x61, 0x6F }; //field.InitialValue = fake; } } How to replace?
-
- 0 replies
- 2.7k views
- 1 follower
-
-
The original of what should come out in the end. public static string[] ss = new string[] { "$DATA" // This line is replaced by the new }; I want to get this result public static string[] ss = new string[] { ".data", ".txt", ".sfc", ".crypt" }; I use a textBox and enter data in the following format: . .data .txt .sfc .crypt I have a public dictionary where I put data public static Dictionary<string, string> DicPairs = new Dictionary<string, string> Adding data to the dictionary from a TextBox string res = string.Join(", ", Enumerable.Select(textBox1.Text.Split()), s => $"\"{s}\""); // $"\"{s}\"" - To have b…
-
-
- 3 replies
- 3.4k views
- 1 follower
-
-
screw the stubborn cube. now i am struggling with the tv static with vertical scroller that i have also ripped from REV's keygen. do you guys see any problem in that? i cannot seem to figure it out and i need to hurry up a little bcs i need to make a Keygen inc patch template before the other version comes out so i might need it a little bad X__X TXTScroll+Static_ReVeNgE.rar
-
-
- 6 replies
- 13.4k views
- 2 followers
-
-
Hi guys, i've ripped some another rotating cube animation from one of FFF's cracks, and im actually struggling creating DC's for the black background without the cube overdrawing on the background. i have even tried to clean that up with SetBkMode (TRANSPARENT) on the dword_40B7B8 variable,and still no use even with PatBlt. if someone is interested i will send the crack file (unpacked) + its idb file from IDA pro. thanks a bunch!
-
-
- 19 replies
- 3.9k views
- 3 followers
-
-
Hello friends. I have deployed a new repo. There are WinAPI C Keygen templates which plays XM music. And they are 64bit. You can get the keygen template sources and relevant data from: https://github.com/blue-devil/SCT-KeygenTemplates Waiting for bugs 😬 Btw, i got the library from libxmp. But libxmp did not give us a simple player API. So i have extended the library. It is also included the repo above. libxmp-lite4reversers.zip SCT-x64-GUI-KeygenTemplate.zip
-
Hi everyone. I started kernel mode programming just a few days ago and am having some problems. I am trying to get disk drives serial numbers from kernel mode. Here is my code so far: NTSTATUS Status; GUID PhysicalMedia; PVOID wmiObject = NULL; PVOID DataBlockObject = NULL; ULONG BufferSize; PhysicalMedia.Data1 = 0xBF253431; PhysicalMedia.Data2 = 0x1E4D; PhysicalMedia.Data3 = 0x4F57; PhysicalMedia.Data4[0] = 0x00; PhysicalMedia.Data4[1] = 0xE7; PhysicalMedia.Data4[2] = 0x64; PhysicalMedia.Data4[3] = 0xB2; PhysicalMedia.Data4[4] = 0xCA; PhysicalMedia.Data4[5] = 0xCC; PhysicalMedia.Data4[6] = 0x80; PhysicalMedia.Data4[7] = 0x1E; Status = IoWMIOpenBloc…
-
- 0 replies
- 2.6k views
- 1 follower
-
-
hi i am looking for source code dll injector patcher in memory
-
- 1 reply
- 2.9k views
- 1 follower
-
-
See the following code, Way 1 can work on both x86 & x64, but Way 2 can only work on x86. Why does Way 2 fail? How to fix Way 2? using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace HookTest { unsafe class Program { public static string MyReadLine() => "test"; [DllImport("kernel32")] public static extern bool VirtualProtect(IntPtr address, int size, int newProtect, out int oldProtect); static void Main() { var oldMethod = typeof(Console).GetMethod("ReadLine"); var newMethod = typeof(Program).GetMethod("MyReadLine"); RuntimeH…
-
-
- 14 replies
- 4.8k views
- 2 followers
-
-
cPaintDC.GetTextExtent LineHeight computation very bogus: alternatives??? LOGFONT lf; memset(&lf, 0, sizeof(lf)); HGDIOBJ hFont = ::GetStockObject(OEM_FIXED_FONT); ::GetObject(hFont, sizeof(lf), &lf); lf.lfHeight = 100; lf.lfPitchAndFamily = FIXED_PITCH; CFont font; font.CreatePointFontIndirect(&lf); pOldFont = cMemDC.SelectObject(&font); // Get size information int cWidth; cPaintDC.GetCharWidth('0', '0', &cWidth); CSize cSize = cPaintDC.GetTextExtent("0", 1); int nLineHeight = cSize.cy; ySizeChar = nLineHeight; xSizeChar = cWidth; …
-
-
- 11 replies
- 3.1k views
- 1 follower
-
-
Hi everybody, I joined this group to learn more about web development. I am familiar with Java, C, HTML, and am actively learning CSS and Python. And I'm facing some issue! Can somebody help me? After deploying and hosting my website, I upgraded my pip version. Then I installed the pypaystack package. When I try to push to Heroku, I get the error shown below. In the development stage, the project is running smoothly. Collecting pypaystack==1.24 remote: Downloading pypaystack-1.24.tar.gz (5.4 kB) remote: Preparing metadata (setup.py): started remote: Preparing metadata (setup.py): finished with status 'error' remote: error: subpro…
-
I'm reading this article about the function of OS system and I'd want to know the operating system of the host on which my Java program is executing programmatically (for example: I would like to be able to load different properties based on whether I am on a Windows or Unix platform). What is the most reliable and safest approach to achieve this?
-
- 1 reply
- 2.7k views
- 1 follower
-
-
https://docs.microsoft.com/en-us/windows/apps/design/style/segoe-ui-symbol-font https://github.com/developerss/UWPIconforXamarin For Use xmlns:uwpfonticon="clr-namespace:UWPFontsXamarine" Glyph="{x:Static uwpfonticon:UWPFontsXamarine.'ChoostYourFont'}"
-
Hello All, I am new in this community and I working on a freelance C++ project and I am confused sieve of eratosthenes coding problem. The problem statement is Given a number n, print all primes smaller than or equal to n. It is also given that n is a small number. I am trying to solve this problem by Efficient Approach A prime number is a number that is divisible by only two numbers – themselves and 1 Example: Input: n =10 Output: 2 3 5 7 I have checked sieve of eratosthenes coding problem on google and I have found this problem post. I am sharing one code example. Can anyone explain me, how sieve of eratosthenes program works? or explain with another exa…
-
-
- 2 replies
- 3.5k views
- 2 followers
-
-
hi guys recently ripped a rotating dots animation from penawar.brontok.1.4.3.full.incl.keygen-tsrh , but the thing is it crashes 6 or more times before it loads correctly. but in the meatime i think i found some buggy thing on this one on StartAddress function: loc_4025B3: cmp [ebp+var_10], 0 jb loc_4025FB push 2Ch ; int push dword_407AD4 ; float push 2 ; int push offset dword_407290 ; int call sub_401EB0 push 2Ch ; int push dword_407AE0 ; float push 1 ; int push offset dword_407290 ; int call sub_401EB0 fld dword_407AE0 fadd flt_407AFC fstp dword_407AE0 lea eax, dword_407290 jmp $+2 ;<------------- i've even replac…
-
-
- 8 replies
- 3.4k views
- 4 followers
-
-
hi guys , i was patching an app called Macrorit disk partiton expert. Then i wanted to test the patcher by using the patch engine coded by Jowy, inserted patch offsets and the patterns, got the CRC32 number from dup2, and when i tried to patch, my patcher got same crc32 error even though it was the correct one : .data MSGTitle db "PERYFERiAH`z generic patch",0 PatchAborted db "aborted.",0 CRCFailed db "sorry, wrong version or already cracked.",13 db "patch aborted .",0 SizeFailed db "wrong file size.",13 db "make sure the app has the correct version",13,13 db "patch aborted .",0 CannotAccess db "seems that ur program is running, you must close it.",0 Patch…
-
-
- 10 replies
- 7.3k views
- 2 followers
-
-
I've wrote small loader for an old crackme. This crackme searches for Olly window class and when not found my loader tries to emulate it. For this I'm creating simple window. Main window is dialog box. On dialog icon is shown normally but not on created window. I've tried many things. Using two different icons for each window, using some default icon from os, different window styles but without luck. I'm attaching full source and target. If You have some other ideas please share. hmx0101_secret1.zip
-
-
- 4 replies
- 3.4k views
- 2 followers
-
-
Hi all I'm trying to convert this small c snippet to delphi 7 code but without success for now. If any delphi coder could help I'll be gratefull. HANDLE hthread; hthread = CreateThread(0, 0, &animate, hWnd, 0, 0) DWORD WINAPI animate(HWND hWnd) { unsigned char wincaption[32]; unsigned int i; SendMessageA(hWnd, WM_GETTEXT, 32, (LPARAM)wincaption); do { for(i=0;i<20;i++) { if (((wincaption[i] >= 0x41) && (wincaption[i] <= 0x5A)) || ((wincaption[i] >= 0x61) && (wincaption[i] <= 0x7A))) wincaption[i] ^= 0x20; SendMessageA(hWnd, WM_SETTEXT, 0, (LPARAM)wincaption); Sleep(500); } } while (1); } And my delp…
-
I was wondering whether, I could do this: 1. Create a DLL with a method to register a callback function written in Python. 2. The DLL calls SetWindowsHookEx internally, registers a proxy function in the DLL itself which calls the Python callback function. 3. Load the DLL in Python with ctypes and call the callback registration method it exports. I briefly tried this but SetWindowsHookEx fails for global hooks. I see no reason for it to fail. Also according to the documentation I pass NULL for the hMod arg of it which is used when the hook procedure is inside the DLL itself. Maybe I think SetWindowsHookEx will need another injector process which is not …
-
- 6 replies
- 6k views
- 2 followers
-