Initial commit: Werkzeuge-Sammlung

Enthält:
- rdp_client.py: RDP Client mit GUI und Monitor-Auswahl
- rdp.sh: Bash-basierter RDP Client
- teamleader_test/: Network Scanner Fullstack-App
- teamleader_test2/: Network Mapper CLI

Subdirectories mit eigenem Repo wurden ausgeschlossen.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
root
2026-01-28 09:39:24 +01:00
commit cb073786b3
112 changed files with 23543 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LAN Graph Explorer</title>
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<header>
<h1>LAN Graph Explorer</h1>
<p>Discover your local hosts and their relationships in a Visio-style topology.</p>
<button id="refresh">Refresh scan</button>
</header>
<main>
<div id="status">Idle</div>
<svg id="topology" viewBox="0 0 1000 600"></svg>
</main>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="/static/script.js"></script>
</body>
</html>