What's new

C & C++ Help in DLL Function

onlymiguel

Honorary Poster
Joined
Jan 17, 2016
Posts
466
Reaction
549
Points
231
Age
47
Need ko lng sana ng help if anong function pedeng gamitin dito sa idea ko.

Basically meron akong dll source code. And mag aadd ako ng feature but hindi ko maisip anong function yung pede.

Heres how the dll works

Windows Exe opens -> Loads my dll

Tapos ung feature na gusto ko is halimbawa

My dll scans for an active dll by name. Example

If (DllNameBlablabla == detectedrunning)
{
Exit(0);}

Yan so basically gusto ko maglagay sa dll ko na whenever magrurun sya. Iccheck nya ung mga possible running dlls by name regardless kung anong process nagrurun nung dll and if detected na existing ung dll nayo. Automaticaly magcclose ung program ko.

Think of it as simple anti cheat

Thanks sa makakatulong.
 
ung magloload ng DLL mo controlled mo?o ibang app magloload?. di ko memorize ung mga function pero basically you have to search for an Windows API that accesses running processes, and then enumerate their libraries. marami nyan sa mga malware tsaka mga game trainers, try to search github.com or gist.github.com
 
Back
Top