Created
April 11, 2019 18:39
-
-
Save glowinthedark/dad0def6b2a5df0ee8ac7ee585236b92 to your computer and use it in GitHub Desktop.
Twisted SSL webserver with basic authentication using plain in-memory passwords. The first argument is the path of the directory to serve; if not provided then the current folder is used (".").
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """ | |
| Twisted SSL webserver with basic authentication using plain in-memory passwords. | |
| The first argument is the path of the directory to serve; if not provided then the current folder is used ("."). | |
| INSTALL DEPENDENCIES: | |
| pip install twisted | |
| pip install pyOpenSSL | |
| pip install service_identity | |
| GENERATE SSL CERTIFICATES: | |
| mkdir ~/.ssl && cd ~/.ssl | |
| openssl genrsa > privkey.pem | |
| openssl req -new -x509 -key privkey.pem -out cacert.pem -days 9999 | |
| Requires running as root (normal users cannot bind to ports below 1024). | |
| """ | |
| import os | |
| import sys | |
| from twisted.web.static import File | |
| from zope.interface import implements | |
| from twisted.python import log | |
| from twisted.internet import reactor, ssl | |
| from twisted.web import server, resource, guard | |
| from twisted.cred.portal import IRealm, Portal | |
| from twisted.cred.checkers import InMemoryUsernamePasswordDatabaseDontUse | |
| from twisted.python.log import startLogging | |
| startLogging(sys.stdout) | |
| home_dir = os.path.expanduser("~") | |
| sslContext = ssl.DefaultOpenSSLContextFactory( | |
| os.path.join(home_dir, '.ssl/privkey.pem'), | |
| os.path.join(home_dir, '.ssl/cacert.pem'), | |
| ) | |
| class SimpleRealm(object): | |
| """ | |
| A realm which gives out L{GuardedResource} instances for authenticated | |
| users. | |
| """ | |
| implements(IRealm) | |
| def __init__(self, path): | |
| self.path = path | |
| def requestAvatar(self, avatarId, mind, *interfaces): | |
| if resource.IResource in interfaces: | |
| return resource.IResource, File(self.path), lambda: None | |
| raise NotImplementedError() | |
| def main(root): | |
| log.startLogging(sys.stdout) | |
| checkers = [InMemoryUsernamePasswordDatabaseDontUse(test_user='test_password')] | |
| wrapper = guard.HTTPAuthSessionWrapper( | |
| Portal(SimpleRealm(root), checkers), | |
| [guard.DigestCredentialFactory('md5', 'whatever.com')]) | |
| reactor.listenSSL(443, server.Site(resource=wrapper), | |
| contextFactory=sslContext) | |
| reactor.run() | |
| if __name__ == '__main__': | |
| root = len(sys.argv) > 1 and sys.argv[1] or '.' | |
| main(root) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment