Theres a malware that waits for the user to copy a bitcoin address and then replaces the address with the malware author's bitcoin address. How would i create a program to remove such malware? Where to start? I didn't find anything online. I only need this for Windows. I'm not sure if i can post the malware code but it uses these functions:
OpenClipboard()
CloseClipboard()
SetClipboardData()
GetClipboardData()
and other stdlib functions(regex, strcmp, strlen etc).
#Malware removal program[windows]
15 messages · Page 1 of 1 (latest)
When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question run !howto ask.
what researches did you do about making AV?
Not a AV really, it just removes a very specific malware but i googled yeah
you could literally just monitor the clipboard and put a notification when you detect a new bitcoin address has been set
i could get a notification yeah when the clipboard data changes, but this doesn't tell me which program changed it which is kinda a problem.
this is for antivirus engine. I'm making a program to remove a very specific malware.
are you making an AV or just removing one malware?
Just making a program that removes the malware i described.
so it's not an AV engine?
it's not like a general av that scans stuff
thx