https://github.com/mizzy/funnel
SSH routing framework based on twisted
https://github.com/mizzy/funnel
Last synced: about 2 months ago
JSON representation
SSH routing framework based on twisted
- Host: GitHub
- URL: https://github.com/mizzy/funnel
- Owner: mizzy
- Created: 2012-09-18T06:50:14.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-10-28T07:31:43.000Z (over 13 years ago)
- Last Synced: 2025-01-28T05:09:23.382Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 113 KB
- Stars: 3
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Funnel - SSH routing framework based on twisted
## How to use
```python
import funnel
class MyFunnel(Funnel):
def auth_by_public_key():
# ...
def auth_by_password():
# ...
def getPty():
# ...
def execCommand():
# ...
def openShell():
# ...
if __name__ == '__main__':
MyFunnel.run()
```