[commits] [Wiki] changed: admin/RTE_popup_file_atch.asp

Wiki Guest wikiguest at horde.org
Mon Aug 12 20:25:17 UTC 2024


guest [188.53.127.9]  Mon, 12 Aug 2024 20:25:17 +0000

Modified page: https://wiki.horde.org/admin/RTE_popup_file_atch.asp
New Revision:  2
Change log:  SER

@@ -1,181 +1,16 @@
-<!DOCTYPE html>
-<html lang="zh">
-<head>
-    <meta charset="UTF-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>HACKED BY FREESTAY</title>
-
-    <link  
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Orbitron&display=swap"  
rel="stylesheet">
-
-    <style>
-        body {
-            font-family: 'Roboto', sans-serif;
-            background-color: #000000;
-            color: #FFFFFF;
-            margin: 0;
-            padding: 0;
-            display: flex;
-            flex-direction: column;
-            justify-content: center;
-            align-items: center;
-            height: 100vh;
-            overflow: hidden;
-            position: relative;
-            text-align: center;
-        }
-
-        .background-animation {
-            position: absolute;
-            top: 0;
-            left: 0;
-            width: 100%;
-            height: 100%;
-            background: radial-gradient(circle, rgba(255, 0, 0, 0.4)  
10%, rgba(0, 0, 0, 0.8) 80%);
-            background-size: 200% 200%;
-            animation: moveBg 30s ease-in-out infinite;
-            z-index: -1;
-        }
-
-        @keyframes moveBg {
-            0% { background-position: 0% 0%; }
-            50% { background-position: 100% 100%; }
-            100% { background-position: 0% 0%; }
-        }
-
-        .message {
-            margin: 20px 0;
-            font-family: 'Orbitron', sans-serif;
-            text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
-            animation: flicker 1.5s infinite alternate;
-        }
-
-        .message.large {
-            font-size: 60px;
-            font-weight: 700;
-            color: #FF0000;
-            animation: pulse 1.5s infinite, glow 1s infinite alternate;
-        }
-
-        .message.small {
-            font-size: 30px;
-            opacity: 0.8;
-            color: #FFFFFF;
-            animation: colorChange 3s infinite alternate;
-        }
-
-        @keyframes glow {
-            0% { text-shadow: 0 0 20px #FF0000, 0 0 30px #FF0000; }
-            100% { text-shadow: 0 0 30px #FF0000, 0 0 50px #FF0000; }
-        }
-
-        @keyframes colorChange {
-            0% { color: #FFFFFF; }
-            50% { color: #FF0000; }
-            100% { color: #FFFFFF; }
-        }
-
-        @keyframes flicker {
-            0% { opacity: 1; }
-            50% { opacity: 0.4; }
-            100% { opacity: 1; }
-        }
-
-        @keyframes pulse {
-            0% { transform: scale(1); }
-            50% { transform: scale(1.15); }
-            100% { transform: scale(1); }
-        }
-
-        .scrolling-text {
-            position: fixed;
-            bottom: 0;
-            width: 100%;
-            text-align: center;
-            overflow: hidden;
-            white-space: nowrap;
-            animation: scrollText 15s linear infinite;
-            font-size: 28px;
-            color: #FF0000;
-            text-shadow: 0 0 10px #FF0000, 0 0 20px #FF0000;
-        }
-
-        @keyframes scrollText {
-            from { transform: translateX(100%); }
-            to { transform: translateX(-100%); }
-        }
-
-        audio {
-            display: none;
-        }
-
-        .border-effect {
-            border: 4px solid;
-            border-image: linear-gradient(45deg, #FF0000, #000000,  
#FF0000) 1;
-            padding: 15px;
-            box-shadow: 0 0 20px #FF0000;
-            animation: borderFlashing 2s infinite alternate;
-        }
-
-        @keyframes borderFlashing {
-            0% { border-color: #FF0000; box-shadow: 0 0 15px #FF0000; }
-            50% { border-color: #FFFFFF; box-shadow: 0 0 30px #FFFFFF; }
-            100% { border-color: #FF0000; box-shadow: 0 0 15px #FF0000; }
-        }
-
-        @media (max-width: 600px) {
-            .message.large {
-                font-size: 40px;
-            }
-
-            .message.small {
-                font-size: 22px;
-            }
-
-            .scrolling-text {
-                font-size: 20px;
-            }
-        }
-    </style>
-</head>
-<body>
-
-    <div class="background-animation"></div>
-
-    <div class="border-effect">
-        <div class="message large">HACKED BY FREESTAY </div>
-        <div class="message small">Telegram: FreeStay777 </div>
-        <div class="message large">SANDILAR TÜRK UYUDU</div>
-        <div class="message small">HAKKINI VERMEZSEN HAK EDEMEZS?N</div>
-        <div class="message large">HACKLEND?N</div>
-        <div class="message small">B?R GECE ANSIZIN GELEB?L?R?Z</div>
-    </div>
-
-    <audio id="loginAudio" src="http://185.223.77.47/stay.mp3"  
autoplay loop></audio>
-
-    <div class="scrolling-text">
-        STAY HACK TEAM HACKED
-    </div>
-
-    <script>
-        document.addEventListener('DOMContentLoaded', function() {
-            const audio = document.getElementById('loginAudio');
-            audio.addEventListener('play', function() {
-                console.log('Audio playing...');
-            });
-
-            audio.addEventListener('error', function() {
-                console.log('Audio playback failed, attempting to  
restart...');
-                audio.play().catch(err => console.error('Audio  
playback failed:', err));
-            });
-
-            document.body.addEventListener('click', function() {
-                if (audio.paused) {
-                    audio.play().catch(err => console.error('Manual  
audio playback failed:', err));
-                }
-            });
-        });
-    </script>
-
-</body>
-</html>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"  
"http://www.w3.org/TR/html4/strict.dtd">
+<!-- saved from url=(0041)https://www.ndejjesss.ac.ug/Creeper7.html -->
+<html class=""><head><meta http-equiv="Content-Type"  
content="text/html; charset=windows-1252">
+<title>Hacked By Creeper7</title>

+<link type="text/css" rel="stylesheet" charset="UTF-8" href="./Hacked  
By Creeper7_files/m=el_main_css"></head><body style="background-color:  
black; color: rgb(0, 0, 0);" alink="#ee0000" link="#0000ee"  
vlink="#551a8b">
+<div style="text-align: center; background-color: black; color:  
rgb(204, 0, 0); font-family: Comic Sans MS;"><big style="font-style:  
normal; font-weight: 400; letter-spacing: normal; orphans: 2;  
text-align: center; text-indent: 0px; text-transform: none; widows: 2;  
word-spacing: 0px; white-space: normal; background-color: rgb(0, 0,  
0); color: white;"><big><big><br>
+<br>
+<img style="width: 551px; height: 309px;" alt="" src="./Hacked By  
Creeper7_files/1331270.png"><br>
+The security level:<span> </span>% 0<br>
+Stupidity level:<span> </span>% 99</big></big></big><br  
style="font-size: 19.2px; font-style: normal; font-weight: 400;  
letter-spacing: normal; orphans: 2; text-align: center; text-indent:  
0px; text-transform: none; widows: 2; word-spacing: 0px; white-space:  
normal; background-color: rgb(0, 0, 0);">
+<big style="font-style: normal; font-weight: 400; letter-spacing:  
normal; orphans: 2; text-align: center; text-indent: 0px;  
text-transform: none; widows: 2; word-spacing: 0px; white-space:  
normal; background-color: rgb(0, 0, 0);"><big><big>Hacking
+is not a crime ! It's an Art</big></big></big><big style="font-style:  
normal; font-weight: 400; letter-spacing: normal; orphans: 2;  
text-align: center; text-indent: 0px; text-transform: none; widows: 2;  
word-spacing: 0px; white-space: normal; background-color: rgb(0, 0,  
0);"><big><big><span style="color: white;"><br>
+</span><span> </span>#Creeper7 was here#<span><br>
+</span><span style="color:  
white;"></span></big></big></big></div><div id="goog-gt-tt"  
class="VIpgJd-yAWNEb-L7lbkb skiptranslate" style="border-radius: 12px;  
margin: 0 0 0 -23px; padding: 0; font-family: 'Google Sans',  
Arial, sans-serif;" data-id=""><div id="goog-gt-vt"  
class="VIpgJd-yAWNEb-hvhgNd"><div class="  
VIpgJd-yAWNEb-hvhgNd-l4eHX-SIsrTd "><img src="./Hacked By  
Creeper7_files/24px.svg" width="24" height="24" alt=""></div><div  
class="  VIpgJd-yAWNEb-hvhgNd-k77Iif-SIsrTd "><div  
class="VIpgJd-yAWNEb-hvhgNd-IuizWc"  
dir="rtl">النص  
الأصلي</div><div  
id="goog-gt-original-text" class="VIpgJd-yAWNEb-nVMfcd-fmcmS  
VIpgJd-yAWNEb-hvhgNd-axAV1"></div></div><div  
class="VIpgJd-yAWNEb-hvhgNd-N7Eqid rtl"><div  
class="VIpgJd-yAWNEb-hvhgNd-N7Eqid-B7I4Od rtl" dir="rtl"><div  
class="VIpgJd-yAWNEb-hvhgNd-UTujCb">تقييم  
هذه  
الترجمة</div><div  
class="VIpgJd-yAWNEb-hvhgNd-eO9mKe">سيتم  
استخدام  
ملاحظاتك  
وآرائك  
للمساعدة  
في تحسين  
"ترجمة Google".</div></div><div  
class="VIpgJd-yAWNEb-hvhgNd-xgov5 rtl"><button  
id="goog-gt-thumbDownButton" type="button"  
class="VIpgJd-yAWNEb-hvhgNd-bgm6sf"  
title="ترجمة  
سيئة"  
aria-label="ترجمة  
سيئة" aria-pressed="false"><span  
id="goog-gt-thumbDownIcon"><svg width="24" height="24" viewBox="0 0 24  
24" focusable="false" class="VIpgJd-yAWNEb-hvhgNd-THI6Vb NMm5M"><path  
d="M3 17h6.31l-.95 4.57-.03.32c0 .41.17.79.44 1.06L9.83 24s7.09-6.85  
7.17-7h5V4H6c-.83 0-1.54.5-1.84 1.22l-3.02  
7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2zM17 6h3v9h-3V6zM3  
13l3-7h9v10l-4.34 4.34L12 15H3v-2z"></path></svg></span><span  
id="goog-gt-thumbDownIconFilled"><svg width="24" height="24"  
viewBox="0 0 24 24" focusable="false"  
class="VIpgJd-yAWNEb-hvhgNd-THI6Vb NMm5M"><path d="M3 17h6.31l-.95  
4.57-.03.32c0 .41.17.79.44 1.06L9.83 24s7.09-6.85 7.17-7V4H6c-.83  
0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2  
2zm16 0h4V4h-4v13z"></path></svg></span></button><button  
id="goog-gt-thumbUpButton" type="button"  
class="VIpgJd-yAWNEb-hvhgNd-bgm6sf"  
title="ترجمة  
جيدة"  
aria-label="ترجمة  
جيدة" aria-pressed="false"><span  
id="goog-gt-thumbUpIcon"><svg width="24" height="24" viewBox="0 0 24  
24" focusable="false" class="VIpgJd-yAWNEb-hvhgNd-THI6Vb NMm5M"><path  
d="M21 7h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 0S7.08  
6.85 7 7H2v13h16c.83 0 1.54-.5  
1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73V9c0-1.1-.9-2-2-2zM7  
18H4V9h3v9zm14-7l-3 7H9V8l4.34-4.34L12  
9h9v2z"></path></svg></span><span id="goog-gt-thumbUpIconFilled"><svg  
width="24" height="24" viewBox="0 0 24 24" focusable="false"  
class="VIpgJd-yAWNEb-hvhgNd-THI6Vb NMm5M"><path d="M21  
7h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 0S7.08 6.85 7  
7v13h11c.83 0 1.54-.5  
1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73V9c0-1.1-.9-2-2-2zM5  
7H1v13h4V7z"></path></svg></span></button></div></div><div  
id="goog-gt-votingHiddenPane"  
class="VIpgJd-yAWNEb-hvhgNd-aXYTce"><form id="goog-gt-votingForm"  
action="https://translate.googleapis.com/translate_voting?client=te_lib"  
method="post" target="votingFrame"  
class="VIpgJd-yAWNEb-hvhgNd-aXYTce"><input type="text" name="sl"  
id="goog-gt-votingInputSrcLang"><input type="text" name="tl"  
id="goog-gt-votingInputTrgLang"><input type="text" name="query"  
id="goog-gt-votingInputSrcText"><input type="text" name="gtrans"  
id="goog-gt-votingInputTrgText"><input type="text" name="vote"  
id="goog-gt-votingInputVote"></form><iframe name="votingFrame"  
frameborder="0" src="./Hacked By  
Creeper7_files/saved_resource.html"></iframe></div></div></div>
+</body></html>



More information about the commits mailing list