-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathhttp-server.py
More file actions
executable file
·41 lines (37 loc) · 1.07 KB
/
http-server.py
File metadata and controls
executable file
·41 lines (37 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/python
from http.server import BaseHTTPRequestHandler, HTTPServer
import os
class ExampleHTTPRequestHandler(BaseHTTPRequestHandler):
def do_GET(self):
session_key = os.path.basename(self.path)
file = '/tmp/openvpn_sso_' + session_key
print('session file: ' + file)
try:
f = open(file)
#send code 200 response
self.send_response(200)
#send header first
self.send_header('Content-type','text-html')
self.end_headers()
#send file content to client
user = f.read().rstrip()
print('session user: ' + user)
print('session key: ' + session_key)
self.wfile.write('<html><body><h1>Greetings ' + user \
+ '. You are authorized' \
'</h1>' \
'</body></html>')
f.close()
return
except IOError:
self.send_error(404, 'authentication failed')
def run():
#ip and port of servr
#by default http server port is 80
server_address = ('0.0.0.0', 8080)
httpd = HTTPServer(server_address, ExampleHTTPRequestHandler)
print('http server started')
httpd.serve_forever()
print('http server stopped')
if __name__ == '__main__':
run()