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>
23 lines
654 B
HTML
23 lines
654 B
HTML
<!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>
|