Benutzer-Werkzeuge

Webseiten-Werkzeuge


start

Dies ist eine alte Version des Dokuments!


Hallo Besucher! Willkommen in diesem kleinen Wiki rund um IT. Vieles ist noch unvollständig, unstrukturiert oder vielleicht sogar falsch bzw. irreführend.

Du kannst Artikel gerne ergänzen oder verbessern. Gerne mit so vielen Links wie nötig. Bitte keine Werbelinks und nur selbst verfasste oder lizenzfreie Texte! Copyright beachten!

<!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <title>USB Webcam Anzeige</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background: #1e1e1e;
            color: #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem;
        }

        video {
            border: 2px solid #00ff88;
            border-radius: 10px;
            width: 640px;
            height: 480px;
            background: #000;
        }

        button {
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            font-size: 1rem;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            background-color: #00ff88;
            color: #000;
        }

        button:hover {
            background-color: #00cc6a;
        }
    </style>
</head>
<body>
    <h1>Meine USB Webcam</h1>
    <video id="webcam" autoplay playsinline></video>
    <button onclick="startWebcam()">Webcam starten</button>

    <script>
        async function startWebcam() {
            try {
                const stream = await navigator.mediaDevices.getUserMedia({
                    video: { width: 640, height: 480 },
                    audio: false
                });
                document.getElementById('webcam').srcObject = stream;
            } catch (error) {
                alert("Fehler beim Zugriff auf die Webcam:\n" + error.message);
                console.error(error);
            }
        }
    </script>
</body>
</html>

Fehlende Verlinkungen

Eine Liste von Seiten die noch erstellt werden müssen.

# ID Links
1turn3 : Show backlinks
2chef2 : Show backlinks
3xml2 : Show backlinks
4graylog2 : Show backlinks
5netzwerkkarte2 : Show backlinks
6soundkarte1 : Show backlinks
7isakmp1 : Show backlinks
8iscsitarget1 : Show backlinks
9iax21 : Show backlinks
10srtp1 : Show backlinks
113des1 : Show backlinks
12hub1 : Show backlinks
13unix1 : Show backlinks
14sips1 : Show backlinks
15https1 : Show backlinks
16tshark1 : Show backlinks
17webrtc1 : Show backlinks
18base641 : Show backlinks
19creddump71 : Show backlinks
20courier1 : Show backlinks
21ddos1 : Show backlinks
22rpc1 : Show backlinks
23vmfs1 : Show backlinks
24pjsip1 : Show backlinks
25vnc1 : Show backlinks
26oakley1 : Show backlinks
27dnscat21 : Show backlinks
28dnsrecon1 : Show backlinks
29playground:playground1 : Show backlinks
30fierce1 : Show backlinks
31ice1 : Show backlinks

=⇒

dsregcmd

blueducky.py (Bluetooth Cracking)

{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "winlog.event_data.AuthenticationPackageName": "Kerberos"
          }
        },
        {
          "wildcard": {
            "agent.name": "*fs0*"
          }
        }
      ],
      "should": [],
      "must_not": [
        {
          "wildcard": {
            "winlog.event_data.TargetUserName": "s_*"
          }
        },
        {
          "wildcard": {
            "winlog.event_data.TargetUserName": "*$"
          }
        },
        {
          "wildcard": {
            "winlog.event_data.TargetUserName": "admin_*"
          }
        },
        {
          "wildcard": {
            "winlog.event_data.TargetUserName": "ANONYMOUS*"
          }
        },
        {
          "match": {
            "winlog.event_data.TargetUserName": "Administrator"
          }
        }
      ],
      "filter": []
    }
  },
  "sort": [
    {
      "@timestamp": "desc"
    }
  ]
}
start.1750849353.txt.gz · Zuletzt geändert: 2025/06/25 13:02 von jango