Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/antitree/spit

STDOUT library used to simulate actual human typing. Designed to simulate and execute commands to SSH clients
https://github.com/antitree/spit

Last synced: about 1 month ago
JSON representation

STDOUT library used to simulate actual human typing. Designed to simulate and execute commands to SSH clients

Awesome Lists containing this project

README

        

# spit
Python module specifically for Andrew Morris that I wrote on the way
from SFO to PHL. It can be used to send SSH commands typed as a human would (poorly and with mistakes) so that it's harder to detect them with his intel tools. :P

# Example usage with a Parimiko SSH client:
* create a SSH client (shell.py) that opens a chan and reads from stdin
while True:
d = sys.stdin.read(1)
chan.send(d)
* ./spit.py commandinput | ./shell.py
* ...
* profit