I have a function named Msg that's imported from a dll named tier0.dll. I can DllImport this just fine, but the command only works when the dll is attached to another process which can complete the Msg command. Using CreateRemoteThread, it is possible that I could call Msg using C# while still letting it have access to the variables of the attached process it needs to complete the command? Thanks!
Running DllImport commands from CreateRemoteThread
715 Views Asked by Gbps At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in PINVOKE
- C# and C++ interop
- Problems when P/Invoking CertCreateSelfSignCertificate
- PInvoke vs CLI wrapper, C++ functionality to C#
- Get the method name that was passed through a lambda expression?
- Explain what problems could have this function (if any)
- Is dllexport needed in the source C dll to be able to be used in c# with [DllImport]?
- C# USB driver from C++: SetupDiGetDeviceInterfaceDetail
- C# USB driver from C++
- how to check Local Security Policy rights as non-admin
- How do I change a visual theme programatically in Windows 8/8.1 by P/Invoking?
- Check if P/Invoke was successful
- Trouble calling SystemParametersInfo
- Return array of pointers from c++ to c#
- Positioning of a menu item image (hbmpItem of a MENUITEMINFO) in a context menu
- How to pass a String to const char * from VB.NET to a DLL programmed in C++
Related Questions in DLLIMPORT
- StackOverflowException while calling native (DllImport) function
- C# Unable to load DLL When In Subdirectory
- Translating FORTRAN DLLIMPORT to C++ / C#
- Is dllexport needed in the source C dll to be able to be used in c# with [DllImport]?
- Accessing GetConsoleHistoryInfo() from managed code
- Calling C DLL function from C# - parameter struct too large or complex to marshal
- F# Passing Nulls to Unmanaged Imported DLL
- AccessViolationException when calling a C++ function from VB.NET
- How to Load and Use Structs and Functions from a C DLL in Java?
- calling c++ dll functions and struct from c#
- How can I find the location of DLLs included as resources in an outlook add-in for use with DllImport
- how to pass array of objects from c# to c++ using Dllimport?
- Unable to load DLL dotnet core
- Load Image from pointer in CUDA with export of dll
- C++ dll loading failed with incorrect format exception when VS is not installed
Related Questions in CREATEREMOTETHREAD
- C++ : Dll injection. Why CreateRemoteThread() fail on Notepad?
- FreeLibrary not unhooking DLL
- Execute remote function with memory address as parameter
- CreateRemoteThread() fails with Access Denied (0xc00000005)
- Passing multiple parameters using CreateRemoteThread in C#
- Dll injection not working in suspended process
- CreateRemoteThread says file doesn't exist, but it DOES exist
- Stop or Detection dll injection loadlibrary
- Calling a function in another process with parameters using CreateRemoteThread
- Would ASLR cause friction for the address with DLL injection?
- Remote thread is failing on call to LoadLibrary with error 87
- DLL injection via CreateRemoteThread?
- DLL code injection with remote Thread: Where to store DLL filename/location in target process address space?
- CreateRemoteThread does not work with DLL
- How to fix "LPVOID: unknown size" error while using the CreateRemoteThread API?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I later solved this by using EasyHook to inject a C# dll and use the various Marshal functions with
GetProcAddressin order to call the other functions.