This commit is contained in:
2025-12-01 16:25:44 +01:00
parent 8485bd7c8d
commit 78a6ee63c7
10 changed files with 199 additions and 153 deletions

Binary file not shown.

View File

@@ -1,9 +1,11 @@
from fastapi import FastAPI, APIRouter, Request
from fastapi.templating import Jinja2Templates
from fastapi.staticfiles import StaticFiles
from security import security_router
import uvicorn
app = FastAPI()
app.mount("/static", StaticFiles(directory="static"), name="static")
app.include_router(security_router)
templates = Jinja2Templates(directory="templates")
@@ -11,11 +13,20 @@ templates = Jinja2Templates(directory="templates")
@app.get("/")
async def read_root(request: Request):
data = "hi"
routes = []
for route in request.app.routes:
if route.name in ["openapi", "swagger_ui_html", "swagger_ui_redirect", "redoc_html", "static", "read_root"]:
continue
routes.append({
"path": getattr(route, "path", "N/A"),
"name": getattr(route, "name", "N/A"),
"methods": list(route.methods) if hasattr(route, "methods") else []
})
return templates.TemplateResponse(
request=request,
name="index.html",
contents={"data": data}
context={"routes": routes}
)
if __name__ == "__main__":

View File

@@ -6,12 +6,7 @@ templates = Jinja2Templates(directory="templates")
@security_router.get("/browser")
async def security_check_list(request: Request):
async def browser_local_cryptography_strength(request: Request):
return templates.TemplateResponse(
request=request, name="browser_random_number.html", contents={"rand": "rand"}
)
@security_router.get("/browser")
async def security_check_browser():
return {"message": "checking browser security"}

BIN
app/static/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

View File

@@ -1,5 +1,6 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://cdn.jsdelivr.net/npm/flowbite@2.5.2/dist/flowbite.min.css" rel="stylesheet" />
@@ -9,37 +10,45 @@
{% block css %}
{% endblock %}
</head>
<body>
<nav class="bg-white border-gray-200 dark:bg-gray-900">
<nav class="bg-white border-gray-200 dark:bg-gray-900">
<div class="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-4">
<a href="https://security.ekstrah.com/" class="flex items-center space-x-3 rtl:space-x-reverse">
<img src="https://pics.ekstrah.com/0p36up.png" class="h-8" alt="Flowbite Logo" />
<img src="{{ url_for('static', path='logo.png') }}" class="h-24" alt="Flowbite Logo" />
</a>
<button data-collapse-toggle="navbar-default" type="button" class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600" aria-controls="navbar-default" aria-expanded="false">
<button data-collapse-toggle="navbar-default" type="button"
class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600"
aria-controls="navbar-default" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 14">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M1 1h15M1 7h15M1 13h15"/>
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M1 1h15M1 7h15M1 13h15" />
</svg>
</button>
<div class="hidden w-full md:block md:w-auto" id="navbar-default">
<ul class="font-medium flex flex-col p-4 md:p-0 mt-4 border border-gray-100 rounded-lg bg-gray-50 md:flex-row md:space-x-8 rtl:space-x-reverse md:mt-0 md:border-0 md:bg-white dark:bg-gray-800 md:dark:bg-gray-900 dark:border-gray-700">
<ul
class="font-medium flex flex-col p-4 md:p-0 mt-4 border border-gray-100 rounded-lg bg-gray-50 md:flex-row md:space-x-8 rtl:space-x-reverse md:mt-0 md:border-0 md:bg-white dark:bg-gray-800 md:dark:bg-gray-900 dark:border-gray-700">
<li>
<a href="#" class="block py-2 px-3 text-white bg-blue-700 rounded md:bg-transparent md:text-blue-700 md:p-0 dark:text-white md:dark:text-blue-500" aria-current="page">Home</a>
<a href="#"
class="block py-2 px-3 text-white bg-blue-700 rounded md:bg-transparent md:text-blue-700 md:p-0 dark:text-white md:dark:text-blue-500"
aria-current="page">Home</a>
</li>
</ul>
</div>
</div>
</nav>
</nav>
{% block content %}
{% endblock %}
{% block js %}
{% endblock %}
<footer class="flex justify-center mt-8">
<p>&copy; 2024 EKSTRAH Security Application</p>
<p>&copy; 2025 EKSTRAH Security Application</p>
</footer>
</body>
</html>

View File

