2015-11-04 11:52:13 +01:00
|
|
|
|
<?php
|
2017-11-02 15:43:41 +01:00
|
|
|
|
/* Functions for Networking */
|
|
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function mask2cidr($mask)
|
|
|
|
|
{
|
|
|
|
|
$long = ip2long($mask);
|
|
|
|
|
$base = ip2long('255.255.255.255');
|
|
|
|
|
return 32-log(($long ^ $base)+1, 2);
|
2017-11-02 15:43:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Functions to write ini files */
|
|
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function write_php_ini($array, $file)
|
|
|
|
|
{
|
2017-11-02 15:43:41 +01:00
|
|
|
|
$res = array();
|
2019-04-10 10:37:35 +02:00
|
|
|
|
foreach ($array as $key => $val) {
|
|
|
|
|
if (is_array($val)) {
|
2017-11-02 15:43:41 +01:00
|
|
|
|
$res[] = "[$key]";
|
2019-04-10 10:37:35 +02:00
|
|
|
|
foreach ($val as $skey => $sval) {
|
2019-05-01 00:57:12 +02:00
|
|
|
|
$res[] = "$skey = $sval";
|
2019-04-10 10:37:35 +02:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2019-05-01 00:36:35 +02:00
|
|
|
|
$res[] = "$key = $val";
|
2017-11-02 15:43:41 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-05-01 00:18:44 +02:00
|
|
|
|
if (safefilerewrite($file, implode(PHP_EOL, $res))) {
|
2017-11-02 15:43:41 +01:00
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function safefilerewrite($fileName, $dataToSave)
|
|
|
|
|
{
|
2017-11-02 15:43:41 +01:00
|
|
|
|
if ($fp = fopen($fileName, 'w')) {
|
2019-04-10 10:37:35 +02:00
|
|
|
|
$startTime = microtime(true);
|
2017-11-02 15:43:41 +01:00
|
|
|
|
do {
|
|
|
|
|
$canWrite = flock($fp, LOCK_EX);
|
|
|
|
|
// If lock not obtained sleep for 0 - 100 milliseconds, to avoid collision and CPU load
|
2019-04-10 10:37:35 +02:00
|
|
|
|
if (!$canWrite) {
|
|
|
|
|
usleep(round(rand(0, 100)*1000));
|
|
|
|
|
}
|
|
|
|
|
} while ((!$canWrite)and((microtime(true)-$startTime) < 5));
|
2017-11-02 15:43:41 +01:00
|
|
|
|
|
|
|
|
|
//file was locked so now we can store information
|
|
|
|
|
if ($canWrite) {
|
2019-05-01 00:57:12 +02:00
|
|
|
|
fwrite($fp, $dataToSave.PHP_EOL);
|
2017-11-02 15:43:41 +01:00
|
|
|
|
flock($fp, LOCK_UN);
|
|
|
|
|
}
|
|
|
|
|
fclose($fp);
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-30 17:38:33 +02:00
|
|
|
|
/**
|
|
|
|
|
* Saves a CSRF token in the session
|
|
|
|
|
*/
|
|
|
|
|
function ensureCSRFSessionToken()
|
|
|
|
|
{
|
2019-07-30 20:15:10 +02:00
|
|
|
|
$_SESSION['csrf_token'] = bin2hex(random_bytes(32));
|
2019-07-30 17:38:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-24 23:39:39 +02:00
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* Add CSRF Token to form
|
|
|
|
|
*
|
|
|
|
|
*/
|
2019-08-01 13:07:27 +02:00
|
|
|
|
function CSRFTokenFieldTag()
|
2019-04-10 10:37:35 +02:00
|
|
|
|
{
|
2019-08-01 13:01:03 +02:00
|
|
|
|
$token = htmlspecialchars($_SESSION['csrf_token']);
|
2019-08-01 13:11:07 +02:00
|
|
|
|
return '<input type="hidden" name="csrf_token" value="' . $token . '">';
|
2016-06-24 23:39:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-30 17:22:03 +02:00
|
|
|
|
/**
|
|
|
|
|
* Retuns a CSRF meta tag (for use with xhr, for example)
|
|
|
|
|
*/
|
|
|
|
|
function CSRFMetaTag()
|
|
|
|
|
{
|
|
|
|
|
$token = htmlspecialchars($_SESSION['csrf_token']);
|
|
|
|
|
return '<meta name="csrf_token" content="' . $token . '">';
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-24 23:39:39 +02:00
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* Validate CSRF Token
|
|
|
|
|
*
|
|
|
|
|
*/
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function CSRFValidate()
|
|
|
|
|
{
|
2019-07-30 17:28:03 +02:00
|
|
|
|
$post_token = $_POST['csrf_token'];
|
|
|
|
|
$header_token = $_SERVER['HTTP_X_CSRF_TOKEN'];
|
|
|
|
|
|
|
|
|
|
if (empty($post_token) && empty($header_token)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$request_token = $post_token;
|
|
|
|
|
if (empty($post_token)) {
|
|
|
|
|
$request_token = $header_token;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (hash_equals($_SESSION['csrf_token'], $request_token)) {
|
2019-04-10 10:37:35 +02:00
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
error_log('CSRF violation');
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2016-06-24 23:39:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-30 17:05:00 +02:00
|
|
|
|
/**
|
|
|
|
|
* Should the request be CSRF-validated?
|
|
|
|
|
*/
|
|
|
|
|
function csrfValidateRequest()
|
|
|
|
|
{
|
|
|
|
|
$request_method = strtolower($_SERVER['REQUEST_METHOD']);
|
|
|
|
|
return in_array($request_method, [ "post", "put", "patch", "delete" ]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handle invalid CSRF
|
|
|
|
|
*/
|
|
|
|
|
function handleInvalidCSRFToken()
|
|
|
|
|
{
|
|
|
|
|
header('HTTP/1.1 500 Internal Server Error');
|
|
|
|
|
header('Content-Type: text/plain');
|
|
|
|
|
echo 'Invalid CSRF token';
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-05 16:50:05 +02:00
|
|
|
|
/**
|
|
|
|
|
* Test whether array is associative
|
|
|
|
|
*/
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function isAssoc($arr)
|
|
|
|
|
{
|
|
|
|
|
return array_keys($arr) !== range(0, count($arr) - 1);
|
2016-08-05 16:50:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* Display a selector field for a form. Arguments are:
|
|
|
|
|
* $name: Field name
|
|
|
|
|
* $options: Array of options
|
|
|
|
|
* $selected: Selected option (optional)
|
|
|
|
|
* If $options is an associative array this should be the key
|
|
|
|
|
*
|
|
|
|
|
*/
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function SelectorOptions($name, $options, $selected = null, $id = null)
|
|
|
|
|
{
|
|
|
|
|
echo '<select class="form-control" name="'.htmlspecialchars($name, ENT_QUOTES).'"';
|
|
|
|
|
if (isset($id)) {
|
|
|
|
|
echo ' id="' . htmlspecialchars($id, ENT_QUOTES) .'"';
|
2016-08-05 16:50:05 +02:00
|
|
|
|
}
|
2018-08-04 01:58:34 +02:00
|
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
|
echo '>' , PHP_EOL;
|
|
|
|
|
foreach ($options as $opt => $label) {
|
|
|
|
|
$select = '';
|
|
|
|
|
$key = isAssoc($options) ? $opt : $label;
|
|
|
|
|
if ($key == $selected) {
|
|
|
|
|
$select = ' selected="selected"';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
echo '<option value="'.htmlspecialchars($key, ENT_QUOTES).'"'.$select.'>'.
|
2018-08-16 14:48:47 +02:00
|
|
|
|
htmlspecialchars($label, ENT_QUOTES).'</option>' , PHP_EOL;
|
2019-04-10 10:37:35 +02:00
|
|
|
|
}
|
2018-08-04 01:58:34 +02:00
|
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
|
echo '</select>' , PHP_EOL;
|
2016-08-05 16:50:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-25 14:08:14 +01:00
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @param string $input
|
|
|
|
|
* @param string $string
|
|
|
|
|
* @param int $offset
|
|
|
|
|
* @param string $separator
|
|
|
|
|
* @return $string
|
|
|
|
|
*/
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function GetDistString($input, $string, $offset, $separator)
|
|
|
|
|
{
|
|
|
|
|
$string = substr($input, strpos($input, $string)+$offset, strpos(substr($input, strpos($input, $string)+$offset), $separator));
|
|
|
|
|
return $string;
|
2015-02-25 14:08:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @param array $arrConfig
|
|
|
|
|
* @return $config
|
|
|
|
|
*/
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function ParseConfig($arrConfig)
|
|
|
|
|
{
|
|
|
|
|
$config = array();
|
|
|
|
|
foreach ($arrConfig as $line) {
|
|
|
|
|
$line = trim($line);
|
2019-08-01 16:31:11 +02:00
|
|
|
|
if ($line == "" || $line[0] == "#") { continue; }
|
|
|
|
|
|
|
|
|
|
list($option, $value) = array_map("trim", explode("=", $line, 2));
|
|
|
|
|
|
|
|
|
|
if (empty($config[$option])) {
|
|
|
|
|
$config[$option] = $value ?: true;
|
|
|
|
|
} else {
|
|
|
|
|
if (!is_array($config[$option])) {
|
|
|
|
|
$config[$option] = [ $config[$option] ];
|
|
|
|
|
}
|
|
|
|
|
$config[$option][] = $value;
|
2019-04-10 10:37:35 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $config;
|
2015-02-25 14:08:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @param string $freq
|
|
|
|
|
* @return $channel
|
|
|
|
|
*/
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function ConvertToChannel($freq)
|
|
|
|
|
{
|
|
|
|
|
if ($freq >= 2412 && $freq <= 2484) {
|
|
|
|
|
$channel = ($freq - 2407)/5;
|
|
|
|
|
} elseif ($freq >= 4915 && $freq <= 4980) {
|
|
|
|
|
$channel = ($freq - 4910)/5 + 182;
|
|
|
|
|
} elseif ($freq >= 5035 && $freq <= 5865) {
|
|
|
|
|
$channel = ($freq - 5030)/5 + 6;
|
|
|
|
|
} else {
|
|
|
|
|
$channel = -1;
|
|
|
|
|
}
|
|
|
|
|
if ($channel >= 1 && $channel <= 196) {
|
|
|
|
|
return $channel;
|
|
|
|
|
} else {
|
|
|
|
|
return 'Invalid Channel';
|
|
|
|
|
}
|
2015-02-25 14:08:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2015-02-27 16:11:56 +01:00
|
|
|
|
* Converts WPA security string to readable format
|
2015-02-25 14:08:14 +01:00
|
|
|
|
* @param string $security
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function ConvertToSecurity($security)
|
|
|
|
|
{
|
|
|
|
|
$options = array();
|
|
|
|
|
preg_match_all('/\[([^\]]+)\]/s', $security, $matches);
|
|
|
|
|
foreach ($matches[1] as $match) {
|
|
|
|
|
if (preg_match('/^(WPA\d?)/', $match, $protocol_match)) {
|
|
|
|
|
$protocol = $protocol_match[1];
|
|
|
|
|
$matchArr = explode('-', $match);
|
|
|
|
|
if (count($matchArr) > 2) {
|
|
|
|
|
$options[] = htmlspecialchars($protocol . ' ('. $matchArr[2] .')', ENT_QUOTES);
|
|
|
|
|
} else {
|
|
|
|
|
$options[] = htmlspecialchars($protocol, ENT_QUOTES);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (count($options) === 0) {
|
|
|
|
|
// This could also be WEP but wpa_supplicant doesn't have a way to determine
|
|
|
|
|
// this.
|
|
|
|
|
// And you shouldn't be using WEP these days anyway.
|
|
|
|
|
return 'Open';
|
|
|
|
|
} else {
|
|
|
|
|
return implode('<br />', $options);
|
2016-08-12 19:29:56 +02:00
|
|
|
|
}
|
2015-02-25 14:08:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function DisplayOpenVPNConfig()
|
|
|
|
|
{
|
2015-02-25 14:08:14 +01:00
|
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
|
exec('cat '. RASPI_OPENVPN_CLIENT_CONFIG, $returnClient);
|
|
|
|
|
exec('cat '. RASPI_OPENVPN_SERVER_CONFIG, $returnServer);
|
|
|
|
|
exec('pidof openvpn | wc -l', $openvpnstatus);
|
2015-02-25 14:08:14 +01:00
|
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
|
if ($openvpnstatus[0] == 0) {
|
|
|
|
|
$status = '<div class="alert alert-warning alert-dismissable">OpenVPN is not running
|
2015-02-25 14:08:14 +01:00
|
|
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button></div>';
|
2019-04-10 10:37:35 +02:00
|
|
|
|
} else {
|
|
|
|
|
$status = '<div class="alert alert-success alert-dismissable">OpenVPN is running
|
2015-02-25 14:08:14 +01:00
|
|
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button></div>';
|
2019-04-10 10:37:35 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// parse client settings
|
|
|
|
|
foreach ($returnClient as $a) {
|
|
|
|
|
if ($a[0] != "#") {
|
|
|
|
|
$arrLine = explode(" ", $a) ;
|
|
|
|
|
$arrClientConfig[$arrLine[0]]=$arrLine[1];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// parse server settings
|
|
|
|
|
foreach ($returnServer as $a) {
|
|
|
|
|
if ($a[0] != "#") {
|
|
|
|
|
$arrLine = explode(" ", $a) ;
|
|
|
|
|
$arrServerConfig[$arrLine[0]]=$arrLine[1];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-12">
|
|
|
|
|
<div class="panel panel-primary">
|
|
|
|
|
<div class="panel-heading"><i class="fa fa-lock fa-fw"></i> Configure OpenVPN </div>
|
|
|
|
|
<!-- /.panel-heading -->
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
<!-- Nav tabs -->
|
|
|
|
|
<ul class="nav nav-tabs">
|
|
|
|
|
<li class="active"><a href="#openvpnclient" data-toggle="tab">Client settings</a></li>
|
|
|
|
|
<li><a href="#openvpnserver" data-toggle="tab">Server settings</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
<!-- Tab panes -->
|
|
|
|
|
<div class="tab-content">
|
|
|
|
|
<p><?php echo $status; ?></p>
|
|
|
|
|
<div class="tab-pane fade in active" id="openvpnclient">
|
|
|
|
|
|
|
|
|
|
<h4>Client settings</h4>
|
|
|
|
|
<form role="form" action="?page=save_hostapd_conf" method="POST">
|
|
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label>Select OpenVPN configuration file (.ovpn)</label>
|
|
|
|
|
<input type="file" name="openvpn-config">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">Client Log</label>
|
|
|
|
|
<input type="text" class="form-control" id="disabledInput" name="log-append" type="text" placeholder="<?php echo htmlspecialchars($arrClientConfig['log-append'], ENT_QUOTES); ?>" disabled="disabled" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-pane fade" id="openvpnserver">
|
|
|
|
|
<h4>Server settings</h4>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">Port</label>
|
|
|
|
|
<input type="text" class="form-control" name="openvpn_port" value="<?php echo htmlspecialchars($arrServerConfig['port'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">Protocol</label>
|
|
|
|
|
<input type="text" class="form-control" name="openvpn_proto" value="<?php echo htmlspecialchars($arrServerConfig['proto'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">Root CA certificate</label>
|
|
|
|
|
<input type="text" class="form-control" name="openvpn_rootca" placeholder="<?php echo htmlspecialchars($arrServerConfig['ca'], ENT_QUOTES); ?>" disabled="disabled" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">Server certificate</label>
|
|
|
|
|
<input type="text" class="form-control" name="openvpn_cert" placeholder="<?php echo htmlspecialchars($arrServerConfig['cert'], ENT_QUOTES); ?>" disabled="disabled" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">Diffie Hellman parameters</label>
|
|
|
|
|
<input type="text" class="form-control" name="openvpn_dh" placeholder="<?php echo htmlspecialchars($arrServerConfig['dh'], ENT_QUOTES); ?>" disabled="disabled" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">KeepAlive</label>
|
|
|
|
|
<input type="text" class="form-control" name="openvpn_keepalive" value="<?php echo htmlspecialchars($arrServerConfig['keepalive'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">Server log</label>
|
|
|
|
|
<input type="text" class="form-control" name="openvpn_status" placeholder="<?php echo htmlspecialchars($arrServerConfig['status'], ENT_QUOTES); ?>" disabled="disabled" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<input type="submit" class="btn btn-outline btn-primary" name="SaveOpenVPNSettings" value="Save settings" />
|
|
|
|
|
<?php
|
|
|
|
|
if ($hostapdstatus[0] == 0) {
|
|
|
|
|
echo '<input type="submit" class="btn btn-success" name="StartOpenVPN" value="Start OpenVPN" />' , PHP_EOL;
|
|
|
|
|
} else {
|
|
|
|
|
echo '<input type="submit" class="btn btn-warning" name="StopOpenVPN" value="Stop OpenVPN" />' , PHP_EOL;
|
|
|
|
|
}
|
2018-08-04 01:58:34 +02:00
|
|
|
|
?>
|
2019-04-10 10:37:35 +02:00
|
|
|
|
</form>
|
|
|
|
|
</div><!-- /.panel-body -->
|
|
|
|
|
</div><!-- /.panel-primary -->
|
|
|
|
|
<div class="panel-footer"> Information provided by openvpn</div>
|
2015-02-25 14:08:14 +01:00
|
|
|
|
</div><!-- /.col-lg-12 -->
|
|
|
|
|
</div><!-- /.row -->
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function DisplayTorProxyConfig()
|
|
|
|
|
{
|
2015-02-25 14:08:14 +01:00
|
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
|
exec('cat '. RASPI_TORPROXY_CONFIG, $return);
|
|
|
|
|
exec('pidof tor | wc -l', $torproxystatus);
|
2015-02-25 14:08:14 +01:00
|
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
|
if ($torproxystatus[0] == 0) {
|
|
|
|
|
$status = '<div class="alert alert-warning alert-dismissable">TOR is not running
|
2015-02-25 14:08:14 +01:00
|
|
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button></div>';
|
2019-04-10 10:37:35 +02:00
|
|
|
|
} else {
|
|
|
|
|
$status = '<div class="alert alert-success alert-dismissable">TOR is running
|
2015-02-25 14:08:14 +01:00
|
|
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button></div>';
|
2019-04-10 10:37:35 +02:00
|
|
|
|
}
|
2015-02-25 14:08:14 +01:00
|
|
|
|
|
2019-04-10 10:37:35 +02:00
|
|
|
|
$arrConfig = array();
|
|
|
|
|
foreach ($return as $a) {
|
|
|
|
|
if ($a[0] != "#") {
|
|
|
|
|
$arrLine = explode(" ", $a) ;
|
|
|
|
|
$arrConfig[$arrLine[0]]=$arrLine[1];
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-02-25 14:08:14 +01:00
|
|
|
|
|
2018-08-04 01:58:34 +02:00
|
|
|
|
?>
|
2019-04-10 10:37:35 +02:00
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-12">
|
|
|
|
|
<div class="panel panel-primary">
|
|
|
|
|
<div class="panel-heading"><i class="fa fa-eye-slash fa-fw"></i> Configure TOR proxy</div>
|
2015-02-25 14:08:14 +01:00
|
|
|
|
<!-- /.panel-heading -->
|
|
|
|
|
<div class="panel-body">
|
2019-04-10 10:37:35 +02:00
|
|
|
|
<!-- Nav tabs -->
|
2015-02-25 14:08:14 +01:00
|
|
|
|
<ul class="nav nav-tabs">
|
|
|
|
|
<li class="active"><a href="#basic" data-toggle="tab">Basic</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li><a href="#relay" data-toggle="tab">Relay</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<!-- Tab panes -->
|
2019-04-10 10:37:35 +02:00
|
|
|
|
<div class="tab-content">
|
|
|
|
|
<p><?php echo $status; ?></p>
|
|
|
|
|
|
|
|
|
|
<div class="tab-pane fade in active" id="basic">
|
|
|
|
|
<h4>Basic settings</h4>
|
|
|
|
|
<form role="form" action="?page=save_hostapd_conf" method="POST">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">VirtualAddrNetwork</label>
|
|
|
|
|
<input type="text" class="form-control" name="virtualaddrnetwork" value="<?php echo htmlspecialchars($arrConfig['VirtualAddrNetwork'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">AutomapHostsSuffixes</label>
|
|
|
|
|
<input type="text" class="form-control" name="automaphostssuffixes" value="<?php echo htmlspecialchars($arrConfig['AutomapHostsSuffixes'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">AutomapHostsOnResolve</label>
|
|
|
|
|
<input type="text" class="form-control" name="automaphostsonresolve" value="<?php echo htmlspecialchars($arrConfig['AutomapHostsOnResolve'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">TransListenAddress</label>
|
|
|
|
|
<input type="text" class="form-control" name="translistenaddress" value="<?php echo htmlspecialchars($arrConfig['TransListenAddress'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">DNSPort</label>
|
|
|
|
|
<input type="text" class="form-control" name="dnsport" value="<?php echo htmlspecialchars($arrConfig['DNSPort'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">DNSListenAddress</label>
|
|
|
|
|
<input type="text" class="form-control" name="dnslistenaddress" value="<?php echo htmlspecialchars($arrConfig['DNSListenAddress'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-pane fade" id="relay">
|
|
|
|
|
<h4>Relay settings</h4>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">ORPort</label>
|
|
|
|
|
<input type="text" class="form-control" name="orport" value="<?php echo htmlspecialchars($arrConfig['ORPort'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">ORListenAddress</label>
|
|
|
|
|
<input type="text" class="form-control" name="orlistenaddress" value="<?php echo htmlspecialchars($arrConfig['ORListenAddress'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">Nickname</label>
|
|
|
|
|
<input type="text" class="form-control" name="nickname" value="<?php echo htmlspecialchars($arrConfig['Nickname'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">Address</label>
|
|
|
|
|
<input type="text" class="form-control" name="address" value="<?php echo htmlspecialchars($arrConfig['Address'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">RelayBandwidthRate</label>
|
|
|
|
|
<input type="text" class="form-control" name="relaybandwidthrate" value="<?php echo htmlspecialchars($arrConfig['RelayBandwidthRate'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="form-group col-md-4">
|
|
|
|
|
<label for="code">RelayBandwidthBurst</label>
|
|
|
|
|
<input type="text" class="form-control" name="relaybandwidthburst" value="<?php echo htmlspecialchars($arrConfig['RelayBandwidthBurst'], ENT_QUOTES); ?>" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<input type="submit" class="btn btn-outline btn-primary" name="SaveTORProxySettings" value="Save settings" />
|
|
|
|
|
<?php
|
|
|
|
|
if ($torproxystatus[0] == 0) {
|
|
|
|
|
echo '<input type="submit" class="btn btn-success" name="StartTOR" value="Start TOR" />' , PHP_EOL;
|
|
|
|
|
} else {
|
|
|
|
|
echo '<input type="submit" class="btn btn-warning" name="StopTOR" value="Stop TOR" />' , PHP_EOL;
|
|
|
|
|
};
|
|
|
|
|
?>
|
|
|
|
|
</form>
|
|
|
|
|
</div><!-- /.tab-content -->
|
|
|
|
|
</div><!-- /.panel-body -->
|
|
|
|
|
<div class="panel-footer"> Information provided by tor</div>
|
2015-02-25 14:08:14 +01:00
|
|
|
|
</div><!-- /.panel-primary -->
|
|
|
|
|
</div><!-- /.col-lg-12 -->
|
|
|
|
|
</div><!-- /.row -->
|
2019-04-10 10:37:35 +02:00
|
|
|
|
<?php
|
2015-02-25 14:08:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-05 22:38:02 +02:00
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
2019-04-10 10:37:35 +02:00
|
|
|
|
function SaveTORAndVPNConfig()
|
|
|
|
|
{
|
|
|
|
|
if (isset($_POST['SaveOpenVPNSettings'])) {
|
|
|
|
|
// TODO
|
|
|
|
|
} elseif (isset($_POST['SaveTORProxySettings'])) {
|
|
|
|
|
// TODO
|
|
|
|
|
} elseif (isset($_POST['StartOpenVPN'])) {
|
|
|
|
|
echo "Attempting to start openvpn";
|
|
|
|
|
exec('sudo /etc/init.d/openvpn start', $return);
|
|
|
|
|
foreach ($return as $line) {
|
|
|
|
|
echo htmlspecialchars($line, ENT_QUOTES).'<br />' , PHP_EOL;
|
|
|
|
|
}
|
|
|
|
|
} elseif (isset($_POST['StopOpenVPN'])) {
|
|
|
|
|
echo "Attempting to stop openvpn";
|
|
|
|
|
exec('sudo /etc/init.d/openvpn stop', $return);
|
|
|
|
|
foreach ($return as $line) {
|
|
|
|
|
echo htmlspecialchars($line, ENT_QUOTES).'<br />' , PHP_EOL;
|
|
|
|
|
}
|
|
|
|
|
} elseif (isset($_POST['StartTOR'])) {
|
|
|
|
|
echo "Attempting to start TOR";
|
|
|
|
|
exec('sudo /etc/init.d/tor start', $return);
|
|
|
|
|
foreach ($return as $line) {
|
|
|
|
|
echo htmlspecialchars($line, ENT_QUOTES).'<br />' , PHP_EOL;
|
|
|
|
|
}
|
|
|
|
|
} elseif (isset($_POST['StopTOR'])) {
|
|
|
|
|
echo "Attempting to stop TOR";
|
|
|
|
|
exec('sudo /etc/init.d/tor stop', $return);
|
|
|
|
|
foreach ($return as $line) {
|
|
|
|
|
echo htmlspecialchars($line, ENT_QUOTES).'<br />' , PHP_EOL;
|
|
|
|
|
}
|
2016-08-05 22:38:02 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-08-04 01:58:34 +02:00
|
|
|
|
|