Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 3.148.241.210
Domains :
Cant Read [ /etc/named.conf ]
User : elibrary.unsap.ac.id
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
D: /
localhost /
elibrary /
js /
quaggaJS /
Delete
Unzip
Name
Size
Permission
Date
Action
css
[ DIR ]
drwxrwxrwx
2020-02-14 07:54
plugins
[ DIR ]
drwxrwxrwx
2020-02-14 07:54
.babelrc
1.01
KB
-rw-rw-rw-
2020-02-14 07:54
.eslintrc
2.16
KB
-rw-rw-rw-
2020-02-14 07:54
.gitignore
69
B
-rw-rw-rw-
2020-02-14 07:54
.npmignore
112
B
-rw-rw-rw-
2020-02-14 07:54
LICENSE
1.06
KB
-rw-rw-rw-
2020-02-14 07:54
README.md
31.19
KB
-rw-rw-rw-
2020-02-14 07:54
adapter-latest.js
177.8
KB
-rw-rw-rw-
2020-02-14 07:54
live_w_locator.js
11.16
KB
-rw-rw-rw-
2020-02-14 07:54
quagga.js
1.06
MB
-rw-rw-rw-
2020-02-14 07:54
quagga.min.js
91.12
KB
-rw-rw-rw-
2020-02-14 07:54
server.pem
1.89
KB
-rw-rw-rw-
2020-02-14 07:54
simple-https-server.py
953
B
-rw-rw-rw-
2020-02-14 07:54
sound.mp3
2.06
KB
-rw-rw-rw-
2020-02-14 07:54
sound.ogg
4.82
KB
-rw-rw-rw-
2020-02-14 07:54
Save
Rename
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ # generate server.xml with the following command: # openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes # run as follows: # python simple-https-server.py # then in your browser, visit: # https://localhost:4443 import BaseHTTPServer, SimpleHTTPServer import ssl import sys, getopt host = 'localhost' port = 4443 try: opts, args = getopt.getopt(sys.argv[1:],"",["host=", "port="]) except getopt.GetoptError: print 'simple-https-server.py --host <host> --port <port>' sys.exit(2) for opt, arg in opts: if opt in ("--host"): host = arg elif opt in ("--port"): port = int(arg) print 'host is ', host print 'port is ', port httpd = BaseHTTPServer.HTTPServer((host, port), SimpleHTTPServer.SimpleHTTPRequestHandler) httpd.socket = ssl.wrap_socket (httpd.socket, certfile='./server.pem', server_side=True) httpd.serve_forever()