Python malware on the rise
cyborgsecurity.com
Python malware on the rise
1–10 of 70 posts
Re: Python malware on the rise
#2Re: Python malware on the rise
#3Re: Python malware on the rise
#4* https://www.cyborgsecurity.com/wp-content/uploads/2020/07/py...
Re: Python malware on the rise
#5This article lost me, what really confuses me is exceptions in malware with obfuscated code example (I would not call this obfuscated code) and "import cv2" example, does malware installs open-cv library on windows in background ? (this simply does not compute)
As far as the opencv library goes, used by PoetRAT, you can choose to bundle third party packages inside your executable with all the executable generators I mentioned at the beginning of the article like PyInstaller or Nuitka.
Re: Python malware on the rise
#6This article lost me, what really confuses me is exceptions in malware with obfuscated code example (I would not call this obfuscated code) and "import cv2" example, does malware installs open-cv library on windows in background ? (this simply does not compute)
However, in all notebooks that have one, that code will make your litle LED indicator right by the webcam turn on, so it's not particularly quiet about it.
Re: Python malware on the rise
#7This article lost me, what really confuses me is exceptions in malware with obfuscated code example (I would not call this obfuscated code) and "import cv2" example, does malware installs open-cv library on windows in background ? (this simply does not compute)
Re: Python malware on the rise
#8Is it just me, or does this read like a friendly howto for a would-be python malware author?
I do hope that those reading this will use this knowledge to do good.
Re: Python malware on the rise
#9The section on eval was a little more interesting but still nothing special.
Personally, and this is just my probably uninformed opinion, the biggest thing about Python that makes it useful for malware is its huge, mostly uncurated repository of libraries and addons that are easy to install and use without ever looking at it. This aspect of Python seems likely the most appealing for would be malware writers. The ease of making malicious code widely available without a lot of scrutiny.
Re: Python malware on the rise
#10Is it just me, or does this read like a friendly howto for a would-be python malware author?