@ -78,11 +78,11 @@ function get_string_between($string, $start, $end)
function CSRFToken()
function CSRFToken()
{
{
?>
?>
< input id = "csrf_token" type = "hidden" name = "csrf_token" value = " <?php echo htmlspecialchars (
< input id = "csrf_token" type = "hidden" name = "csrf_token" value = " <?php echo htmlspecialchars (
$_SESSION["csrf_token"],
$_SESSION[" csrf_token "],
ENT_QUOTES
ENT_QUOTES
); ?>" />
); ?>" />
<?php
<?php
}
}
/**
/**
@ -260,74 +260,73 @@ function DisplayLokinetConfig()
);
);
$lokiversion = exec("dpkg -s lokinet | grep '^Version:'", $output);
$lokiversion = exec("dpkg -s lokinet | grep '^Version:'", $output);
?>
?>
< div class = "row" >
< div class = "row" >
< div class = "col-lg-12" >
< div class = "col-lg-12" >
< div class = "panel panel-primary" >
< div class = "panel panel-primary" >
< div class = "panel-heading" > < i class = "fa fa-eye-slash fa-fw" > < / i > Configure Lokinet< / div >
< div class = "panel-heading" > < i class = "fa fa-eye-slash fa-fw" > < / i > Configure Lokinet< / div >
<!-- /.panel - heading -->
<!-- /.panel - heading -->
< div class = "panel-body" >
< div class = "panel-body" >
<!-- Nav tabs -->
<!-- Nav tabs -->
< ul class = "nav nav-tabs" >
< ul class = "nav nav-tabs" >
< li class = "active" > < a href = "#basic" data-toggle = "tab" > Exit Node Settings< / a >
< li class = "active" > < a href = "#basic" data-toggle = "tab" > Exit Node Settings< / a > < / li >
< / li >
< li > < a href = "#Mobile" data-toggle = "tab" > Mobile APN< / a > < / li >
< li > < a href = "#Mobile" data-toggle = "tab" > Mobile APN< / a >
< li > < a href = "#whois" data-toggle = "tab" > WHOIS< / a > < / li >
< / li >
< / ul >
< li > < a href = "#whois" data-toggle = "tab" > WHOIS< / a >
<!-- Tab panes -- >
< / li >
< div class = "tab-content" >
< p >
< / ul >
<?php echo $status ; ? >
<!-- Tab panes -- >
< / p >
< div class = "tab-content" >
< p >
< p > <?php echo $status ; ?> </ p >
<?php echo "Current Lokinet $lokiversion " ; ? >
< p > <?php echo "Current Lokinet $lokiversion " ; ?> < /p >
< /p >
< div class = "tab-pane fade in active" id = "basic" >
< div class = "tab-pane fade in active" id = "basic" >
< form role = "form" action = "?page=save_hostapd_conf" method = "POST" >
< form role = "form" action = "?page=save_hostapd_conf" method = "POST" >
< h5 > Enter Exit Node Data to activate:< / h5 >
< h5 > Enter Exit Node Data to activate:< / h5 >
< label for = "exitaddress" > Exit:< / label >
< label for = "exitaddress" > Exit:< / label >
< input type = "text" class = "form-control" list = "exitaddresses" placeholder = "enter exit address here" id = "exitaddress" name = "exitaddress" onchange = "OnSelectionChange()" >
< input type = "text" class = "form-control" list = "exitaddresses" placeholder = "enter exit address here" id = "exitaddress" name = "exitaddress" onchange = "OnSelectionChange()" >
<?php $api_url = 'https://my-json-server.typicode.com/necro-nemesis/exits-api/exits' ;
<?php $api_url = 'https://my-json-server.typicode.com/necro-nemesis/exits-api/exits' ;
// Read JSON file
// Read JSON file
$json_data = file_get_contents($api_url);
$json_data = file_get_contents($api_url);
// Decode JSON data into PHP array
// Decode JSON data into PHP array
$response_data = json_decode($json_data,true);
$response_data = json_decode($json_data,true);
?>
?>
< datalist id = "exitaddresses" >
< datalist id = "exitaddresses" >
<?php foreach ( $response_data as $response ){
<?php foreach ( $response_data as $response ){
$listedexits = '< option value = \''.$response['exit'].'\' > ';
$listedexits = '< option value = \''.$response['exit'].'\' > ';
echo $listedexits;
echo $listedexits;
}
}
?>
?>
< / datalist >
< / datalist >
< script >
< script >
//JSON Authentication Token Handler
//JSON Authentication Token Handler
async function OnSelectionChange() {
async function OnSelectionChange(){
var selection = document.getElementById("exitaddress").value;
var selection = document.getElementById("exitaddress").value;
const endpoint = 'https://my-json-server.typicode.com/necro-nemesis/exits-api/db';
const endpoint = 'https://my-json-server.typicode.com/necro-nemesis/exits-api/db';
const response = await fetch(endpoint);
const response = await fetch(endpoint);
const data = await response.json();
const data = await response.json();
for(var i = 0; i < data [ ' exits ' ] . length ; i + + ) {
for (var i = 0; i < data [ ' exits ' ] . length ; i + + ) {
if(data['exits'][i]['exit'] == selection) {
if (data['exits'][i]['exit'] == selection) {
const {
const { exit, auth, geo, rate } = data['exits'][i];
exit, auth, geo, rate
console.log('Exit name : ' + exit);
} = data['exits'][i];
console.log('Exit token : '+ auth);
console.log('Exit name : ' + exit);
console.log('Exit location : ' + geo);
console.log('Exit token : ' + auth);
console.log('Exit rate : ' + rate);
console.log('Exit location : ' + geo);
console.log('Dropdown selection : ' + selection);
console.log('Exit rate : ' + rate);
alert('EXIT NODE INFORMATION\r\rExit Address : ' + exit + '\rExit Location : ' + geo + '\rExit Autorization Key : ' + auth + '\rMonthly Rate : ' + rate);
console.log('Dropdown selection : ' + selection);
document.getElementById("auth").value = auth;
alert('EXIT NODE INFORMATION\r\rExit Address : ' + exit + '\rExit Location : ' + geo + '\rExit Autorization Key : ' + auth + '\rMonthly Rate : ' + rate);
break;
document.getElementById("auth").value = auth;
}
break;
}
}
}
}
< / script >
}
< / script >
< label for = "exitkey" > Exit Key: (optional)< / label >
< label for = "exitkey" > Exit Key: (optional)< / label >
< input type = "text" class = "form-control" id = "auth" placeholder = "optional exit authorization key" id = "exitkey" name = "exitkey" >
< input type = "text" class = "form-control" id = "auth" placeholder = "optional exit authorization key" id = "exitkey" name = "exitkey" >
< br / >
< br / >
< input type = "reset" class = "btn btn-default" value = "Clear" >
< input type = "reset" class = "btn btn-default" value = "Clear" >
<?php
<?php
if ($exitstatus != "no exits") {
if ($exitstatus != "no exits") {
echo '< input type = "submit" class = "btn btn-danger" name = "StopExit" value = "Stop Exit" / > ', PHP_EOL;
echo '< input type = "submit" class = "btn btn-danger" name = "StopExit" value = "Stop Exit" / > ', PHP_EOL;
} else {
} else {
@ -339,79 +338,57 @@ function DisplayLokinetConfig()
echo '< input type = "submit" class = "btn btn-danger" name = "StopDaemon" value = "Stop Daemon" / > ', PHP_EOL;
echo '< input type = "submit" class = "btn btn-danger" name = "StopDaemon" value = "Stop Daemon" / > ', PHP_EOL;
}
}
?>
?>
<!-- Trigger the modal with a button -->
<!-- Trigger the modal with a button -->
< button type = "button" class = "btn btn-default" data-toggle = "modal" data-target = "#myModal" > About< / button >
< button type = "button" class = "btn btn-default" data-toggle = "modal" data-target = "#myModal" > About< / button >
<!-- Modal -->
< div id = "myModal" class = "modal fade" role = "dialog" >
<!-- Modal -->
< div class = "modal-dialog" >
< div id = "myModal" class = "modal fade" role = "dialog" >
< div class = "modal-dialog modal-lg" >
< div class = "modal-dialog" >
<!-- Modal content -->
< div class = "modal-dialog modal-lg" >
< div class = "modal-content" >
<!-- Modal content -->
< div class = "modal-header" >
< div class = "modal-content" >
< button type = "button" class = "close" data-dismiss = "modal" > × < / button >
< div class = "modal-header" >
< h4 class = "modal-title" > About< / h4 > < img class = "img-responsive" src = "img/about_img.png" > < / div >
< button type = "button" class = "close" data-dismiss = "modal" > × < / button >
< div class = "modal-body" >
< h4 class = "modal-title" > About< / h4 >
< p > LabyrinthAP is open source software offered under GNU General Public License v3.0. Ongoing development is reliant on voluntary financial support through donations to the project. I hope that you find using LabyrithAP beneficial and also hope there's sufficient widespread support for it to financially support it's future. Seeing support for it will assist in continued improvements as well as adapting it to future requirements.< / p >
< img class = "img-responsive" src = "img/about_img.png" >
< p > LabyrinthAP was initially conceived to provide users with a platform agnostic way to connect networked devices to Lokinet without the need to install and configure Lokinet applications on individual systems. From initial research on compiling Lokinet for ARM, it was demonstrated that it could be feasibile to use SBC's to create access points which could encrypt, decrypt, route and onion route traffic over Lokinet while managing dns requirements. In addition it could provide a means to select and connect to various exits located all around the globe. Through utilizing various robust packages and coding custom networking configurations LabyrinthAP utilizing Lokinet is able to achieve all this.< / p >
< / div >
< p > This early research and further development led to the current version of LabyrithAP which provides a solution which is able to connect virtually any networked device to Lokinet without the device needing to have Lokinet installed, configured or running the application natively. The devices need only to connect to LabyrinthAP and it will handle the rest of Lokinet's connection requirements.< / p >
< div class = "modal-body" >
< p > If you wish to donate to this development the Oxen wallet for LabyrinthAP is: LA8VDcoJgiv2bSiVqyaT6hJ67LXbnQGpf9Uk3zh9ikUKPJUWeYbgsd9gxQ5ptM2hQNSsCaRETQ3GM9FLDe7BGqcm4ve69bh< / p >
< p > LabyrinthAP is open source software offered under GNU General Public License v3.0.
< p > Additional information can be found on the github repo located at: https://github.com/necro-nemesis/LabyrinthAP. Further discussions and assistance with using Lokinet is provided on Session in the Lokinet open group.< / p >
Ongoing development is reliant on voluntary financial support through donations to the project.
< p > I hope that LabyrinthAP will continue to service your needs for gaining access to Lokinet.< / p >
I hope that you find using LabyrithAP beneficial and also hope there's sufficient widespread support for it
< p > Thank-you for using LabyrinthAP,< / p >
to financially support it's future. Seeing support for it will assist in continued improvements as well
< p > Technical Tumbleweed< / p >
as adapting it to future requirements.< / p >
< / div >
< p > LabyrinthAP was initially conceived to provide users with a platform agnostic way to connect
< div class = "modal-footer" >
networked devices to Lokinet without the need to install and configure Lokinet applications on individual
< button type = "button" class = "btn btn-default" data-dismiss = "modal" > Close< / button >
systems. From initial research on compiling Lokinet for ARM, it was demonstrated that it could be
< / div >
feasibile to use SBC's to create access points which could encrypt, decrypt,
< / div >
route and onion route traffic over Lokinet while managing dns requirements. In addition it could provide a means
< / div >
to select and connect to various exits located all around the globe. Through utilizing various robust packages
< / div >
and coding custom networking configurations LabyrinthAP utilizing Lokinet is able to achieve all this.< / p >
< / div >
< p > This early research and further development led to the current version of LabyrithAP which provides
< h5 > <?php echo "Your development support is greatly appreciated <br>Independent LabyrinthAP developer TechnicalTumbleweed's OXEN wallet address:" ; ?> </ h5 >
a solution which is able to connect virtually any networked device to Lokinet without the device
< h5 >< pre > <?php echo "LA8VDcoJgiv2bSiVqyaT6hJ67LXbnQGpf9Uk3zh9ikUKPJUWeYbgsd9gxQ5ptM2hQNSsCaRETQ3GM9FLDe7BGqcm4ve69bh" ; ?> </ pre ></ h5 > </ div >
needing to have Lokinet installed, configured or running the application natively. The devices need only
< div class = "tab-pane fade" id = "Mobile" >
to connect to LabyrinthAP and it will handle the rest of Lokinet's connection requirements.< / p >
< form role = "form" action = "?page=save_hostapd_conf" method = "POST" >
< p > If you wish to donate to this development the Oxen wallet for LabyrinthAP is:
< h5 > Enter mobile provider apn:< / h5 >
LA8VDcoJgiv2bSiVqyaT6hJ67LXbnQGpf9Uk3zh9ikUKPJUWeYbgsd9gxQ5ptM2hQNSsCaRETQ3GM9FLDe7BGqcm4ve69bh< / p > < p >
< label for = "apn" > Mobile Provider APN:< / label >
Additional information can be found on the github repo located at: https://github.com/necro-nemesis/LabyrinthAP.
< input type = "text" class = "form-control" placeholder = "enter apn address here" id = "apn" name = "apn" >
Further discussions and assistance with using Lokinet is provided on Session in the Lokinet open group.< / p > < p >
< br / >
I hope that LabyrinthAP will continue to service your needs for gaining access to Lokinet.< / p > < p > Thank-you for using LabyrinthAP,< / p >
<?php echo '<input type="submit" class="btn btn-success" name="apnaddress" value="Set APN" />' ,
< p > Technical Tumbleweed< / p >
PHP_EOL; ?>
< / div >
< h5 > <?php echo "Your development support is greatly appreciated <br>Independent LabyrinthAP developer TechnicalTumbleweed's OXEN wallet address:" ; ?> </ h5 >
< div class = "modal-footer" >
< h5 >< pre > <?php echo "LA8VDcoJgiv2bSiVqyaT6hJ67LXbnQGpf9Uk3zh9ikUKPJUWeYbgsd9gxQ5ptM2hQNSsCaRETQ3GM9FLDe7BGqcm4ve69bh" ; ?> </ pre ></ h5 > </ div >
< button type = "button" class = "btn btn-default" data-dismiss = "modal" > Close< / button >
< div class = "tab-pane fade" id = "whois" >
< / div >
< form role = "form" action = "?page=save_hostapd_conf" method = "POST" >
< / div >
< h5 > Enter .loki Address:< / h5 >
< / div >
< label for = "lokiaddress" > Loki Address:< / label >
< / div >
< input type = "text" class = "form-control" placeholder = "enter lokinet address here" id = "lokiaddress" name = "lokiaddress" >
< / div >
< br / >
<?php echo '<input type="submit" class="btn btn-success" name="checkaddress" value="Submit" />' ,
< h5 > <?php echo "Your development support is greatly appreciated <br>Independent LabyrinthAP developer TechnicalTumbleweed's OXEN wallet address:" ; ?> </ h5 >
PHP_EOL; ?>
< h5 >< pre > <?php echo "LA8VDcoJgiv2bSiVqyaT6hJ67LXbnQGpf9Uk3zh9ikUKPJUWeYbgsd9gxQ5ptM2hQNSsCaRETQ3GM9FLDe7BGqcm4ve69bh" ; ?> </ pre ></ h5 >
< h5 > <?php echo "Your development support is greatly appreciated <br>Independent LabyrinthAP developer TechnicalTumbleweed's OXEN wallet address:" ; ?> </ h5 >
< / div >
< h5 >< pre > <?php echo "LA8VDcoJgiv2bSiVqyaT6hJ67LXbnQGpf9Uk3zh9ikUKPJUWeYbgsd9gxQ5ptM2hQNSsCaRETQ3GM9FLDe7BGqcm4ve69bh" ; ?> </ pre ></ h5 > </ div >
<?php
< div class = "tab-pane fade" id = "Mobile" >
< form role = "form" action = "?page=save_hostapd_conf" method = "POST" >
< h5 > Enter mobile provider apn:< / h5 >
< label for = "apn" > Mobile Provider APN:< / label >
< input type = "text" class = "form-control" placeholder = "enter apn address here" id = "apn" name = "apn" >
< br / >
<?php echo '<input type="submit" class="btn btn-success" name="apnaddress" value="Set APN" />' ,
PHP_EOL; ?>< h5 > <?php echo "Your development support is greatly appreciated <br>Independent LabyrinthAP developer TechnicalTumbleweed's OXEN wallet address:" ; ?> </ h5 >
< h5 >< pre > <?php echo "LA8VDcoJgiv2bSiVqyaT6hJ67LXbnQGpf9Uk3zh9ikUKPJUWeYbgsd9gxQ5ptM2hQNSsCaRETQ3GM9FLDe7BGqcm4ve69bh" ; ?> </ pre ></ h5 >
< / div >
< div class = "tab-pane fade" id = "whois" >
< form role = "form" action = "?page=save_hostapd_conf" method = "POST" >
< h5 > Enter .loki Address:< / h5 >
< label for = "lokiaddress" > Loki Address:< / label >
< input type = "text" class = "form-control" placeholder = "enter lokinet address here" id = "lokiaddress" name = "lokiaddress" >
< br / >
<?php echo '<input type="submit" class="btn btn-success" name="checkaddress" value="Submit" />' ,
PHP_EOL; ?>< h5 > <?php echo "Your development support is greatly appreciated <br>Independent LabyrinthAP developer TechnicalTumbleweed's OXEN wallet address:" ; ?> </ h5 >
< h5 >< pre > <?php echo "LA8VDcoJgiv2bSiVqyaT6hJ67LXbnQGpf9Uk3zh9ikUKPJUWeYbgsd9gxQ5ptM2hQNSsCaRETQ3GM9FLDe7BGqcm4ve69bh" ; ?> </ pre ></ h5 >
< / div > < / div >
<?php
}
}
function ActivateLokinetConfig()
function ActivateLokinetConfig()
@ -448,19 +425,32 @@ function ActivateLokinetConfig()
);
);
$exitstatus = exec("lokinet-vpn --status");
$exitstatus = exec("lokinet-vpn --status");
if ($exitstatus != "no exits") {
if ($exitstatus != "no exits") {
?>< div class = "alert alert-info" > <?php
?>
< div class = "alert alert-info" >
<?php
echo "Exit Enabled";
echo "Exit Enabled";
?></ div > <?php
?>
< / div >
<?php
} else {
} else {
?>< div class = "alert alert-danger" > <?php
?>
< div class = "alert alert-danger" >
<?php
echo "WARNING EXIT DID NOT CONNECT";
echo "WARNING EXIT DID NOT CONNECT";
?></ div > <?php
?>
< / div >
<?php
}
}
echo "< pre > < strong > $output< / strong > < / pre > ";
echo "< pre > < strong > $output< / strong > < / pre > ";
?>< form method = "post" > <?php
?>
< form method = "post" >
<?php
echo '< input type = "submit" class = "btn btn-success" name = "Return" value = "Return" / > ', PHP_EOL;
echo '< input type = "submit" class = "btn btn-success" name = "Return" value = "Return" / > ', PHP_EOL;
echo "\n";
echo "\n";
?>< form >< br /> <?php
?>
< form >
< br / >
<?php
//STOP EXIT
//STOP EXIT
} elseif (isset($_POST["StopExit"])) {
} elseif (isset($_POST["StopExit"])) {
@ -472,10 +462,15 @@ function ActivateLokinetConfig()
$address = $_POST["lokiaddress"];
$address = $_POST["lokiaddress"];
$output = shell_exec("sudo /var/lib/lokinet/lokilaunch.sh whois " . $address . "");
$output = shell_exec("sudo /var/lib/lokinet/lokilaunch.sh whois " . $address . "");
echo "< pre > < strong > $output< / strong > < / pre > ";
echo "< pre > < strong > $output< / strong > < / pre > ";
?>< form method = "post" > <?php
?>
< form method = "post" >
<?php
echo '< input type = "submit" class = "btn btn-success" name = "Return" value = "Return" / > ', PHP_EOL;
echo '< input type = "submit" class = "btn btn-success" name = "Return" value = "Return" / > ', PHP_EOL;
echo "\n";
echo "\n";
?>< form >< br /> <?php
?>
< form >
< br / >
<?php
//Mobile
//Mobile
} elseif (isset($_POST["apnaddress"])) {
} elseif (isset($_POST["apnaddress"])) {
@ -486,14 +481,19 @@ function ActivateLokinetConfig()
$output = str_replace($parsed, $apnvalue, $input);
$output = str_replace($parsed, $apnvalue, $input);
file_put_contents($file, $output);
file_put_contents($file, $output);
echo "< pre > < strong > Reboot required to start mobile. Reboot now?< / strong > < / pre > ";
echo "< pre > < strong > Reboot required to start mobile. Reboot now?< / strong > < / pre > ";
?>< form method = "post" > <?php
?>
< form method = "post" >
<?php
echo '< input type = "submit" class = "btn btn-success" name = "Return" value = "Reboot Later" / > ', PHP_EOL;
echo '< input type = "submit" class = "btn btn-success" name = "Return" value = "Reboot Later" / > ', PHP_EOL;
echo '< input type = "submit" class = "btn btn-success" name = "Reboot" value = "Activate Now" / > ', PHP_EOL;
echo '< input type = "submit" class = "btn btn-success" name = "Reboot" value = "Activate Now" / > ', PHP_EOL;
echo "\n";
echo "\n";
?>< form >< br /> <?php
?>
} elseif (isset($_POST["Return"])) {
< form >
< br / >
<?php
} elseif (isset($_POST["Return"])) {
DisplayLokinetConfig();
DisplayLokinetConfig();
} elseif (isset($_POST["Reboot"])) {
} elseif (isset($_POST["Reboot"])) {
shell_exec("sudo reboot now");
shell_exec("sudo reboot now");
}
}
}
}