@@ -4,8 +4,10 @@
{% block content %}
<div class="max-w-scree grid grid-cols-1 items-center divide-y">
<div class="flex justify-center pt-6">
<div class="flex flex-col justify-center pt-6 text-center">
<p class="text-2xl" id="browser-name">Detected Browser: Something</p>
<p class="mt-2 text-gray-600 dark:text-gray-400">This visualization demonstrates the strength and uniformity of your
browser's random number generator.</p>
</div>
<div class="flex justify-center pt-6">
<canvas id="randNumCanvas" width="1000" height="1000"></canvas>
@@ -15,9 +17,9 @@
{% block js %}
<script>
"use strict";
"use strict";
var vertexShaderSource = `#version 300 es
var vertexShaderSource = `#version 300 es
// an attribute is an input (in) to a vertex shader.
// It will receive data from a buffer
@@ -42,7 +44,7 @@ void main() {
}
`;
var fragmentShaderSource = `#version 300 es
var fragmentShaderSource = `#version 300 es
precision highp float;
@@ -56,7 +58,7 @@ void main() {
}
`;
function main() {
function main() {
// Get A WebGL context
var canvas = document.querySelector("#randNumCanvas");
var gl = canvas.getContext("webgl2");
@@ -133,25 +135,25 @@ function main() {
for (var y = 0; y < 2000; y = y + 2) {
for (var x = 0; x < 2000; x = x + 2) {
setRectangle(gl, x, y, 2, 2);
gl.uniform4f(colorLocation, 0.0, 0.0, 0.0, normalizeUint16(array2D[y/2][x/2]));
gl.uniform4f(colorLocation, 0.0, 0.0, 0.0, normalizeUint16(array2D[y / 2][x / 2]));
gl.drawArrays(primitiveType, offset, count);
counter++;
}
}
}
}
// Returns a random integer from 0 to range - 1.
function randomInt(range) {
// Returns a random integer from 0 to range - 1.
function randomInt(range) {
return Math.floor(Math.random() * range);
}
}
function normalizeUint16(val) {
return val/65535;
function normalizeUint16(val) {
return val / 65535;
}
}
// Fill the buffer with the values that define a rectangle.
function setRectangle(gl, x, y, width, height) {
// Fill the buffer with the values that define a rectangle.
function setRectangle(gl, x, y, width, height) {
var x1 = x;
var x2 = x + width;
var y1 = y;
@@ -164,14 +166,14 @@ function setRectangle(gl, x, y, width, height) {
x2, y1,
x2, y2,
]), gl.STATIC_DRAW);
}
}
main();
main();
</script>
<script>
// Function to detect the browser name
function detectBrowser() {
// Function to detect the browser name
function detectBrowser() {
var userAgent = navigator.userAgent;
if (userAgent.indexOf("Edg") > -1) {
return "Microsoft Edge";
@@ -188,11 +190,11 @@ function detectBrowser() {
}
return "Unknown";
}
}
// Get the browser name and display it
var browserName = detectBrowser();
document.getElementById("browser-name").innerText = "Detected Browser: " + browserName;
// Get the browser name and display it
var browserName = detectBrowser();
document.getElementById("browser-name").innerText = "Detected Browser: " + browserName;
</script>
{% endblock %}

View File

@@ -3,8 +3,34 @@
{% block title %}Home Page{% endblock %}
{% block content %}
<div class="container">
<h1>Hello World</h1>
<div class="container mx-auto px-4 py-8">
<h1 class="text-3xl font-bold text-gray-900 dark:text-white mb-6">Available Endpoints</h1>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{% for route in routes %}
<div
class="bg-white dark:bg-gray-800 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300 overflow-hidden border border-gray-200 dark:border-gray-700">
<div class="p-6">
<h2 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">{{ route.name }}</h2>
<div class="mb-4">
<span
class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-300">
{{ route.methods | join(', ') }}
</span>
</div>
<div class="flex items-center justify-between">
<code
class="text-sm text-gray-500 dark:text-gray-400 bg-gray-100 dark:bg-gray-700 px-2 py-1 rounded">{{ route.path }}</code>
{% if 'GET' in route.methods %}
<a href="{{ route.path }}"
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-4 py-2 dark:bg-blue-600 dark:hover:bg-blue-700 focus:outline-none dark:focus:ring-blue-800">
Visit
</a>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
</div>
{% endblock %}

View File

@@ -4,4 +4,7 @@ services:
user: 1000:1000 # should be owner of volumes
ports:
- 35050:35050
volumes:
- ./app:/code/app
command: fastapi dev main.py --host 0.0.0.0 --port 35050
restart: unless-stopped