-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnect.php
37 lines (35 loc) · 2.1 KB
/
connect.php
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
<?php
+-------------------------------------------------------------------------+
| RubioVPN - A ProtonVPN connection web-based |
| Version 1.0.0 |
| |
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation. |
| |
| This file forms part of the RubioTV software. |
| |
| If you wish to use this file in another project or create a modified |
| version that will not be part of the RubioTV Software, you |
| may remove the exception above and use this source code under the |
| original version of the license. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with this program. If not, see http://www.gnu.org/licenses/. |
| |
+-------------------------------------------------------------------------+
| Author: Jaime Rubio <jaime@rubiogafsi.com> |
+-------------------------------------------------------------------------+
include "constants.php";
include "functions.php";
$newnode = $_POST['node'];
if($newnode) {
die(start_vpn($newnode));
} else {
die(false);
}