-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.0.5 Update
- Loading branch information
Showing
20 changed files
with
415 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.env linguist-language=ENV | ||
./* linguist-documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
# Composer | ||
/vendor/ | ||
composer.json | ||
# Project Files | ||
.gitattributes | ||
#snyk.sarif | ||
|
||
# Project based | ||
# QuickBlaze Security | ||
/Modules/Database.env | ||
/Modules/InstallationStatus.json | ||
|
||
# Github | ||
snyk.sarif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
# URL handling | ||
RewriteEngine on | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteRule ^.* /index.php [L,QSA] | ||
RewriteRule ^.* index.php [L,QSA] | ||
|
||
# Error handling | ||
ErrorDocument 404 /404 | ||
ErrorDocument 403 /403 | ||
ErrorDocument 500 /500 | ||
|
||
# File security | ||
<FilesMatch "\.(json|sarif|md|gitignore|version|LICENSE|htaccess|env)$"> | ||
Order allow,deny | ||
Deny from all | ||
</FilesMatch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"VERSION":"1.0.4"} | ||
{ "BRANCH": "dev", "VERSION":"1.0.5-dev" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
deny from all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
|
||
{ | ||
"HOSTNAME": "", | ||
"USERNAME": "", | ||
"PASSWORD": "", | ||
"DATABASE": "" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/x-icon" href="./Public/assets/img/favicon.png"> | ||
<meta name="description" | ||
content="An extremely simple, one-time view encryption message system. Send anybody passwords, or secret messages on a one-time view basis."> | ||
<title>QuickBlaze</title> | ||
|
||
<!-- Custom styles --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" | ||
crossorigin="anonymous"></script> | ||
</head> | ||
|
||
<style> | ||
@import url("https://fonts.googleapis.com/css?family=Lato"); | ||
|
||
* { | ||
position: relative; | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: "Lato", sans-serif; | ||
} | ||
|
||
body { | ||
height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
h1 { | ||
margin: 40px 0 20px; | ||
} | ||
|
||
.lock { | ||
border-radius: 5px; | ||
width: 55px; | ||
height: 45px; | ||
background-color: #333; | ||
animation: dip 1s; | ||
animation-delay: 1.5s; | ||
} | ||
|
||
.lock::before, | ||
.lock::after { | ||
content: ""; | ||
position: absolute; | ||
border-left: 5px solid #333; | ||
height: 20px; | ||
width: 15px; | ||
left: calc(50% - 12.5px); | ||
} | ||
|
||
.lock::before { | ||
top: -30px; | ||
border: 5px solid #333; | ||
border-bottom-color: transparent; | ||
border-radius: 15px 15px 0 0; | ||
height: 30px; | ||
animation: lock 2s, spin 2s; | ||
} | ||
|
||
.lock::after { | ||
top: -10px; | ||
border-right: 5px solid transparent; | ||
animation: spin 2s; | ||
} | ||
|
||
@keyframes lock { | ||
0% { | ||
top: -45px; | ||
} | ||
|
||
65% { | ||
top: -45px; | ||
} | ||
|
||
100% { | ||
top: -30px; | ||
} | ||
} | ||
|
||
@keyframes spin { | ||
0% { | ||
transform: scaleX(-1); | ||
left: calc(50% - 30px); | ||
} | ||
|
||
65% { | ||
transform: scaleX(1); | ||
left: calc(50% - 12.5px); | ||
} | ||
} | ||
|
||
@keyframes dip { | ||
0% { | ||
transform: translateY(0px); | ||
} | ||
|
||
50% { | ||
transform: translateY(10px); | ||
} | ||
|
||
100% { | ||
transform: translateY(0px); | ||
} | ||
} | ||
</style> | ||
|
||
|
||
<body> | ||
<div class="lock"></div> | ||
<div class="message"> | ||
<h1>Access to this page is restricted</h1> | ||
<p style="text-align: center">Please check with the site admin if you believe this is a mistake.</p> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,10 +27,26 @@ <h5 class="text-muted">This page does not exist. It was most likely removed!</h5 | |
|
||
<p class="mt-5 mb-3 text-muted"> | ||
<a href="https://github.com/axtonprice/quickblaze-encrypt" class="text-muted no-decoration">GitHub</a> β’ | ||
<a href="https://discord.gg/dP3MuBATGc" class="text-muted no-decoration">Discord</a> β’ | ||
<a href="https://discord.gg/dP3MuBATGc" class="text-muted no-decoration">Discord</a> | ||
</p> | ||
</main> | ||
|
||
<!-- Dark Mode Widget --> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/darkmode-js.min.js"></script> | ||
<script> | ||
function addDarkmodeWidget() { | ||
const options = { | ||
time: '0.3s', // default: '0.3s' | ||
saveInCookies: true, // default: true, | ||
label: 'π', // default: '' | ||
} | ||
|
||
const darkmode = new Darkmode(options); | ||
darkmode.showWidget(); | ||
} | ||
window.addEventListener('load', addDarkmodeWidget); | ||
</script> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,10 +27,26 @@ <h5 class="text-muted">An internal server error occurred. Please try again later | |
|
||
<p class="mt-5 mb-3 text-muted"> | ||
<a href="https://github.com/axtonprice/quickblaze-encrypt" class="text-muted no-decoration">GitHub</a> β’ | ||
<a href="https://discord.gg/dP3MuBATGc" class="text-muted no-decoration">Discord</a> β’ | ||
<a href="https://discord.gg/dP3MuBATGc" class="text-muted no-decoration">Discord</a> | ||
</p> | ||
</main> | ||
|
||
<!-- Dark Mode Widget --> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/darkmode-js.min.js"></script> | ||
<script> | ||
function addDarkmodeWidget() { | ||
const options = { | ||
time: '0.3s', // default: '0.3s' | ||
saveInCookies: true, // default: true, | ||
label: 'π', // default: '' | ||
} | ||
|
||
const darkmode = new Darkmode(options); | ||
darkmode.showWidget(); | ||
} | ||
window.addEventListener('load', addDarkmodeWidget); | ||
</script> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/x-icon" href="./Public/assets/img/favicon.png"> | ||
<meta name="description" | ||
content="An extremely simple, one-time view encryption message system. Send anybody passwords, or secret messages on a one-time view basis."> | ||
<title>QuickBlaze</title> | ||
|
||
<!-- Bootstrap core CSS --> | ||
<link href="./Public/assets/css/bootstrap.min.css" rel="stylesheet"> | ||
|
||
<!-- Custom styles --> | ||
<link href="./Public/assets/css/style.css" rel="stylesheet"> | ||
</head> | ||
|
||
<body class="text-center"> | ||
|
||
<main class="form-submit"> | ||
<h1>Database Error</h1> | ||
<br> | ||
<h5 class="text-muted">You have not configured the database correctly! <br><br><a style="text-decoration:none" href="https://github.com/axtonprice-dev/quickblaze-encrypt/#installation" target="_blank">Please refer to the GitHub repository.</a></h5> | ||
|
||
<p class="mt-5 mb-3 text-muted"> | ||
<a href="https://github.com/axtonprice/quickblaze-encrypt" class="text-muted no-decoration">GitHub</a> β’ | ||
<a href="https://discord.gg/dP3MuBATGc" class="text-muted no-decoration">Discord</a> | ||
</p> | ||
</main> | ||
|
||
<!-- Dark Mode Widget --> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/darkmode-js.min.js"></script> | ||
<script> | ||
function addDarkmodeWidget() { | ||
const options = { | ||
time: '0.3s', // default: '0.3s' | ||
saveInCookies: true, // default: true, | ||
label: 'π', // default: '' | ||
} | ||
|
||
const darkmode = new Darkmode(options); | ||
darkmode.showWidget(); | ||
} | ||
window.addEventListener('load', addDarkmodeWidget); | ||
</script> | ||
|
||
</body> | ||
|
||
</html> |
Oops, something went wrong.