mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-04-19 20:09:14 +03:00
commit
23b9fe2c54
3 changed files with 23 additions and 1 deletions
|
@ -50,7 +50,7 @@ Installing
|
|||
|
||||
* Copy ```includes/config.inc.php-dist``` to ```includes/config.inc.php``` and edit config.inc.php to your needs.
|
||||
|
||||
* By default, nsedit writes its user database to ../etc/pdns.users.sqlite3. Be sure that your webserver can create that directory and write to it.
|
||||
* By default, nsedit writes its user database to ../etc/pdns.users.sqlite3. Be sure that your webserver can create that directory and write to it. **Make sure the Webserver doesn't serve this file/folder to the public!**
|
||||
|
||||
* Visit http(s)://<url>/nsedit/ and login with admin/admin (Don't forget to update your password!)
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@ $logsdirectory = "../etc";
|
|||
#$adminapiips = array();
|
||||
#$adminapikey = 'thisshouldbequitealongstring,youknow';
|
||||
|
||||
# Location of user-database. Make sure its writeable and not served by the webserver!
|
||||
$authdb = "../etc/pdns.users.sqlite3";
|
||||
|
||||
# Set a random generated secret to enable auto-login and long living csrf tokens
|
||||
|
|
21
index.php
21
index.php
|
@ -4,6 +4,9 @@ include_once('includes/config.inc.php');
|
|||
include_once('includes/session.inc.php');
|
||||
include_once('includes/misc.inc.php');
|
||||
|
||||
$testpath = str_replace(basename($_SERVER['REQUEST_URI']), $authdb, $_SERVER['REQUEST_URI']);
|
||||
$testurl = $_SERVER['REQUEST_SCHEME']."://".$_SERVER['HTTP_HOST'].$testpath;
|
||||
|
||||
global $errormsg, $blocklogin;
|
||||
|
||||
if (isset($_GET['logout']) or isset($_POST['logout'])) {
|
||||
|
@ -33,6 +36,24 @@ if (is_logged_in() and isset($_POST['formname']) and $_POST['formname'] === "cha
|
|||
<html>
|
||||
<head>
|
||||
<title>NSEdit!</title>
|
||||
<script type="text/javascript">
|
||||
var reader = new XMLHttpRequest();
|
||||
var checkFor = "<?php echo $testurl; ?>";
|
||||
reader.open('get', checkFor, true);
|
||||
reader.onreadystatechange = checkReadyState;
|
||||
function checkReadyState() {
|
||||
if (reader.readyState === 4) {
|
||||
//check to see whether request for the file failed or succeeded
|
||||
if ((reader.status == 200) || (reader.status == 0)) {
|
||||
alert('Your authdb is downloadable. Please secure your install');
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
reader.send(null);
|
||||
</script>
|
||||
<link href="jquery-ui/themes/base/all.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="jtable/lib/themes/metro/blue/jtable.min.css" rel="stylesheet" type="text/css"/>
|
||||
<link href="css/base.css" rel="stylesheet" type="text/css"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue