Programming and Coding
Programming and coding tips, help and solutions...
1,902 topics in this forum
-
Hello I'm working on XUI ONE server (linux based server), XUI Panel has option to set default http header. I have searched on google unfortunately there is very few documents on ffmpeg headers command information. so i want to override http headers restrict stream request allow only certain domain name , i have applied the below code but its not working , my main purpose is to allow only my website access the url streams and block all others requests. what would be the best example of restricting streams using http headers by ffmpeg command? ffmpeg -headers "Access-Control-Allow-Credentials: true" -headers 'Access-Control-Allow-Methods…
-
- 0 replies
- 4.1k views
- 2 followers
-
-
I came into a problem where i need to grab BeingDebugged BYTE from PEB https://learn.microsoft.com/en-us/windows/win32/api/winternl/ns-winternl-peb I got the address of PEB from x64 system PEB* _PEB = (PEB*)(__readgsqword(0x60)); to get the address of BeingDebugged flag i need something like (PBYTE)_PEB + 0x002 but i am not sure what typecasting exactly i have to use , give me your lights.
-
- 2 replies
- 2.4k views
- 1 follower
-
-
#pragma once namespace CppCLR_WinformsProject1 { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; /// <summary> /// Summary for Form1 /// </summary> public ref class Form1 : public System::Windows::Forms::Form { public: Form1(void) { InitializeComponent(); // //TODO: Add the constructor code here // } protected: /// <summary> /// Clean up any resources being us…
-
- 0 replies
- 2.4k views
- 1 follower
-
-
I am trying to load x86 dll in address space of x64 process. Most of resources i found online talk about calling x64 bit dll in x86 process.
-
- 2 replies
- 3.1k views
- 1 follower
-
-
Hi. I looking for something... ComboBox event when selected item text was changed and finalized??? - After selected value changed! Visual C++ 6.0
-
-
- 2 replies
- 2.6k views
- 2 followers
-
-
Hi guys, so I was just coding around a little and testing my stuff in OllyDBG and was wondering why I could not find the CreateProcess function in my intermodular calls list. Then I was checking out my IAT of my app and there could also not found the CreateProcess function and just found a address to AcLayers address which seems to be on top before calling the function. Just wanna know why and of course why? Is it just a on top protection function or something? Is it needed to use it by Windows and is there a way to prevent / disable that and is there also a function list what APIs are affected from those OnTop AcLayers PRE calls? Why that injection? Below my IAT pa…
-
-
- 1 reply
- 3.2k views
- 2 followers
-
-
File Name: SST C++ Keygen Template File Submitter: Bilbardfayim File Submitted: 12 Apr 2015 File Category: Source Code C++ Keygen Template by [sST] ........--------------------------........ Click here to download this file
-
Source code private message to me. filehash.exe
-
- 1 reply
- 2.5k views
- 2 followers
-
-
Where is MethodDesc::Call ??? Framework 4.0 https://www.oreilly.com/library/view/shared-source-cli/059600351X/ch06s02.html Is not inside method.cpp, in fact I can't find there any method starting with "Call" Alternatives? Any other simple way of executing .NET methods at low level?
-
-
- 5 replies
- 3.6k views
- 1 follower
-
-
C# (.NET) how to change the call stack trace of a running method?? Without throwing exceptions! Is this even possible?
-
- 3 replies
- 2.7k views
- 1 follower
-
-
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
- 3k 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
- 6.1k 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.8k 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.9k 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.7k 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.5k 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
- 4.1k 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.8k views
- 1 follower
-
-
hi i am looking for source code dll injector patcher in memory
-
- 1 reply
- 3.1k 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
- 5.2k views
- 2 followers
-