├── BurpSuiteHoneyPot ├── BurpSuiteHoneyPot │ ├── BurpSuiteHoneyPot.go │ ├── go.mod │ ├── go.sum │ └── html │ │ ├── admin.php │ │ ├── api.js │ │ ├── api.php │ │ ├── bak.php │ │ ├── download.php │ │ ├── index.php │ │ ├── login.php │ │ ├── manage.php │ │ ├── test.php │ │ └── upload.php ├── README.md ├── img │ ├── image-20210924170129131.png │ ├── image-20210924170420398.png │ └── 录制_2021_09_24_17_58_25_198.gif └── release │ ├── BurpSuiteHoneyPot.exe │ └── html │ ├── admin.php │ ├── api.js │ ├── api.php │ ├── bak.php │ ├── download.php │ ├── index.php │ ├── login.php │ ├── manage.php │ ├── test.php │ └── upload.php ├── GobyHoneyPot ├── GobyHoneyPot │ ├── GobyHoneyPot.py │ └── api.js ├── README.md └── release │ ├── GobyHoneyPot.exe │ └── api.js ├── MysqlHoneyPot ├── MysqlHoneyPot │ ├── README.md │ ├── config.yaml │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── mysql │ │ ├── auth_server.go │ │ ├── auth_server_none.go │ │ ├── auth_server_static.go │ │ ├── auth_server_static_test.go │ │ ├── binlog_event.go │ │ ├── binlog_event_common.go │ │ ├── binlog_event_common_test.go │ │ ├── binlog_event_json.go │ │ ├── binlog_event_json_test.go │ │ ├── binlog_event_make.go │ │ ├── binlog_event_make_test.go │ │ ├── binlog_event_mariadb.go │ │ ├── binlog_event_mariadb_test.go │ │ ├── binlog_event_mysql56.go │ │ ├── binlog_event_mysql56_test.go │ │ ├── binlog_event_rbr.go │ │ ├── binlog_event_rbr_test.go │ │ ├── binlog_event_test.go │ │ ├── charset.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── conn.go │ │ ├── conn_params.go │ │ ├── conn_test.go │ │ ├── constants.go │ │ ├── constants_test.go │ │ ├── doc.go │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── flavor.go │ │ ├── flavor_mariadb.go │ │ ├── flavor_mariadb_binlog_playback.go │ │ ├── flavor_mariadb_test.go │ │ ├── flavor_mysql.go │ │ ├── flavor_mysql_test.go │ │ ├── gtid.go │ │ ├── gtid_set.go │ │ ├── gtid_test.go │ │ ├── handshake_test.go │ │ ├── mariadb_gtid.go │ │ ├── mariadb_gtid_test.go │ │ ├── mysql56_gtid.go │ │ ├── mysql56_gtid_set.go │ │ ├── mysql56_gtid_set_test.go │ │ ├── mysql56_gtid_test.go │ │ ├── query.go │ │ ├── query_benchmark_test.go │ │ ├── query_test.go │ │ ├── replication.go │ │ ├── replication_constants.go │ │ ├── replication_position.go │ │ ├── replication_position_test.go │ │ ├── replication_test.go │ │ ├── schema.go │ │ ├── server.go │ │ ├── server_test.go │ │ ├── slave_status.go │ │ ├── slave_status_test.go │ │ ├── sql_error.go │ │ ├── sql_utils.go │ │ └── streaming_query.go ├── README.md ├── img │ ├── image-20211008143114115.png │ ├── image-20211008143245395.png │ ├── image-20211008143432275.png │ ├── image-20211008143532904.png │ ├── image-20211008143650513.png │ ├── image-20211008143847672.png │ ├── image-20211009113635556.png │ └── image-20211009113750859.png └── release │ ├── config.yaml │ └── mysqlHoneyPot.exe ├── README.md └── VpnHoneyPot ├── README.md ├── VpnHoneyPot ├── VpnHoneyPot.go ├── go.mod ├── go.sum └── html │ ├── EasyConnectInstaller.exe │ ├── ceshi.zip │ ├── css │ ├── installClient.css │ └── normalize.min.css │ ├── help │ ├── images │ │ ├── QA1-00.png │ │ ├── QA1-10.png │ │ ├── QA2-10.png │ │ ├── QA2-20.png │ │ ├── QA2-40.png │ │ ├── QA2-50.png │ │ ├── QA3-00.png │ │ ├── QA3-10.png │ │ ├── QA3-20.png │ │ ├── QA3-30.png │ │ ├── QA4-00.png │ │ ├── QA4-20.png │ │ ├── QA4-30.png │ │ ├── QA4-40.png │ │ ├── QA5-00.png │ │ ├── QA5-10.png │ │ ├── QA5-20.png │ │ ├── QA6-00.png │ │ ├── bg_fade.jpg │ │ ├── default_logo.gif │ │ ├── important.png │ │ ├── linux_ec_open.png │ │ ├── linux_install.png │ │ ├── login_linux_install.png │ │ ├── login_mac_install.png │ │ ├── login_win_install.png │ │ ├── mac_after_install.png │ │ ├── mac_before_install.png │ │ ├── mac_pkg.png │ │ ├── mac_remote_app.png │ │ ├── mac_remote_app_open.png │ │ ├── r_top.gif │ │ ├── win_ec_ico.png │ │ └── win_install.png │ ├── index.htm │ ├── reset.css │ ├── style.css │ └── tool.js │ ├── images │ └── ec │ │ ├── androidCode.png │ │ ├── androidPadCode.png │ │ ├── ecSpirit.png │ │ └── iosCode.png │ ├── index.html │ ├── jquery.js │ └── js │ ├── common.min.js │ └── installClient.min.js ├── img ├── image-20210927155007825.png ├── image-20210927155051227.png └── image-20211008133558156.png └── release ├── VpnHoneyPot.exe ├── html ├── ceshi.zip ├── css │ ├── installClient.css │ └── normalize.min.css ├── help │ ├── images │ │ ├── QA1-00.png │ │ ├── QA1-10.png │ │ ├── QA2-10.png │ │ ├── QA2-20.png │ │ ├── QA2-40.png │ │ ├── QA2-50.png │ │ ├── QA3-00.png │ │ ├── QA3-10.png │ │ ├── QA3-20.png │ │ ├── QA3-30.png │ │ ├── QA4-00.png │ │ ├── QA4-20.png │ │ ├── QA4-30.png │ │ ├── QA4-40.png │ │ ├── QA5-00.png │ │ ├── QA5-10.png │ │ ├── QA5-20.png │ │ ├── QA6-00.png │ │ ├── bg_fade.jpg │ │ ├── default_logo.gif │ │ ├── important.png │ │ ├── linux_ec_open.png │ │ ├── linux_install.png │ │ ├── login_linux_install.png │ │ ├── login_mac_install.png │ │ ├── login_win_install.png │ │ ├── mac_after_install.png │ │ ├── mac_before_install.png │ │ ├── mac_pkg.png │ │ ├── mac_remote_app.png │ │ ├── mac_remote_app_open.png │ │ ├── r_top.gif │ │ ├── win_ec_ico.png │ │ └── win_install.png │ ├── index.htm │ ├── reset.css │ ├── style.css │ └── tool.js ├── images │ └── ec │ │ ├── androidCode.png │ │ ├── androidPadCode.png │ │ ├── ecSpirit.png │ │ └── iosCode.png ├── index.html ├── jquery.js └── js │ ├── common.min.js │ └── installClient.min.js └── vpn.ico /BurpSuiteHoneyPot/BurpSuiteHoneyPot/BurpSuiteHoneyPot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/BurpSuiteHoneyPot.go -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/go.mod -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/go.sum -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/admin.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/api.js -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/api.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/bak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/bak.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/download.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/index.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/login.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/manage.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/test.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/BurpSuiteHoneyPot/html/upload.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/README.md -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/img/image-20210924170129131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/img/image-20210924170129131.png -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/img/image-20210924170420398.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/img/image-20210924170420398.png -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/img/录制_2021_09_24_17_58_25_198.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/img/录制_2021_09_24_17_58_25_198.gif -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/BurpSuiteHoneyPot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/BurpSuiteHoneyPot.exe -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/html/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/html/admin.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/html/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/html/api.js -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/html/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/html/api.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/html/bak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/html/bak.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/html/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/html/download.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/html/index.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/html/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/html/login.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/html/manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/html/manage.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/html/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/html/test.php -------------------------------------------------------------------------------- /BurpSuiteHoneyPot/release/html/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/BurpSuiteHoneyPot/release/html/upload.php -------------------------------------------------------------------------------- /GobyHoneyPot/GobyHoneyPot/GobyHoneyPot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/GobyHoneyPot/GobyHoneyPot/GobyHoneyPot.py -------------------------------------------------------------------------------- /GobyHoneyPot/GobyHoneyPot/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/GobyHoneyPot/GobyHoneyPot/api.js -------------------------------------------------------------------------------- /GobyHoneyPot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/GobyHoneyPot/README.md -------------------------------------------------------------------------------- /GobyHoneyPot/release/GobyHoneyPot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/GobyHoneyPot/release/GobyHoneyPot.exe -------------------------------------------------------------------------------- /GobyHoneyPot/release/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/GobyHoneyPot/release/api.js -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/README.md -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/config.yaml -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/go.mod -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/go.sum -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/main.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/auth_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/auth_server.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/auth_server_none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/auth_server_none.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/auth_server_static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/auth_server_static.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/auth_server_static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/auth_server_static_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_common.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_common_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_json.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_json_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_make.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_make.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_make_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_make_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_mariadb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_mariadb.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_mariadb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_mariadb_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_mysql56.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_mysql56.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_mysql56_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_mysql56_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_rbr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_rbr.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_rbr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_rbr_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/binlog_event_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/charset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/charset.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/client.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/client_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/conn.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/conn_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/conn_params.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/conn_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/constants.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/constants_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/constants_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/doc.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/encoding.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/encoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/encoding_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/flavor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/flavor.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/flavor_mariadb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/flavor_mariadb.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/flavor_mariadb_binlog_playback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/flavor_mariadb_binlog_playback.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/flavor_mariadb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/flavor_mariadb_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/flavor_mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/flavor_mysql.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/flavor_mysql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/flavor_mysql_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/gtid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/gtid.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/gtid_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/gtid_set.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/gtid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/gtid_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/handshake_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/mariadb_gtid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/mariadb_gtid.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/mariadb_gtid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/mariadb_gtid_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/mysql56_gtid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/mysql56_gtid.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/mysql56_gtid_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/mysql56_gtid_set.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/mysql56_gtid_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/mysql56_gtid_set_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/mysql56_gtid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/mysql56_gtid_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/query.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/query_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/query_benchmark_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/query_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/replication.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/replication_constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/replication_constants.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/replication_position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/replication_position.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/replication_position_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/replication_position_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/replication_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/replication_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/schema.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/server.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/server_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/slave_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/slave_status.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/slave_status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/slave_status_test.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/sql_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/sql_error.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/sql_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/sql_utils.go -------------------------------------------------------------------------------- /MysqlHoneyPot/MysqlHoneyPot/mysql/streaming_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/MysqlHoneyPot/mysql/streaming_query.go -------------------------------------------------------------------------------- /MysqlHoneyPot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/README.md -------------------------------------------------------------------------------- /MysqlHoneyPot/img/image-20211008143114115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/img/image-20211008143114115.png -------------------------------------------------------------------------------- /MysqlHoneyPot/img/image-20211008143245395.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/img/image-20211008143245395.png -------------------------------------------------------------------------------- /MysqlHoneyPot/img/image-20211008143432275.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/img/image-20211008143432275.png -------------------------------------------------------------------------------- /MysqlHoneyPot/img/image-20211008143532904.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/img/image-20211008143532904.png -------------------------------------------------------------------------------- /MysqlHoneyPot/img/image-20211008143650513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/img/image-20211008143650513.png -------------------------------------------------------------------------------- /MysqlHoneyPot/img/image-20211008143847672.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/img/image-20211008143847672.png -------------------------------------------------------------------------------- /MysqlHoneyPot/img/image-20211009113635556.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/img/image-20211009113635556.png -------------------------------------------------------------------------------- /MysqlHoneyPot/img/image-20211009113750859.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/img/image-20211009113750859.png -------------------------------------------------------------------------------- /MysqlHoneyPot/release/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/release/config.yaml -------------------------------------------------------------------------------- /MysqlHoneyPot/release/mysqlHoneyPot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/MysqlHoneyPot/release/mysqlHoneyPot.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/README.md -------------------------------------------------------------------------------- /VpnHoneyPot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/README.md -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/VpnHoneyPot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/VpnHoneyPot.go -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/go.mod -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/go.sum -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/EasyConnectInstaller.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/EasyConnectInstaller.exe -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/ceshi.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/ceshi.zip -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/css/installClient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/css/installClient.css -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/css/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/css/normalize.min.css -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA1-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA1-00.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA1-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA1-10.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA2-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA2-10.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA2-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA2-20.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA2-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA2-40.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA2-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA2-50.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA3-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA3-00.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA3-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA3-10.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA3-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA3-20.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA3-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA3-30.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA4-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA4-00.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA4-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA4-20.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA4-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA4-30.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA4-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA4-40.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA5-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA5-00.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA5-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA5-10.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA5-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA5-20.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/QA6-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/QA6-00.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/bg_fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/bg_fade.jpg -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/default_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/default_logo.gif -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/important.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/linux_ec_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/linux_ec_open.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/linux_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/linux_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/login_linux_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/login_linux_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/login_mac_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/login_mac_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/login_win_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/login_win_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/mac_after_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/mac_after_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/mac_before_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/mac_before_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/mac_pkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/mac_pkg.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/mac_remote_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/mac_remote_app.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/mac_remote_app_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/mac_remote_app_open.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/r_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/r_top.gif -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/win_ec_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/win_ec_ico.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/images/win_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/images/win_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/index.htm -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/reset.css -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/style.css -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/help/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/help/tool.js -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/images/ec/androidCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/images/ec/androidCode.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/images/ec/androidPadCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/images/ec/androidPadCode.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/images/ec/ecSpirit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/images/ec/ecSpirit.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/images/ec/iosCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/images/ec/iosCode.png -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/index.html -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/jquery.js -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/js/common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/js/common.min.js -------------------------------------------------------------------------------- /VpnHoneyPot/VpnHoneyPot/html/js/installClient.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/VpnHoneyPot/html/js/installClient.min.js -------------------------------------------------------------------------------- /VpnHoneyPot/img/image-20210927155007825.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/img/image-20210927155007825.png -------------------------------------------------------------------------------- /VpnHoneyPot/img/image-20210927155051227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/img/image-20210927155051227.png -------------------------------------------------------------------------------- /VpnHoneyPot/img/image-20211008133558156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/img/image-20211008133558156.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/VpnHoneyPot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/VpnHoneyPot.exe -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/ceshi.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/ceshi.zip -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/css/installClient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/css/installClient.css -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/css/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/css/normalize.min.css -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA1-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA1-00.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA1-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA1-10.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA2-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA2-10.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA2-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA2-20.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA2-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA2-40.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA2-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA2-50.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA3-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA3-00.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA3-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA3-10.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA3-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA3-20.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA3-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA3-30.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA4-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA4-00.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA4-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA4-20.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA4-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA4-30.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA4-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA4-40.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA5-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA5-00.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA5-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA5-10.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA5-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA5-20.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/QA6-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/QA6-00.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/bg_fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/bg_fade.jpg -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/default_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/default_logo.gif -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/important.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/linux_ec_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/linux_ec_open.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/linux_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/linux_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/login_linux_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/login_linux_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/login_mac_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/login_mac_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/login_win_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/login_win_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/mac_after_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/mac_after_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/mac_before_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/mac_before_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/mac_pkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/mac_pkg.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/mac_remote_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/mac_remote_app.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/mac_remote_app_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/mac_remote_app_open.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/r_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/r_top.gif -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/win_ec_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/win_ec_ico.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/images/win_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/images/win_install.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/index.htm -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/reset.css -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/style.css -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/help/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/help/tool.js -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/images/ec/androidCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/images/ec/androidCode.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/images/ec/androidPadCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/images/ec/androidPadCode.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/images/ec/ecSpirit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/images/ec/ecSpirit.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/images/ec/iosCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/images/ec/iosCode.png -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/index.html -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/jquery.js -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/js/common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/js/common.min.js -------------------------------------------------------------------------------- /VpnHoneyPot/release/html/js/installClient.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/html/js/installClient.min.js -------------------------------------------------------------------------------- /VpnHoneyPot/release/vpn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handbye/SimpleHoneyPot/HEAD/VpnHoneyPot/release/vpn.ico --------------------------------------------------------------------------------