un-hard-coded database user credentials fixing #25
parent
8748d17753
commit
57d5859e04
|
@ -15,7 +15,7 @@
|
||||||
$random_salt = generate_salt($permitted_chars);
|
$random_salt = generate_salt($permitted_chars);
|
||||||
$password_hash_method = "sha256";
|
$password_hash_method = "sha256";
|
||||||
|
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
$pdo = new PDO('mysql:host=localhost;dbname=web', '%DB_USERNAME%', '%DB_PASSWORD%');
|
||||||
$query = "SELECT id, name, authentication_algorithm FROM users;";
|
$query = "SELECT id, name, authentication_algorithm FROM users;";
|
||||||
|
|
||||||
if (isset($_GET['action'])) {
|
if (isset($_GET['action'])) {
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
domain_name=threadr.lostcave.ddnss.de
|
||||||
|
threadr_dir=/threadr
|
||||||
|
db_username=webstuff
|
||||||
|
db_password=Schei// auf Pa$$w0rter!
|
|
@ -1,2 +0,0 @@
|
||||||
domain_name=threadr.lostcave.ddnss.de
|
|
||||||
threadr_home=/threadr
|
|
|
@ -1,5 +1,7 @@
|
||||||
{
|
{
|
||||||
"DOMAIN_NAME":["exec","sed --quiet \"/domain_name=/s/.*=//p\" config/names.conf"],
|
"DOMAIN_NAME":["exec","sed --quiet \"/domain_name=/s/.*=//p\" config/instance.conf"],
|
||||||
"CONTENT_DIR":["exec","sed --quiet \"/threadr_home=/s/.*=//p\" config/names.conf"],
|
"CONTENT_DIR":["exec","sed --quiet \"/threadr_dir=/s/.*=//p\" config/instance.conf"],
|
||||||
|
"DB_PASSWORD":["exec","sed --quiet \"/db_password=/s/.*=//p\" config/instance.conf"],
|
||||||
|
"DB_USERNAME":["exec","sed --quiet \"/db_username=/s/.*=//p\" config/instance.conf"],
|
||||||
"ABOUT_PAGE":["file","config/about.template"]
|
"ABOUT_PAGE":["file","config/about.template"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
$pdo = new PDO('mysql:host=localhost;dbname=web', '%DB_USERNAME%', '%DB_PASSWORD%');
|
||||||
$statement = $pdo->prepare("SELECT * FROM posts WHERE board_id=:bid ORDER BY post_time asc");
|
$statement = $pdo->prepare("SELECT * FROM posts WHERE board_id=:bid ORDER BY post_time asc");
|
||||||
$statement->execute(array("bid"=>$id));
|
$statement->execute(array("bid"=>$id));
|
||||||
foreach($statement->fetchAll() as $ROW) {
|
foreach($statement->fetchAll() as $ROW) {
|
||||||
|
|
|
@ -28,7 +28,7 @@ $id=$_GET['id'];
|
||||||
<div class="item-1">
|
<div class="item-1">
|
||||||
<h1><center>
|
<h1><center>
|
||||||
<?php
|
<?php
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
$pdo = new PDO('mysql:host=localhost;dbname=web', '%DB_USERNAME%', '%DB_PASSWORD%');
|
||||||
$error = false;
|
$error = false;
|
||||||
$error_message = "";
|
$error_message = "";
|
||||||
if (!$error) {
|
if (!$error) {
|
||||||
|
|
|
@ -22,7 +22,7 @@ $navbar="boards";
|
||||||
<div class="item-2">
|
<div class="item-2">
|
||||||
<ul class="list">
|
<ul class="list">
|
||||||
<?php
|
<?php
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
$pdo = new PDO('mysql:host=localhost;dbname=web', '%DB_USERNAME%', '%DB_PASSWORD%');
|
||||||
$error = false;
|
$error = false;
|
||||||
$error_message = "";
|
$error_message = "";
|
||||||
if (!$error) {
|
if (!$error) {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
session_start();
|
session_start();
|
||||||
%PLEAZE_NO_CACHE%
|
%PLEAZE_NO_CACHE%
|
||||||
|
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
$pdo = new PDO('mysql:host=localhost;dbname=web', '%DB_USERNAME%', '%DB_PASSWORD%');
|
||||||
$statement = $pdo->prepare('SELECT id, authentication_algorithm, authentication_salt, authentication_string FROM users WHERE name = :username;');
|
$statement = $pdo->prepare('SELECT id, authentication_algorithm, authentication_salt, authentication_string FROM users WHERE name = :username;');
|
||||||
$result = $statement->execute(array('username' => $_POST['username']));
|
$result = $statement->execute(array('username' => $_POST['username']));
|
||||||
if ($statement->rowCount() > 0) {
|
if ($statement->rowCount() > 0) {
|
||||||
|
|
|
@ -5,7 +5,7 @@ session_start();
|
||||||
%NO_CHEAP_SESSION_STEALING%
|
%NO_CHEAP_SESSION_STEALING%
|
||||||
%REQUIRE_LOGIN%
|
%REQUIRE_LOGIN%
|
||||||
|
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
$pdo = new PDO('mysql:host=localhost;dbname=web', '%DB_USERNAME%', '%DB_PASSWORD%');
|
||||||
$error = false;
|
$error = false;
|
||||||
$error_message = "";
|
$error_message = "";
|
||||||
if (!$error) {
|
if (!$error) {
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
$password_salt = generate_salt($permitted_chars);
|
$password_salt = generate_salt($permitted_chars);
|
||||||
$password_hash_method = "sha256";
|
$password_hash_method = "sha256";
|
||||||
|
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
$pdo = new PDO('mysql:host=localhost;dbname=web', '%DB_USERNAME%', '%DB_PASSWORD%');
|
||||||
//$statement = $pdo->prepare('');
|
//$statement = $pdo->prepare('');
|
||||||
$navbar = "verify-email";
|
$navbar = "verify-email";
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -5,7 +5,7 @@ session_start();
|
||||||
%NO_CHEAP_SESSION_STEALING%
|
%NO_CHEAP_SESSION_STEALING%
|
||||||
%REQUIRE_LOGIN%
|
%REQUIRE_LOGIN%
|
||||||
|
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
$pdo = new PDO('mysql:host=localhost;dbname=web', '%DB_USERNAME%', '%DB_PASSWORD%');
|
||||||
$error = false;
|
$error = false;
|
||||||
$error_message = "";
|
$error_message = "";
|
||||||
if (!$error) {
|
if (!$error) {
|
||||||
|
|
Loading…
Reference in New Issue