Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/antitree/spit
- Owner: antitree
- Created: 2015-03-21T10:41:12.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-21T10:50:22.000Z (almost 10 years ago)
- Last Synced: 2023-03-16T17:50:33.047Z (almost 2 years ago)
- Language: Python
- Size: 137 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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