Sinisterly
Create own virus - Printable Version

+- Sinisterly (https://sinister.li)
+-- Forum: Coding (https://sinister.li/Forum-Coding)
+--- Forum: Coding (https://sinister.li/Forum-Coding--71)
+--- Thread: Create own virus (/Thread-Create-own-virus)



Create own virus - IDetox - 03-01-2013

Hi guys, got a question. You ever tried to make your own virus?
U know any good tutorials for this. Is this possible with Python also?

Hope u help me and the HC Community!

Greetz,

DetoX


RE: Create own virus - chmod - 03-01-2013

Python is not the best option for this. I've never coded my own before but you will need to be able to compile your code into an exe something like c++ or pascal will be best


RE: Create own virus - IDetox - 03-01-2013

Thats the problem i thought about. Not rly convinced Python will help me here. Well i started a little gag for my brother just to create a batchfile which shuts down his computer Biggrin

Also cool would be if your CD-drive opens and closes all the time Biggrin


RE: Create own virus - Asuna_mybb_import7736 - 03-01-2013

Batch is good for prank vira, but you can't call it an actual virus.


RE: Create own virus - chmod - 03-01-2013

No probably not, but Python is a cool language nonetheless


RE: Create own virus - Ex094 - 03-02-2013

Yes you can create your own virus, IF you are planning to do it with Python have a look at this thread http://www.hackcommunity.com/Thread-Tutorial-Python-source-basic-virus-infection-and-polymorphy


RE: Create own virus - Deque - 03-02-2013

Depends on the kind of virus you want to create.

I have made a tutorial for a JAR virus, which is written in Java. But Java is only suitable in this case because of its special infection type: -->link<--. I also made a tutorial to understand infection of viruses which uses Python (linked by Ex094). But Python is also no usual language for viruses. The tutorial was made for you to understand of the concepts, not to have a step by step guide for your own python virus.

A "typical" virus that infects Windows executables needs assembly or at least C knowledge.
Macro viruses can be written in high-level-languages like VBA and VBS for the former Word and Excel documents.

So actually you need to know your target (the file format you want to infect) before you know which language to use.

Virus programming is not a beginner task, though.

But if you just want to play some pranks (like shutting down the computer) almost every language is suitable, though you should prefer one that has direct access to Windows functions (i.e. Batch, Powershell, .NET languages)
Such pranks are most of the time no virus. A virus is a program that replicates itself and usually infects a host file.


RE: Create own virus - IDetox - 03-02-2013

Thx Ex094 and Deque, usefull links and tips mates ! Thumbs up :-P