Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
wiki.bernardino.org /
skins /
common /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
IE80Fixes.css
532
B
-rw-r--r--
2011-02-19 20:21
IEFixes.js
3.68
KB
-rw-r--r--
2011-03-04 01:15
ajax.js
4.92
KB
-rw-r--r--
2011-03-12 18:58
commonPrint.css
5.62
KB
-rw-r--r--
2011-10-03 20:49
config-cc.css
813
B
-rw-r--r--
2010-05-07 14:25
config.css
2.09
KB
-rw-r--r--
2011-06-10 19:09
config.js
3.26
KB
-rw-r--r--
2011-06-10 19:09
feed.css
2.54
KB
-rw-r--r--
2005-11-05 11:38
mwsuggest.js
31.04
KB
-rw-r--r--
2012-01-03 18:34
oldshared.css
7.38
KB
-rw-r--r--
2011-09-12 17:03
preview.js
3.73
KB
-rw-r--r--
2011-03-12 18:58
protect.js
8.68
KB
-rw-r--r--
2011-04-25 13:39
shared.css
17.06
KB
-rw-r--r--
2011-11-09 18:31
upload.js
8.53
KB
-rw-r--r--
2011-03-12 18:58
wikibits.js
20.76
KB
-rw-r--r--
2011-07-07 19:52
wikiprintable.css
945
B
-rw-r--r--
2010-05-16 18:55
wikistandard.css
1.74
KB
-rw-r--r--
2010-05-16 18:55
Save
Rename
// IE fixes javascript window.isMSIE55 = ( window.showModalDialog && window.clipboardData && window.createPopup ); window.doneIETransform = undefined; window.doneIEAlphaFix = undefined; window.hookit = function() { if ( !doneIETransform && document.getElementById && document.getElementById( 'bodyContent' ) ) { doneIETransform = true; relativeforfloats(); fixalpha(); } }; if ( document.attachEvent ) { document.attachEvent( 'onreadystatechange', window.hookit ); } // png alpha transparency fixes window.fixalpha = function( logoId ) { // bg if ( isMSIE55 && !doneIEAlphaFix ) { var plogo = document.getElementById( logoId || 'p-logo' ); if ( !plogo ) { return; } var logoa = plogo.getElementsByTagName('a')[0]; if ( !logoa ) { return; } var bg = logoa.currentStyle.backgroundImage; var imageUrl = bg.substring( 5, bg.length - 2 ); doneIEAlphaFix = true; if ( imageUrl.substr( imageUrl.length - 4 ).toLowerCase() == '.png' ) { var logospan = logoa.appendChild( document.createElement( 'span' ) ); logoa.style.backgroundImage = 'none'; logospan.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + imageUrl + ')'; logospan.style.height = '100%'; logospan.style.position = 'absolute'; logospan.style.width = logoa.currentStyle.width; logospan.style.cursor = 'hand'; // Center image with hack for IE5.5 if ( document.documentElement.dir == 'rtl' ) { logospan.style.right = '50%'; logospan.style.setExpression( 'marginRight', '"-" + (this.offsetWidth / 2) + "px"' ); } else { logospan.style.left = '50%'; logospan.style.setExpression( 'marginLeft', '"-" + (this.offsetWidth / 2) + "px"' ); } logospan.style.top = '50%'; logospan.style.setExpression( 'marginTop', '"-" + (this.offsetHeight / 2) + "px"' ); var linkFix = logoa.appendChild( logoa.cloneNode() ); linkFix.style.position = 'absolute'; linkFix.style.height = '100%'; linkFix.style.width = '100%'; } } }; // fix ie6 disappering float bug window.relativeforfloats = function() { var bc = document.getElementById( 'bodyContent' ); if ( bc ) { var tables = bc.getElementsByTagName( 'table' ); var divs = bc.getElementsByTagName( 'div' ); setrelative( tables ); setrelative( divs ); } }; window.setrelative = function( nodes ) { var i = 0; while ( i < nodes.length ) { if( ( ( nodes[i].style.float && nodes[i].style.float != ( 'none' ) || ( nodes[i].align && nodes[i].align != ( 'none' ) ) ) && ( !nodes[i].style.position || nodes[i].style.position != 'relative' ) ) ) { nodes[i].style.position = 'relative'; } i++; } }; // Expand links for printing String.prototype.hasClass = function( classWanted ) { var classArr = this.split(/\s/); for ( var i = 0; i < classArr.length; i++ ) { if ( classArr[i].toLowerCase() == classWanted.toLowerCase() ) { return true; } } return false; }; window.expandedURLs = undefined; window.onbeforeprint = function() { expandedURLs = []; var contentEl = document.getElementById( 'content' ); if ( contentEl ) { var allLinks = contentEl.getElementsByTagName( 'a' ); for ( var i = 0; i < allLinks.length; i++ ) { if ( allLinks[i].className.hasClass( 'external' ) && !allLinks[i].className.hasClass( 'free' ) ) { var expandedLink = document.createElement( 'span' ); var expandedText = document.createTextNode( ' (' + allLinks[i].href + ')' ); expandedLink.appendChild( expandedText ); allLinks[i].parentNode.insertBefore( expandedLink, allLinks[i].nextSibling ); expandedURLs[i] = expandedLink; } } } }; window.onafterprint = function() { for ( var i = 0; i < expandedURLs.length; i++ ) { if ( expandedURLs[i] ) { expandedURLs[i].removeNode( true ); } } };