Writing a simple wiper malware in Python
added on 2023/03/15 @ 18:55:53 | 1234 views| category: hacking-security

In this article, I’ll describe how to write a malware, Please notice this is not a “true” malware this is only has to show you the basics and even how easy to be written, Probably python is not the best choice at all, It’s an interpreted language and so it needs an interpreter to be executed so to write a malware probably other languages that can work to a lower level and that can be compiled are probably a better choice, malware is often designed to be small, stealthy, have low memory footprint, and use limited processing power, So it’s very common to see malware written in C & Assembly.

Full source code:
https://github.com/0xf00I/SkyWiper/blob/main/src/main.py

tags: #python #malware