Sinisterly
Malware programming - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Coding (https://sinister.ly/Forum-Coding--71)
+--- Thread: Malware programming (/Thread-Malware-programming)

Pages: 1 2


Malware programming - Hack3rcon - 01-21-2020

Hello,
Which programming language is best for write Malware?

Thank you.


RE: Malware programming - aabee - 01-21-2020

There have no differences i think.It might be undetectable and to bring more tasks and to discover new vulnerabilities.


RE: Malware programming - mothered - 01-22-2020

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.


RE: Malware programming - Drako - 01-22-2020

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.


RE: Malware programming - Hack3rcon - 01-23-2020

C++ must be better?
How about Rust-lang?


RE: Malware programming - mothered - 01-24-2020

(01-23-2020, 11:40 PM)Hack3rcon Wrote: C++ must be better?
How about Rust-lang?

C++ Is generally used and the preferred language for high-level malware.


RE: Malware programming - sybylroot - 01-24-2020

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...


RE: Malware programming - Hack3rcon - 01-26-2020

(01-24-2020, 03:46 AM)sybylroot Wrote: 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...
I sent a PM.
How about Rust or other compiled languages?


RE: Malware programming - retroplayer - 01-27-2020

(01-21-2020, 04:59 PM)Hack3rcon Wrote: Hello,
Which programming language is best for write Malware?

Thank you.
I have a PDF book titled "black hat python" if you want it. I haven't gone through it, but I think it shows malware as well as exploits


RE: Malware programming - Hack3rcon - 02-01-2020

This topic should exist in the Black Books!