├── webui ├── README.md ├── res │ ├── body_bg.gif │ ├── main_bg.gif │ ├── plmn_3.gif │ ├── wan_901.gif │ ├── wan_902.gif │ ├── header_bg.png │ ├── signal_5.gif │ └── unread_message.gif ├── js │ ├── messagesetting.js │ ├── pincodemanagement.js │ ├── systemsettings.js │ ├── ping.js │ ├── changelang.js │ ├── checklogin.js │ ├── nat.js │ ├── upnp.js │ ├── sipalgsettings.js │ ├── firewallswitch.js │ ├── table.js │ ├── dmzsettings.js │ ├── deviceinformation.js │ ├── country.js │ ├── redirect.js │ ├── modifypassword.js │ ├── dhcp.js │ ├── wlanadvanced.js │ ├── mobileconnection.js │ ├── statistic.js │ ├── virtualserver.js │ ├── wlanmacfilter.js │ └── validation.js ├── html │ ├── smsinbox.html │ ├── mobileconnection.html │ ├── ussd.html │ ├── update.html │ └── home.html └── lib │ └── log4javascript_lite.js ├── image.jpg ├── webui.png ├── scripts ├── hilink.conf ├── hilink_status ├── hilink_notifications ├── hilink_sms_count ├── hilink_device_information ├── hilink_traffic_stats ├── hilink_disconnect ├── hilink_connect ├── hilink_ussd_get ├── hilink_ussd_send ├── hilink_sms_list ├── hilink_sms_send └── E3372.sh ├── etc ├── network │ └── interfaces └── nginx │ └── sites-enabled │ └── hi.link └── README.md /webui/README.md: -------------------------------------------------------------------------------- 1 | # This is the internals of the Huawei web interface 2 | -------------------------------------------------------------------------------- /image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/image.jpg -------------------------------------------------------------------------------- /webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui.png -------------------------------------------------------------------------------- /webui/res/body_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui/res/body_bg.gif -------------------------------------------------------------------------------- /webui/res/main_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui/res/main_bg.gif -------------------------------------------------------------------------------- /webui/res/plmn_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui/res/plmn_3.gif -------------------------------------------------------------------------------- /webui/res/wan_901.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui/res/wan_901.gif -------------------------------------------------------------------------------- /webui/res/wan_902.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui/res/wan_902.gif -------------------------------------------------------------------------------- /webui/res/header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui/res/header_bg.png -------------------------------------------------------------------------------- /webui/res/signal_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui/res/signal_5.gif -------------------------------------------------------------------------------- /webui/js/messagesetting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui/js/messagesetting.js -------------------------------------------------------------------------------- /webui/js/pincodemanagement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui/js/pincodemanagement.js -------------------------------------------------------------------------------- /webui/res/unread_message.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohan-molloy/sms-gateway/HEAD/webui/res/unread_message.gif -------------------------------------------------------------------------------- /scripts/hilink.conf: -------------------------------------------------------------------------------- 1 | HILINK_PROTO=http 2 | HILINK_HOST=192.168.1.1 3 | HILINK_PORT=80 4 | HILINK_USER=user 5 | HILINK_PASSWORD=password 6 | -------------------------------------------------------------------------------- /webui/js/systemsettings.js: -------------------------------------------------------------------------------- 1 | 2 |
3 | 12 | 19 | 20 | 21 | 22 | 23 |