You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

492 lines
14 KiB
Markdown

3 years ago
# huawei-hilink client
Control Huawei hilink router (CL4E3372HM) from the bash console
3 years ago
[![Node.js 10.x, 12.x, 13.x, 14.x, 15.x CI](https://github.com/vzakharchenko/E3372h-320-cli/actions/workflows/main.yml/badge.svg)](https://github.com/vzakharchenko/E3372h-320-cli/actions/workflows/main.yml)
3 years ago
![](./docs/4889330.jpg)
![](./docs/4889332.jpg)
3 years ago
# Features
3 years ago
- can encrypt/decrypt huawei hilink-api
- support "device login password"
- can read and send SMS messages from the command line
- reconnect network
- on/off mobile data
3 years ago
# Tested on
E3372h-320
version: 11.0.1.1(H697SP1C983)
Web UI version WEBUI 11.0.1.1(W13SP2C7201)
![](./docs/info.png)
![](./docs/info2.png)
## Requirement
3 years ago
- nodejs (>12)
3 years ago
## Installation
- install package
```
3 years ago
sudo npm i huawei-hilink -g
3 years ago
```
## Docker installation
3 years ago
TODO
## Device Login password Page
add argument **--password="YOUR_PASSWORD"** to command line.
![](./docs/login.png)
![](./docs/RequirePassword.png)
- example
```
huawei-hilink sendSMS --phone=+11111111111 --message="Test message" --password="YOUR_PASSWORD"
```
3 years ago
## How to use
### Help
```
3 years ago
huawei-hilink --help
3 years ago
```
result:
```
3 years ago
huawei-hilink [command]
3 years ago
Commands:
3 years ago
huawei-hilink sendSMS send SMS to contact or group of contacts
huawei-hilink contacts get contact list with the latest sms messages
huawei-hilink messages get all messages from InBox
huawei-hilink contactPages contact list pages
huawei-hilink sms get contact SMS list
huawei-hilink pages count of sms pages
huawei-hilink deleteSMS delete sms by smsId
huawei-hilink mobileData Enable/Disable or Reconnect Mobile Data
huawei-hilink monitoring current Monitoring status
3 years ago
Options:
--help Show help [boolean]
--version Show version number [boolean]
3 years ago
3 years ago
```
### Version
```
3 years ago
huawei-hilink --version
3 years ago
```
result:
```
1.0.0
```
### Send SMS
3 years ago
- Send message "Test message" to +11111111111
3 years ago
```
3 years ago
huawei-hilink sendSMS --phone=+11111111111 --message="Test message"
3 years ago
```
- Send message "Test message" to +11111111111 with enabled "Require Password"
3 years ago
```
3 years ago
huawei-hilink sendSMS --phone=+11111111111 --message="Test message" --password="YOUR_PASSWORD"
```
3 years ago
### SMS Conversation API
![](./docs/smsConversation1.png)
3 years ago
- get all contacts
3 years ago
```
3 years ago
huawei-hilink contacts
3 years ago
```
3 years ago
Result:
3 years ago
```
3 years ago
MessageId: 40004 Phone: +22222222222 lastMessage: {}
MessageId: 40005 Phone: +11111111111 lastMessage: "Test message"
3 years ago
```
- get all contacts with enabled "Require Password"
3 years ago
```
huawei-hilink contacts with enabled "Require Password" --password="YOUR_PASSWORD"
3 years ago
```
Result:
```
MessageId: 40004 Phone: +22222222222 lastMessage: {}
MessageId: 40005 Phone: +11111111111 lastMessage: "Test message"
```
3 years ago
- get all contacts and export as xml
3 years ago
```
3 years ago
huawei-hilink contacts --exportFormat=xml --exportFile='./contacts.xml'
3 years ago
cat ./contacts.xml
```
Result:
```xml
<response>
<count>2</count>
<messages>
<message>
<smstat>0</smstat>
<index>40004</index>
<phone>+222222222222</phone>
<content></content>
<date>2021-10-28 22:27:09</date>
<sca></sca>
<savetype>0</savetype>
<priority>0</priority>
<smstype>7</smstype>
<unreadcount>0</unreadcount>
</message>
<message>
<smstat>2</smstat>
<index>40005</index>
<phone>+11111111111</phone>
<content>Test message</content>
<date>2021-10-28 21:36:20</date>
<sca></sca>
<savetype>3</savetype>
<priority>4</priority>
<smstype>1</smstype>
<unreadcount>0</unreadcount>
</message>
</messages>
</response>
```
- Example get all contacts and export as json
```
3 years ago
huawei-hilink contacts --exportFormat=json --exportFile='./contacts.json'
3 years ago
cat ./contacts.json
```
Result:
```json
{
"response":{
"count":"2",
"messages":{
"message":[
{
"smstat":"0",
"index":"40004",
"phone":"+222222222222",
"content":{
},
"date":"2021-10-28 22:27:09",
"sca":{
},
"savetype":"0",
"priority":"0",
"smstype":"7",
"unreadcount":"0"
},
{
"smstat":"2",
"index":"40005",
"phone":"+11111111111",
"content":"Test message",
"date":"2021-10-28 21:36:20",
"sca":{
},
"savetype":"3",
"priority":"4",
"smstype":"1",
"unreadcount":"0"
}
]
}
}
}
```
3 years ago
### List SMS For the specific phone
3 years ago
![](./docs/smsConversation1.png)
3 years ago
- get conversation for phone +111111111111
3 years ago
```
3 years ago
huawei-hilink sms --phone=+111111111111
3 years ago
```
Result:
```
3 years ago
MessageId: 40001 Phone: +111111111111 Message: "test123"
MessageId: 40003 Phone: +111111111111 Message: "test123"
MessageId: 40000 Phone: +111111111111 Message: "Sms"
MessageId: 40002 Phone: +111111111111 Message: {}
MessageId: 40004 Phone: +111111111111 Message: {}
3 years ago
```
3 years ago
- get conversation for phone +111111111111 with enabled "Require Password"
3 years ago
```
3 years ago
huawei-hilink sms --phone=+111111111111 --password="YOUR_PASSWORD"
3 years ago
```
Result:
```
MessageId: 40001 Phone: +111111111111 Message: "test123"
MessageId: 40003 Phone: +111111111111 Message: "test123"
MessageId: 40000 Phone: +111111111111 Message: "Sms"
MessageId: 40002 Phone: +111111111111 Message: {}
MessageId: 40004 Phone: +111111111111 Message: {}
```
3 years ago
3 years ago
- Example get conversation for phone +111111111111 export result as xml
```
3 years ago
huawei-hilink sms --exportFile=111111111111.xml --exportFormat=xml
3 years ago
cat ./111111111111.xml
```
Result:
```xml
<response>
<count>5</count>
<messages>
<message>
<smstat>3</smstat>
<index>40001</index>
<phone>+111111111111</phone>
<content>test123</content>
<date>2021-10-28 21:26:02</date>
<sca></sca>
<curbox>1</curbox>
<savetype>3</savetype>
<priority>4</priority>
<smstype>1</smstype>
</message>
<message>
<smstat>3</smstat>
<index>40003</index>
<phone>+111111111111</phone>
<content>test123</content>
<date>2021-10-28 21:27:06</date>
<sca></sca>
<curbox>1</curbox>
<savetype>3</savetype>
<priority>4</priority>
<smstype>1</smstype>
</message>
<message>
<smstat>1</smstat>
<index>40000</index>
<phone>+111111111111</phone>
<content>Sms</content>
<date>2021-10-28 21:58:39</date>
<sca></sca>
<curbox>0</curbox>
<savetype>0</savetype>
<priority>0</priority>
<smstype>1</smstype>
</message>
<message>
<smstat>1</smstat>
<index>40002</index>
<phone>+111111111111</phone>
<content></content>
<date>2021-10-28 22:26:05</date>
<sca></sca>
<curbox>0</curbox>
<savetype>0</savetype>
<priority>0</priority>
<smstype>7</smstype>
</message>
<message>
<smstat>1</smstat>
<index>40004</index>
<phone>+111111111111</phone>
<content></content>
<date>2021-10-28 22:27:09</date>
<sca></sca>
<curbox>0</curbox>
<savetype>0</savetype>
<priority>0</priority>
<smstype>7</smstype>
</message>
</messages>
</response>
```
- Example get all contacts and export as json
```
3 years ago
huawei-hilink sms --exportFile=111111111111.json --exportFormat=json
3 years ago
cat ./111111111111.json
```
Result:
```json
{"response":{"count":"5","messages":{"message":[{"smstat":"3","index":"40001","phone":"+111111111111","content":"test123","date":"2021-10-28 21:26:02","sca":{},"curbox":"1","savetype":"3","priority":"4","smstype":"1"},{"smstat":"3","index":"40003","phone":"+111111111111","content":"test123","date":"2021-10-28 21:27:06","sca":{},"curbox":"1","savetype":"3","priority":"4","smstype":"1"},{"smstat":"1","index":"40000","phone":"+111111111111","content":"Sms","date":"2021-10-28 21:58:39","sca":{},"curbox":"0","savetype":"0","priority":"0","smstype":"1"},{"smstat":"1","index":"40002","phone":"+111111111111","content":{},"date":"2021-10-28 22:26:05","sca":{},"curbox":"0","savetype":"0","priority":"0","smstype":"7"},{"smstat":"1","index":"40004","phone":"+111111111111","content":{},"date":"2021-10-28 22:27:09","sca":{},"curbox":"0","savetype":"0","priority":"0","smstype":"7"}]}}}
```
### Delete sms message
3 years ago
- delete message
3 years ago
```
3 years ago
huawei-hilink deleteSMS --messageId=40005
3 years ago
```
- delete message with enabled "Require Password"
3 years ago
```
3 years ago
huawei-hilink deleteSMS --messageId=40005 --password="YOUR_PASSWORD"
3 years ago
```
### mobileData
3 years ago
- disable mobile data
3 years ago
```
3 years ago
huawei-hilink mobileData --mode=on --password="YOUR_PASSWORD"
3 years ago
```
- Example enable mobile data
```
3 years ago
huawei-hilink mobileData --mode=off --password="YOUR_PASSWORD"
3 years ago
```
- Example reconnect
```
3 years ago
huawei-hilink mobileData --mode=reconnect --password="YOUR_PASSWORD"
3 years ago
```
### current Monitoring status
3 years ago
- get current status
3 years ago
```
huawei-hilink monitoring
3 years ago
```
```
ConnectionStatus=901
WifiConnectionStatus=[object Object]
SignalStrength=[object Object]
SignalIcon=4
CurrentNetworkType=19
CurrentServiceDomain=3
RoamingStatus=0
BatteryStatus=[object Object]
BatteryLevel=[object Object]
BatteryPercent=[object Object]
simlockStatus=0
PrimaryDns=195.38.164.15
SecondaryDns=195.38.164.16
wififrequence=0
flymode=0
PrimaryIPv6Dns=[object Object]
SecondaryIPv6Dns=[object Object]
CurrentWifiUser=[object Object]
TotalWifiUser=[object Object]
currenttotalwifiuser=0
ServiceStatus=2
SimStatus=1
WifiStatus=[object Object]
CurrentNetworkTypeEx=101
maxsignal=5
wifiindooronly=0
classify=hilink
usbup=0
wifiswitchstatus=0
WifiStatusExCustom=0
hvdcp_online=0
speedLimitStatus=0
poorSignalStatus=0
```
3 years ago
- get status export result as xml
3 years ago
```
huawei-hilink monitoring --exportFile=status.xml --exportFormat=xml
3 years ago
cat ./status.xml
```
Result:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<response>
<ConnectionStatus>901</ConnectionStatus>
<WifiConnectionStatus></WifiConnectionStatus>
<SignalStrength></SignalStrength>
<SignalIcon>3</SignalIcon>
<CurrentNetworkType>19</CurrentNetworkType>
<CurrentServiceDomain>3</CurrentServiceDomain>
<RoamingStatus>0</RoamingStatus>
<BatteryStatus></BatteryStatus>
<BatteryLevel></BatteryLevel>
<BatteryPercent></BatteryPercent>
<simlockStatus>0</simlockStatus>
<PrimaryDns>195.38.164.15</PrimaryDns>
<SecondaryDns>195.38.164.16</SecondaryDns>
<wififrequence>0</wififrequence>
<flymode>0</flymode>
<PrimaryIPv6Dns></PrimaryIPv6Dns>
<SecondaryIPv6Dns></SecondaryIPv6Dns>
<CurrentWifiUser></CurrentWifiUser>
<TotalWifiUser></TotalWifiUser>
<currenttotalwifiuser>0</currenttotalwifiuser>
<ServiceStatus>2</ServiceStatus>
<SimStatus>1</SimStatus>
<WifiStatus></WifiStatus>
<CurrentNetworkTypeEx>101</CurrentNetworkTypeEx>
<maxsignal>5</maxsignal>
<wifiindooronly>0</wifiindooronly>
<classify>hilink</classify>
<usbup>0</usbup>
<wifiswitchstatus>0</wifiswitchstatus>
<WifiStatusExCustom>0</WifiStatusExCustom>
<hvdcp_online>0</hvdcp_online>
<speedLimitStatus>0</speedLimitStatus>
<poorSignalStatus>0</poorSignalStatus>
</response>
```
3 years ago
- get current status export result as json
3 years ago
```
huawei-hilink monitoring --exportFile=status.json --exportFormat=json
3 years ago
cat ./status.json
```
Result:
```json
{"response":{"ConnectionStatus":"901","WifiConnectionStatus":{},"SignalStrength":{},"SignalIcon":"3","CurrentNetworkType":"19","CurrentServiceDomain":"3","RoamingStatus":"0","BatteryStatus":{},"BatteryLevel":{},"BatteryPercent":{},"simlockStatus":"0","PrimaryDns":"195.38.164.15","SecondaryDns":"195.38.164.16","wififrequence":"0","flymode":"0","PrimaryIPv6Dns":{},"SecondaryIPv6Dns":{},"CurrentWifiUser":{},"TotalWifiUser":{},"currenttotalwifiuser":"0","ServiceStatus":"2","SimStatus":"1","WifiStatus":{},"CurrentNetworkTypeEx":"101","maxsignal":"5","wifiindooronly":"0","classify":"hilink","usbup":"0","wifiswitchstatus":"0","WifiStatusExCustom":"0","hvdcp_online":"0","speedLimitStatus":"0","poorSignalStatus":"0"}}
```
3 years ago
## supported encrypt/decrypt hilink api
[Login API](https://github.com/vzakharchenko/huawei-hilink/blob/fa3d36e4df622999c674f39342bb196500208d8b/src/startSession.ts#L57):
- http://${MODEM_API}/api/webserver/token
- http://${MODEM_API}/api/user/challenge_login
- http://${MODEM_API}/api/user/authentication_login
Encrypted/Decrypted API:
- http://${MODEM_API}/api/sms/sms-list-phone
- http://${MODEM_API}/api/sms/sms-list-contact
Only Encrypted API:
- http://${MODEM_API}/api/sms/sms-count-contact
- http://${MODEM_API}/api/sms/delete-sms
- http://${MODEM_API}/api/sms/send-sms
- http://${MODEM_API}/api/dialup/mobile-dataswitch
- http://${MODEM_API}/api/net/reconnect
example how to encrypt/decrypt API
```
const scram = huawei.CryptoJS.SCRAM();
const smsNonce = scram.nonce().toString();
const smsSalt = scram.nonce().toString();
const nonceStr = smsNonce + smsSalt;
const encrpt_nonce = await huawei.doRSAEncrypt(sessionData0, nonceStr);
const data = await huawei.doRSAEncrypt(sessionData, `<?xml version="1.0" encoding="UTF-8"?><request><phone>${phone}</phone><pageindex>${pageindex}</pageindex><readcount>20</readcount><nonce>${encrpt_nonce}</nonce></request>`);
const resp = await restCalls.sendDataRaw(`http://${sessionData0.url}/api/sms/sms-list-phone`, 'POST', data, await getSessionHeaders(sessionData.url));
huawei.publicSession.token2 = resp.headers.__requestverificationtoken;
const pwdret = await parser.parseStringPromise((resp.data));
const decodedResponseText = huawei.dataDecrypt(scram, smsNonce, smsSalt, nonceStr, pwdret);
```
example only encrypt API
```
const scram = huawei.CryptoJS.SCRAM();
const smsNonce = scram.nonce().toString();
const smsSalt = scram.nonce().toString();
const nonceStr = smsNonce + smsSalt;
const encrpt_nonce = await huawei.doRSAEncrypt(sessionData, nonceStr);
const data = await huawei.doRSAEncrypt(sessionData, `<?xml version="1.0" encoding="UTF-8"?><request><Index>-1</Index><Phones><Phone>${(phones)}</Phone></Phones><Sca></Sca><Content>${message}</Content><Length>${message.length}</Length><Reserved>1</Reserved><Date>2021-10-27 00:12:24</Date><nonce>${encrpt_nonce}</nonce></request>`);
const resp = await restCalls.sendDataRaw(`http://${sessionData.url}/api/sms/send-sms`, 'POST', data, await getSessionHeaders(sessionData.url));
huawei.publicSession.token2 = resp.headers.__requestverificationtoken;
const responseText = resp.data;
```