Created
February 10, 2015 12:56
-
-
Save Belgium/eba68a10b3de01f01237 to your computer and use it in GitHub Desktop.
[Python] Basic SSH Botnet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pxssh | |
class Client: | |
def __init__(self, host, user, password): | |
self.host = host | |
self.user = user | |
self.password = password | |
self.session = self.connect() | |
def connect(self): | |
try: | |
s = pxssh.pxssh() | |
s.login(self.host, self.user, self.password) | |
return s | |
except Exception, e: | |
print e | |
print '[-] Error Connecting' | |
def send_command(self, cmd): | |
self.session.sendline(cmd) | |
self.session.prompt() | |
return self.session.before | |
def botnetCommand(command): | |
for client in botNet: | |
output = client.send_command(command) | |
print '[*] Output from ' + client.host | |
print '[*] ' + output | |
def addClient(host, user, password): | |
client = Client(host, user, password) | |
botNet.append(client) | |
botNet = [] | |
# Example | |
# Add/connect a client to the botNet list | |
addClient('127.0.0.1', 'root', 'mypassword') | |
# Send a command to all bots | |
botnetCommand('ls -la') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment