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
|
/* ShiftOS Ports data file
*
* This file contains information about all ports in the game's campaign.
*
*/
[
{
FriendlyName: "SMTP mailserver (unencrypted)",
AttachTo: "EmailServer",
Value: 25,
Name: "smtp",
},
{
FriendlyName: "File Transfer Protocol",
AttachTo: "FileServer",
Value: 21,
Name: "ftp",
},
{
FriendlyName: "ShiftSSH server",
AttachTo: "SSHServer",
Value: 22,
Name: "ssh",
},
{
FriendlyName: "MySQL server",
AttachTo: "Database",
Value: 3306,
Name: "sql",
}
]
|