blob: 765c3dff2119bc55573335efcaabeafc03e01f6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# tui, Tor web UI
# by Arturo Filasto' <hellais@torproject.org>
#
import web, os
cache = False
globals = {}
# Add your own (username, password) pair
authinfo = ("test", "test")
|