gitextract_o4r80yov/ ├── .coveragerc ├── .dockerignore ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── docker.yml │ └── python.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── docker-compose.yml ├── requirements.txt ├── run.py ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── data/ │ │ ├── cert.crt │ │ ├── cert.key │ │ ├── fonts/ │ │ │ ├── .gitignore │ │ │ └── fake-font │ │ ├── known_hosts_example │ │ ├── known_hosts_example2 │ │ ├── known_hosts_example3 │ │ ├── test_ed25519.key │ │ ├── test_ed25519_password.key │ │ ├── test_known_hosts │ │ ├── test_new_dsa.key │ │ ├── test_new_rsa_password.key │ │ ├── test_rsa.key │ │ ├── test_rsa_password.key │ │ └── user_rsa_key │ ├── sshserver.py │ ├── test_app.py │ ├── test_handler.py │ ├── test_main.py │ ├── test_policy.py │ ├── test_settings.py │ ├── test_utils.py │ └── utils.py ├── user.js/ │ └── Build-SSH-Link.user.js └── webssh/ ├── __init__.py ├── _version.py ├── handler.py ├── main.py ├── policy.py ├── settings.py ├── static/ │ ├── css/ │ │ └── fonts/ │ │ └── .gitignore │ ├── js/ │ │ ├── main.js │ │ └── service-worker.js │ └── manifest.json ├── templates/ │ └── index.html ├── utils.py └── worker.py