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

2023-11-20 Thread Wiki Guest

guest [67.10.229.238]  Tue, 21 Nov 2023 06:06:44 +

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

@@ -1 +1,74 @@
-Hacked by gurdium
+(`-').-> (`-').-> (`-')  _ _(`-')   .->(`-').->(`-')  _
+ ( OO)_   (OO )__  (OO ).-/( (OO ).-> .->(`(`-')/`) ( OO)_  (  
OO).-/ _
+(_)--\_) ,--. ,'-' / ,---.  \.'_ (`-'). ,-`(  
OO).',(_)--\_)(,--. \-,-.
+/_ / |  | |  | | \ /`.\ '`'-..__)( OO).-.  '|  |\  |  |/_ / |  
 .---'  |  .--./
+\_..`--. |  `-'  | '-'|_.' ||  |  ' |( _) | |  ||  | '.|  |\_..`--.(|  
 '--.  /_) (`-')
+.-._)   \|  .-.  |(|  .-.  ||  |  / : \|  |)|  ||  |.'.|  |.-._)   \|  
 .--'  ||  |OO )
+\   /|  | |  | |  | |  ||  '-'  /  '  '-'  '|   ,'.   |\   /|  
 `---.(_'  '--'\
+ `-' `--' `--' `--' `--'`--'`-' `--'   '--' `-'  
`--'   `-'

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+??
+{Hacked by Myst1cHax}

--
commits mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQ
To unsubscribe, mail: commits-unsubscr...@lists.horde.org


[commits] [Wiki] changed: FAQ/admin/config/index.php

2023-11-20 Thread Wiki Guest

guest [180.251.119.49]  Mon, 20 Nov 2023 12:40:42 +

Modified page: https://wiki.horde.org/FAQ/admin/config/index.php
New Revision:  2
Change log:  html

@@ -1,182 +1,43 @@
-
-  Hacked By Hacker Sami
-
-
-  
-  
-  

-  
-  
-  
-  
-  content="https://nathanprinsley-files.prinsh.com/data-1/images/NathanPrinsley-NoFace.png;>
-  href="https://nathanprinsley-files.prinsh.com/data-1/images/NathanPrinsley-NoFace.png;>

-
-
-  href="https://nathanprinsley-files.prinsh.com/data-1/css/deface(03-01).css"/>

-
- 
-  
-   
-GURDIUM
-   
-  
-  
-  
-   
-
-
-
-
-
-src="https://uploadkon.ir/uploads/309e18_23IMG-20231118-155744-891.jpg;  
width="250">
- img{ animation-name: rotate ; animation-duration: 6s;  
animation-play-state: running; animation-timing-function: linear;  
animation-iteration-count: infinite; } @keyframes rotate{ 10%  
{transform:rotateY(36deg)} 20% {transform:rotateY(72deg)} 30%  
{transform:rotateY(108deg)} 40% {transform:rotateY(144deg)} 50%  
{transform:rotateY(180deg)} 60% {transform:rotateY(216deg)} 70%  
{transform:rotateY(252deg)} 80% {transform:rotateY(288deg)} 90%  
{transform:rotateY(324deg)} 100% {transform:rotateY(360deg)} }
-
-
-
-
-   HACKED BY GURDIUM  

- 
-
-
- 
-
-
-
-
- YOU  
KILL? 

-
-
-
- scrolldelay="40" width="100%">

-  
-  size="4">___

- 
- 
-   size="4">Be in touch with us :  

-  
-   
-  
https://t.me/+PqoVOnjzTGM1ZjY0 |color="lime">..|  .. color="cyan">| ..  |  .. color="cyan">| ..  |  .. color="cyan">|

-
-  /*TypingText(document.getElementById("message"), 90, function(i){ var  
ar= new Array("_", " ", "_", " "); return "" +ar[i.length %  
ar.length]; });//Type out examples:TypingText.runAll();/*]]>*/
-  scrolldelay="40" width="100%">
-   size="4">___

-   
-   
-   class="message">class="message">  


-  
-  class="message">class="message">

-   
-   
-   src="https://nathanprinsley-files.prinsh.com/data-1/mp3/horizon.mp3;  
loop="1" autoplay="1">  

-
-class TextScramble {
-  constructor(el) {
-this.el = el
-this.chars = '!@#$%^&*()_-=+{}:"|<>?,./;'
-this.update = this.update.bind(this)
-  }
-  setText(newText) {
-const oldText = this.el.innerText
-const length = Math.max(oldText.length, newText.length)
-const promise = new Promise((resolve) => this.resolve = resolve)
-this.queue = []
-for (let i = 0; i < length; i++) {
-  const from = oldText[i] || ''
-  const to = newText[i] || ''
-  const start = Math.floor(Math.random() * 40)
-  const end = start + Math.floor(Math.random() * 40)
-  this.queue.push({ from, to, start, end })
-}
-cancelAnimationFrame(this.frameRequest)
-this.frame = 0
-this.update()
-return promise
-  }
-  update() {
-let output = ''
-let complete = 0
-for (let i = 0, n = this.queue.length; i < n; i++) {
-  let { from, to, start, end, char } = this.queue[i]
-  if (this.frame >= end) {
-complete++
-output += to
-  } else if (this.frame >= start) {
-if (!char || Math.random() < 0.28) {
-  char = this.randomChar()
-  this.queue[i].char = char
-}
-output += `${char}`
-  } else {
-output += from
-  }
-}
-this.el.innerHTML = output
-if (complete === this.queue.length) {
-  this.resolve()
-} else {
-  this.frameRequest = requestAnimationFrame(this.update)
-  this.frame++
-}
-  }
-  randomChar() {
-return this.chars[Math.floor(Math.random() * this.chars.length)]
-  }
+>
+
+HACKED BY RenzzX 
+ https://kosred.com/a/xbvupz.png"; type="image/x-icon"/>
+ 
+ https://fonts.googleapis.com/css2?family=Oxygen"; rel="stylesheet">
+
+
+