Programming and Coding
Programming and coding tips, help and solutions...
1,876 topics in this forum
-
fix swift opcode (help)
by zELzELE- 2 followers
- 2 replies
- 4.5k views
how to remove or fix opcode please help image:
-
Bassmod as LIB 1 2
by Ufo-Pu55y- 1 follower
- 40 replies
- 42.6k views
lo, anybody ever had 'luck' converting Bassmod.DLL into a .LIB ? For static linking I mean... I guess lotsa ppl would love to have it. I've tried the tool 'Dll To Lib' on it, but somehow it fails bigtime.. all generated symbols are crap.. useless. (and yes I've unpacked it before ofc ^^) I don't know about any other tool. Somebody out there having experience in this topic? cheers
-
- 1 follower
- 2 replies
- 4.9k views
I would like to have a guide to start with the development of UEFI drivers Any help will already be very useful
-
Iphone IOS hello world
by JMC31337- 1 follower
- 0 replies
- 4.8k views
IOS 14.2 (using 13.3. SDK) having ran around for a few hours trying to figure out how to write some code on the iPhone I decided to quickly sum up a few snafus I ran into on various message boards Yes theos works and if you follow the theos install tutorial on their dev site there shouldn't be problems with theos except your Makefile should contain if using the below referenced private iOS 13 SDK (I had unzipped the SDK-master into theos sdks folder then unzipped the iPhone13.3.sdk) so the below sysroot line is different than what you may decide to do ARCH = arm64 SDKVERSION = 13.3 SYSROOT = /var/opt/theos/sdks/iOS13-Private-SDK-master/sdks/iPhoneOS13.3…
-
Can you convert batch to disassembler?
by schoolboy- 1 follower
- 3 replies
- 4.9k views
Hello, Can you convert this cmd code to Disassembly code, thank you. taskkill /IM notepad.exe /F
-
Hidden VNC(or Hidden RDP) Programming
by Vladymir- 1 follower
- 1 reply
- 8.8k views
I am developing hidden vnc on windows in c++ language. I am going to connect vnc keyborad and mouse event to controlled pc. But I don't know how to send key and mouse event to certain vnc server thread. I have searched in google for a long time, but I don't have usefull information. I only know that I have to use below windows api. CreateDesktop OpenInputDesktop SwitchDesktop I'll appreciate any help.
-
- 1 follower
- 2 replies
- 6k views
i am working on a confuserex mod and i'm a beginner so i doubt it's very good but i am trying to find a way to make my mod create a custom class while obfuscating called "Program.cs", i'm clueless on how to do this and appreciate any help. thanks
-
Another Simple Loader(Delphi SRC)
by h4sh3m- 1 follower
- 18 replies
- 9.9k views
Hi In this method we're using dlls as loader, Some system files(I'm just tested dll files) can load from outside of system directory so we can use them to patch files !! Most "Delphi" and "Dotnet applications" loads "version.dll" by default so we can use this file as loader for them ! Best Regards, h4sh3m version.rar
-
About clr string in the memory qustion
by despy3- 1 follower
- 1 reply
- 4.5k views
c# code like this: string str = "MyString"; What is the meaning of each area in memory as below?
-
- 1 follower
- 4 replies
- 5.3k views
I'm trying to write my own PE reader and would like to get the size of an export function. But this information is not provided in the export directory of the PE header. How can I get the size? This must be possible somehow, for exampled dbghelp knows where the function starts and ends. I have the same problem when trying to parse a PDB file. I can get the actual offset of the public symbol but not its size. Any ideas?
-
libv2 1.5 for MASM
by r0ger- 2 followers
- 4 replies
- 9k views
Hi there. I am looking for another v2m player that uses this kind of version of libv2 , because the V2M player from MagicH uses only libv2 1.0 (which he made it work for vista and later) and i saw some assembly source code that uses libv2 1.5 on a THETA NFO viewer 2.2 , so i'm gonna post a part of the code where the libv2 is initiated and loaded in asm : include ./Music/libv2simple.inc includelib ./Music/libv2simple.lib externdef c theTune:byte externdef c theTune2:byte include winmm.inc includelib winmm.lib DlgProc : ; libv2 music start invoke V2MInit,offset theTune,FUNC(GetForegroundWindow) invoke V2MPlay; anyone has this library for asm p…
-
Some questions about writing packer with C++
by m0rfl1ng- 1 follower
- 1 reply
- 5.5k views
Hi guys , it is been a while that i am try to understand how PE files . I did some research and experiment that i will write about them here , but lots of thing does not make sense to me. So C++ codes are already too much complicate to start with , so i decided to compile a pure 64bit assembly code using visual studio 2019 , the code is as follow : .data MorphByte db 78 Morphling db 68 Death db 44 .code main proc xor rax, rax mov rbx, 456 mov rcx, 666 mov rax, 123 add rax, rbx xor rbx, rbx lea rax, [rcx] mov al, byte ptr [MorphByte] ret main endp end now , after compiling the above code we will get two files one .exe and one .obj , since my code is …
-
Needing a Very Small Help in C# PLEASE !!
by BlackHat- 1 follower
- 4 replies
- 6.4k views
I have One textBox and a Button1 Code of btnStart if (this.txtBox.Text.Length == 0) { Interaction.MsgBox("Please Insert Your Data", MsgBoxStyle.OkOnly, null); return; } this.thflag = false; this.th2flag = false; this.btnstart.Enabled = false; this.btnstop.Enabled = true; this.th = new Thread(new ThreadStart(this.BlackHat)); this.th.IsBackground = true; this.th.Start(); this.Timer1.Enabled = true; This is my code of this.BlackHat checked { using (WebClient webClient = new WebClient()) { foreach (string text in this.txtBox.Lines) { if (!string.IsNullOrEmpty(text)) { string address = "https://XXXXXXX/" + text + "X…
-
Mapping DLL that uses OpenSSL
by risky- 2 followers
- 3 replies
- 6.2k views
I'm currently building software using ASIO as a network library and its SSL counterpart. It has worked perfectly, but I've recently tried to initialize the context in a manually mapped DLL and SSL_CTX_new is failing when ASIO initializes it's OpenSSL components. The odd thing is that no error can be resolved from SSL_CTX_new's failure, it simply returns error code 0. So, I dug into the code and I believe I've dumbed down the failure to OPENSSL_init_crypto. The only problem I can think of is TLS (Thread Local Storage). I've handled TLS manually, and TLS seems to be fixed, but the problem persists. Note the code works perfectly when the DLL is loaded via LoadLibra…
-
Writing a .NET Profiler (dev.to)
by sirp- 1 follower
- 0 replies
- 5.1k views
https://dev.to/gabbersepp/create-a-net-profiler-with-the-profiling-api-start-of-an-unexpected-journey-198n https://github.com/gabbersepp/dev.to-posts/tree/master/blog-posts/net-internals call-c-from-cpp debugging-profiler digging-into-callbacks how-does-profiler-work how-to-debug-with-windbg marshal-example net-bitness profiler-attach/code/DevToNetProfiler profiler-fn-enter-arguments profiler-fn-enter-leave-x64 profiler-fn-enter-leave stacktrace-linenumber/code/DevToNetProfiler write-net-profiler
-
- 1 follower
- 7 replies
- 5.6k views
im looking for an APIwindows that get a character of keyboard immediate? means the character get immedaitely after pressing its key on keyboard
-
[.Net] How to hook Microsoft.VisualBasic.CompilerServices.Conversions.ToString(long Value) ?
by Sh4DoVV- 1 follower
- 1 reply
- 5.3k views
Hi I have an executable .net application and how to hook Microsoft.VisualBasic.CompilerServices.Conversions.ToString(long Value) for logging Value ? thanks
-
- 1 follower
- 0 replies
- 5.6k views
Run Constructor even Activator.CreateInstance gives Exception Assembly asm = Assembly.LoadFrom(@"X:\xxxasd.exe"); Type kd = asm.GetType("keydata"); // Create an instance of the type object classInstance = Activator.CreateInstance(keydata, null); ----------> This always throws errorr ..tried different approaches i.e with other parameters and Bindingflags ... There is also System.Runtime.CompilerServices.RuntimeHelpers.RunClassConstructor(RuntimeTypeHandle type), which additionally guarantees that the static constructor is only called once, regardless how many times the method is called: Type myClass = typeof(MyClass); System.Runtime.CompilerS…
-
- 1 follower
- 0 replies
- 5k views
Create Instance without calling constructor FormatterServices.GetUninitializedObject() will create an instance without calling a constructor. I found this class by using Reflector and digging through some of the core .Net serialization classes. using System; using System.Reflection; using System.Runtime.Serialization; namespace NoConstructorThingy { class Program { static void Main() { // does not call ctor var myClass = (MyClass)FormatterServices.GetUninitializedObject(typeof(MyClass)); Console.WriteLine(myClass.One); // writes "0", constructor not called Console.WriteLine(myClass.T…
-
How to make Context Menu for my tools ??
by AbdElrahman- 1 follower
- 5 replies
- 4.7k views
HI i want to make Context Menu for my tools like New Context Menu in picture or 7-zip or Winrar i readed a topic for that and i know i must use c++ to make it but i can't do it any one has tutorial to do it or explain how THX
-
Offset Patcher problem c++
by robocopip- 7 replies
- 8.3k views
Hello guys. Your forum is great and very helpful! Thanks for your work! I am a beginner in reverse engineering with some basic knowledge of C++. I wanted to create a small offset patch in c++. I found a simple template on how to do that. I tried it first with a simple NOP patching and it worked. After I edited it to patch 8 offsets I ended up with a not working-Send report to Microsoft application. I uploaded the edited source code. I don't know much about it, and why that happened. . . Is this the proper way to do it? Is there another better template? I know that there exist some cool patch engines but I would like to experiment and building my own. Thanks in advance! …
-
Unlinker help
by JustAGuy- 1 reply
- 5.7k views
There is an interesting tool called Unlinker It includes an example lzo.obj file. However I have no idea how to and use .obj file in VS. I added obj into additional dependencies, which works fine and project compiles but how can I call its functions?
-
A self-contained C# game in 8 kB
by sirp- 0 replies
- 4.3k views
A self-contained C# game in 8 kB (nice article) This repo is a complement to my article on building an 8 kB self-contained game in C#. By self-contained I mean this 8 kB C# game binary doesn't need a .NET runtime to work. See the article on how that's done. The project files and scripts in this repo build the same game (Snake clone) in several different configurations, each with a different size of the output. https://github.com/MichalStrehovsky/SeeSharpSnake
-
- 8 replies
- 6.2k views
Hi, everybody. I'm using KOL - Key Objects Library. Need a dialog to select multiple folders. This option works for text files. procedure click button2(dummy: pointer;Slender: Control; var mouse:TMouseEventData); var s: String; begin Dialog: = NewOpenSaveDialog ( " , FileFullPath ('Project1.exe'), [ OSFileMustExist, OSHideReadonly, OSAllowMultiSelect, OSOverwritePrompt, OSPathMustExist ] ); dialog.Filter:= '*.txt/*.txt|all/*.*'; Dialogue.OpenDialog: = true; if Dialog.Execute then / / else exit; s:=Dialog.Filename; k:=-1; while s < > " do begin inc(k); a[k]:=Trim…
-
- 2 replies
- 5k views
Hello. I'm using KOL - Key Objects Library. How to implement in the program, there is a Toolbar with buttons and a form with a paintbox. Is it possible to do the following when pressing the button on the icon appeared the cursor as in DragAndDrop and after the picture was drawn on the paintbox. That is, it is not necessarily true DragandDrop. It is possible to confine only to changing the type of cursor. https://yadi.sk/i/6ovsPsZyIGxvGQ among those represented in KOL_ansi.inc there is none. const IDC_ARROW = MakeIntResource (32512); IDC_IBEAM = MakeIntResource (32513); IDC_WAIT = MakeIntResource (32514); IDC_CROSS = MakeIntResource (32515); …