Six Years of Service
Posts: 163
Threads: 70
Malware programming 01-21-2020, 04:59 PM
#1
Hello,
Which programming language is best for write Malware?
Thank you.
(This post was last modified: 01-21-2020, 05:00 PM by Hack3rcon.)
Thirteen Years of Service
Posts: 239
Threads: 12
RE: Malware programming 01-21-2020, 05:10 PM
#2
There have no differences i think.It might be undetectable and to bring more tasks and to discover new vulnerabilities.
Fourteen Years of Service
Posts: 74,291
Threads: 317
RE: Malware programming 01-22-2020, 04:58 AM
#3
Stating the obvious, C and/or C++. Assembly language Is also part of the equation.
Prior to writing code, be sure to take the time to learn the language thoroughly.
Nine Years of Service
Posts: 3,093
Threads: 132
RE: Malware programming 01-22-2020, 05:25 AM
#4
C languages are best for malware programming. If you're looking to make some unheard of malware, you'll need a vulnerability. You need an immense amount of skill to find a vulnerability though. If you don't feel like making a zero-day, they sell for thousands on the deep web.
Six Years of Service
Posts: 163
Threads: 70
RE: Malware programming 01-23-2020, 11:40 PM
#5
C++ must be better?
How about Rust-lang?
Six Years of Service
Posts: 132
Threads: 2
RE: Malware programming 01-24-2020, 03:46 AM
#7
Well, In my experiencie i use C# & PHP for coding the C&Cs (in the case of RAT's and TRJ/BOT alike malware), and Python/C++ or ASM for the payload, development of malware depends of what you want to reach with it, and in what level you will deploy it,
This is an example from my current project ( Quintessence RAT) and a aproach the way some good malware re developed and sell nowadays:
1. I create a Downloader for my payload or stub in AutoIt or Python* (because it is fast & easier to obsfucate and i use a exploit that i made to bypass UAC via 'FTP' & SMB) that will deploy a early coded payload
2. The Payload or Stub is recommended to be coded in C++ or ASM because is more "powerful" at system-level and easier to crypt to make it FUD for at least a time
3. The C&C Dashboard or RAT Server, i coded it on C# for RAT , because i like how sockets work on C# and it can use some Kernel API's in a good way, and i use PHP only when i'm making a Botnet Dashboard for obvious reasons.
If you want more info let me know...
(This post was last modified: 01-24-2020, 03:55 AM by sybylroot.
Edit Reason: Adding python to suggestion. some orthographic corrections.
)
Developing
Nocturnal RAT (C++)
Constellar RAT (C#) (
ALPHA)
>>
Shop
Quote:-- Did you find my stub? --
•
Six Years of Service
Posts: 163
Threads: 70
RE: Malware programming 02-01-2020, 09:13 AM
#10
This topic should exist in the Black Books!