├── cgi-bin └── login.cgi ├── data ├── a1 ├── aaa └── abc ├── index.html ├── run_webserver.sh └── update_neo_c.sh /cgi-bin/login.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab25cq/mebius/HEAD/cgi-bin/login.cgi -------------------------------------------------------------------------------- /data/a1: -------------------------------------------------------------------------------- 1 | a1pass 2 | -------------------------------------------------------------------------------- /data/aaa: -------------------------------------------------------------------------------- 1 | bbb 2 | -------------------------------------------------------------------------------- /data/abc: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab25cq/mebius/HEAD/index.html -------------------------------------------------------------------------------- /run_webserver.sh: -------------------------------------------------------------------------------- 1 | python3 -m http.server --cgi 8080 2 | -------------------------------------------------------------------------------- /update_neo_c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ab25cq/mebius/HEAD/update_neo_c.sh --------------------------------------------------------------------------------