-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoftetherapi.py
680 lines (591 loc) · 18.8 KB
/
softetherapi.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
# SoftEther Unofficial Client Library
__author__ = 'scaredos' # Steven
__version__ = '0.0.1'
__maintainer__ = 'scaredos'
__email__ = 'scared@tuta.io'
__status__ = 'Production'
import json
import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
# Using requests to disable InsecureRequestWarning
# SoftEther servers commonly have improper certificates
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
class SoftEtherAPI:
"""
Provide credentials for authentication with specified server
:param ip: IP address of SoftEther server
:param port: Port of SoftEther JSON-RPC API (default: 443)
:param hubname: SoftEther username
:param password: SoftEther password
"""
def __init__(self, ip: str, port: int, hubname: str, password: str):
self.ip = ip
self.port = port
self.hubname = hubname
self.password = password
self.session = requests.Session()
self.url = f'https://{self.ip}:{self.port}/api'
def _request_handler(self, json: dict):
"""
Handle requests for functions
:param json: JSON data to POST to SoftEther API
:return: JSON response
"""
response = self.session.post(self.url, json=json)
if response.status_code == 200:
return response.json()
return False
def authenticate(self):
"""
Authenticate using provided credentials
:return: A boolean indiciting whether or not it was successful
"""
self.session.auth = (self.hubname, self.password)
self.session.verify = False
if self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "Test",
"params": {
"IntValue_u32": 0
}
}) != False:
return True
return False
def get_server_info(self):
"""
Get server information
:return: Dict containing server information
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "GetServerInfo",
"params": {}
})
def get_server_status(self):
"""
Get current server status
:return: Dict containing server statusinformation
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "GetServerStatus",
"params": {}
})
def create_listener(self, port: int):
"""
Create new TCP listener
:param port: TCP listener port to manage
:return: Dict containing information on new listener
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "CreateListener",
"params": {
"Port_u32": port,
"Enable_bool": true
}
})
def enum_listener(self):
"""
Get list of TCP listeners
:return: Dict containing list of listeners
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "EnumListener",
"params": {}
})
def delete_listener(self, port: int):
"""
Delete TCP listener
:param port: TCP listener port to manage
:return: Dict containing listener status
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "DeleteListener",
"params": {
"Port_u32": port
}
})
def manage_listener(self, port: int, enabled: bool):
"""
Enable/disable TCP listener
:param port: TCP listener port to manage
:param enabled: Status of TCP listener
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "EnableListener",
"params": {
"Port_u32": port,
"Enable_bool": enabled
}
})
def set_server_password(self, password: str):
"""
Set VPN server administrator password
:param password: Plaintext password for VPN server
:return: Dict indicating new password
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "SetServerPassword",
"params": {
"PlainTextPassword_str": password
}
})
def set_server_cert(self, certBin: str, keyBin: str):
"""
Set SSL certificate and private key of VPN server
:param certBin: SSL certificate
:param keyBin: SSL private key
:return: Dict indicating status of certificate
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "SetServerCert",
"params": {
"Cert_bin": certBin,
"Key_bin": keyBin
}
})
def get_server_cert(self):
"""
Get SSL certificate and private key of VPN server
:return: Dict indicating status of certificate
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "GetServerCert",
"params": {}
})
def get_server_cipher(self):
"""
Get encrypted algorithm used for VPN communication
:return: Dict indicating encrypted algorithm
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "GetServerCipher",
"params": {}
})
def set_server_cipher(self, cipher: str):
"""
Set encryption algorithm for VPN communication
:param cipher: Compatible SoftEther algorithm (AES128-SHA)
:return: Dict indicating encrypted algorithm
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "SetServerCipher",
"params": {
"String_str": cipher
}
})
def create_hub(self, hubname: str, adminpass: str, online: bool, maxsession: int, noenum: bool, hubtype: int):
"""
Create new Virtual Hub
:param hubname: Name of virtual hub
:param adminpass: Administrator password of virtual hub
:param online: Online flag
:param maxsession: Maximum number of VPN sessions
:param noenum: No Enum Flag
:param hubtype: Type of virtual hub (0: standalone, 1: static, 2: dyanmic)
:return: Information of hub
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "CreateHub",
"params": {
"HubName_str": hubname,
"AdminPasswordPlainText_str": adminpass,
"Online_bool": online,
"MaxSession_u32": maxsession,
"NoEnum_bool": noenum,
"HubType_u32": hubtype
}
})
def set_hub(self, hubname: str, adminpass: str, online: bool, maxsession: int, noenum: bool, hubtype: int):
"""
Manage Virtual Hub
:param hubname: Name of virtual hub
:param adminpass: Administrator password of virtual hub
:param online: Online flag
:param maxsession: Maximum number of VPN sessions
:param noenum: No Enum Flag
:param hubtype: Type of virtual hub (0: standalone, 1: static, 2: dyanmic)
:return: Information of hub
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "SetHub",
"params": {
"HubName_str": hubname,
"AdminPasswordPlainText_str": adminpass,
"Online_bool": online,
"MaxSession_u32": maxsession,
"NoEnum_bool": noenum,
"HubType_u32": hubtype
}
})
def get_hub(self, hubname: str):
"""
Get hub information by name
:param hubname: Name of virtual hub
:return: Information of hub
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "GetHub",
"params": {
"HubName_str": hubname
}
})
def enum_hub(self):
"""
Get list of virtual hubs
:return: List of virtual hubs
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "EnumHub",
"params": {}
})
def delete_hub(self, hubname: str):
"""
Delete virtual hub
:param hubname: Name of virtual hub
:return: Dict of hub deleteds
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "DeleteHub",
"params": {
"HubName_str": hubname
}
})
def enum_connection(self):
"""
Get list of TCP connections
:return: Dict containg list of TCP connections
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "EnumConnection",
"params": {}
})
def disconnect_connection(self, connectName: str):
"""
Disconnect TCP connection by name
:param connectName: Connection name
:return: TCP connection disconnected
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "DisconnectConnection",
"params": {
"Name_str": connectName
}
})
def get_connection_info(self, connectName: str):
"""
Get TCP connection information by name
:param connectName: Connection name
:return: Connection information
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "GetConnectionInfo",
"params": {
"Name_str": connectName
}
})
def set_hub_online(self, hubname: str, online: bool = True):
"""
Switch Virtual Hub online/offline
:param hubname: Name of virtual hub
:param online: Online flag (default: True)
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "SetHubOnline",
"params": {
"HubName_str": hubname,
"Online_bool": online
}
})
def get_hub_status(self, hubname: str):
"""
Get hub status
:param hubname: Name of virtual hub
:return: Status of hub
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "GetHubStatus",
"params": {
"HubName_str": hubname
}
})
def get_hub_log(self, hubname: str):
"""
Get hub logs
:param hubname: Name of virtual hub
:return: Logs of hub
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "GetHubLog",
"params": {
"HubName_str": hubname
}
})
def addCa(self, hubname: str, certBin: str):
"""
Add trusted CA certificate to Hub
:param hubname: Name of virtual hub
:param certBin: CA Certificate as string
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "AddCa",
"params": {
"HubName_str": hubname,
"Cert_bin": certbin
}
})
def enum_ca(self, hubname: str):
"""
Get list of trusted CA certificates
:param hubname: Name of virtual hub
:return: List of trusted CA certificates of hub
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "EnumCa",
"params": {
"HubName_str": hubname
}
})
def create_user(self, hubname: str, name: str, realname: str, note: str, expiretime: str, authpassword: str):
"""
Create User
:param hubname: Name of hub to create user within
:param name: User name
:param realname: Use real name
:param note: User note
:param expiretime: Time that user expires (FORMAT: 2020-08-01T12:24:36.123)
:param authpassword: Password for user
:return: User information
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "CreateUser",
"params": {
"HubName_str": hubname,
"Name_str": name,
"Realname_utf": realname,
"Note_utf": note,
"ExpireTime_dt": expiretime,
"AuthType_u32": 1,
"Auth_Password_str": authpassword,
}
})
def set_user(self, hubname: str, name: str, realname: str, note: str, expiretime: str, authpassword: str):
"""
Change user settings
:param hubname: Name of hub to update user within
:param name: User name
:param realname: Use real name
:param note: User note
:param expiretime: Time that user expires (FORMAT: 2020-08-01T12:24:36.123)
:param authpassword: Password for user
:return: User information
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "SetUser",
"params": {
"HubName_str": hubname,
"Name_str": name,
"Realname_utf": realname,
"Note_utf": note,
"ExpireTime_dt": expiretime,
"AuthType_u32": 1,
"Auth_Password_str": authpassword,
}
})
def get_user(self, hubname: str, name: str):
"""
Change user settings
:param hubname: Name of hub to get user within
:param name: User name
:return: User information
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "GetUser",
"params": {
"HubName_str": hubname,
"Name_str": name
}
})
def delete_user(self, hubname: str, name: str):
"""
Delete User
:param hubname: Name of hub to delete user within
:param name: User name
:return: User information
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "DeleteUser",
"params": {
"HubName_str": hubname,
"Name_str": name
}
})
def enum_user(self, hubname: str):
"""
Get list of users
:param hubname: Name of virtual hub
:return: Dict with list of users
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "EnumUser",
"params": {
"HubName_str": hubname
}
})
# TODO:
# Add group management functions
# - SetGroup
# - DeleteGroup
# - CreateGroup
# - GetGroup
# - EnumGroup
def enumSession(self, hubname: str):
"""
Get list of VPN sessions
:param hubname: Name of virtual hub
:return: List of VPN sessions
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "EnumSession",
"params": {
"HubName_str": hubname
}
})
def getSessionStatus(self, hubname: str, name: str):
"""
Get status of session
:param hubname: Name of virtual hub
:param name: Name of session
:return: Status of session
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "GetSessionStatus",
"params": {
"HubName_str": hubname,
"Name_str": name
}
})
def delete_session(self, hubname: str, name: str):
"""
Delete session
:param hubname: Name of virtual hub
:param name: Name of session
:return: Status of session
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "DeleteSession",
"params": {
"HubName_str": hubname,
"Name_str": name
}
})
# TODO:
# Add MAC and iptable functions
# - EnumIpTable
# - DeleteIpTable
# - EnumMacTable
# - DeleteMacTable
def enable_secure_nat(self, hubname: str):
"""
Enable SecureNAT (Virtual NAT and DHCP Server)
:param hubname: Name of virtual hub
:return: Virtual hub
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "EnableSecureNAT",
"params": {
"HubName_str": hubname
}
})
def disable_secure_nat(self, hubname: str):
"""
Disable SecureNAT (Virtual NAT and DHCP Server)
:param hubname: Name of virtual hub
:return: Virtual hub
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "DisableSecureNAT",
"params": {
"HubName_str": hubname
}
})
def reboot_server(self):
"""
Reboot server
:return: Server status
"""
return self._request_handler(json={
"jsonrpc": "2.0",
"id": "rpc_call_id",
"method": "RebootServer",
"params": {}
})
# TODO:
# Add all other functions that are non-essential to most users