Skip to content

Instantly share code, notes, and snippets.

@dumpmycode
Created March 19, 2016 13:06
Show Gist options
  • Save dumpmycode/0902c5980fd080a52007 to your computer and use it in GitHub Desktop.
Save dumpmycode/0902c5980fd080a52007 to your computer and use it in GitHub Desktop.
ViolentPython - pexpect practice
#! /usr/bin/env python
# author: oscarp
# pexpect practice
import pexpect
PROMPT = ['# ', '>>> ', '> ', '\$ ']
def send_command(child, cmd):
child.sendline(cmd)
child.expect(PROMPT)
print child.before
def connect(user, host, password):
ssh_newkey = 'Are you sure you wanna continue connect? '
connStr = 'ssh ' + user + '@' + host
child = pexpect.spawn(connStr)
ret = child.expect([pexpect.TIMEOUT, ssh_newkey, '[P|p]assword:'])
if ret == 0:
print('[-] Error connecting')
return
if ret == 1:
child.sendline('yes')
ret = child.expect([pexpect.TIMEOUT, '[P|p]assword:'])
if ret == 0:
print('[-] Error connecting.')
return
child.sendline(password)
child.expect(PROMPT)
return child
def main():
host = 'localhost'
user = 'root'
password = 'toor'
child = connect(user, host, password)
send_command(child, 'cat /etc/shadow | grep root')
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment