Windows NT 5XH5ME 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
: | : 18.119.129.77
Cant Read [ /etc/named.conf ]
8.0.30
IWPD_574(rhy10449)
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
D: /
Inetpub /
vhosts /
rhythmmedical.in /
httpdocs /
js1 /
themejs /
[ HOME SHELL ]
Name
Size
Permission
Action
api
[ DIR ]
drwxrwxrwx
helper-plugins
[ DIR ]
drwxrwxrwx
videojs
[ DIR ]
drwxrwxrwx
SmoothScroll.js
2.68
KB
-rw-rw-rw-
TimeCircles.js
15.68
KB
-rw-rw-rw-
application.js
32.01
KB
-rw-rw-rw-
jquery.carouFredSel-6.2.1-pack...
53.5
KB
-rw-rw-rw-
jquery.carouFredSel-6.2.1.js
88.96
KB
-rw-rw-rw-
jquery.easypiechart.js
7.95
KB
-rw-rw-rw-
jquery.easypiechart.min.js
3.53
KB
-rw-rw-rw-
jquery.flexslider-min.js
20.93
KB
-rw-rw-rw-
jquery.flexslider.js
51.8
KB
-rw-rw-rw-
jquery.isotope.min.js
15.66
KB
-rw-rw-rw-
jquery.lightbox.min.js
20.34
KB
-rw-rw-rw-
jquery.montage.js
15.67
KB
-rw-rw-rw-
jquery.montage.min.js
8.23
KB
-rw-rw-rw-
jquery.nouislider.min.js
10.12
KB
-rw-rw-rw-
jquery.smartmenus.js
39.8
KB
-rw-rw-rw-
jquery.smartmenus.min.js
21.05
KB
-rw-rw-rw-
jquery.stellar.js
22.74
KB
-rw-rw-rw-
jquery.stellar.min.js
12.34
KB
-rw-rw-rw-
jquery.tooltipster.js
33.75
KB
-rw-rw-rw-
jquery.tooltipster.min.js
13.8
KB
-rw-rw-rw-
jquery.validate.min.js
20.99
KB
-rw-rw-rw-
jquery.waypoints.min.js
7.86
KB
-rw-rw-rw-
tweetie.js
4.42
KB
-rw-rw-rw-
tweetie.min.js
1.68
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tweetie.js
/** * Tweetie: A simple Twitter feed plugin * Author: Sonny T. <hi@sonnyt.com>, sonnyt.com */ (function ($) { $.fn.twittie = function (options) { // Default settings var settings = $.extend({ 'count': 10, 'hideReplies': false, 'dateFormat': '%b/%d/%Y', 'template': '{{date}} - {{tweet}}' }, options); /** * Applies @reply, #hash and http links * @param {String} tweet A single tweet * @return {String} Fixed tweet */ var linking = function (tweet) { var parts = tweet.split(' '); var twit = ''; for (var i = 0, len = parts.length; i < len; i++) { var text = parts[i]; var link = "https://twitter.com/#!/"; // Fix hashtag links if (text.indexOf('#') !== -1) { text = '<a href="' + link + 'search/' + text.replace('#', '%23').replace(/[^A-Za-z0-9]/, '') + '" target="_blank">' + text + '</a>'; } // Fix reply links if (text.indexOf('@') !== -1) { text = '<a href="' + link + text.replace('@', '').replace(/[^A-Za-z0-9]/, '') + '" target="_blank">' + text + '</a>'; } // Fix regular http links if (text.indexOf('http://') !== -1) { text = '<a href="' + text + '" target="_blank">' + text + '</a>'; } twit += text + ' '; } return twit; }; /** * Formating a date * @param {String} twt_date Twitter date * @return {String} Formatted date */ var dating = function (twt_date) { // fix for IE var time = twt_date.split(' '); twt_date = new Date(Date.parse(time[1] + ' ' + time[2] + ', ' + time[5] + ' ' + time[3] + ' UTC')); var months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']; var _date = { '%d': twt_date.getDate(), '%m': twt_date.getMonth()+1, '%b': months[twt_date.getMonth()].substr(0, 3), '%B': months[twt_date.getMonth()], '%y': String(twt_date.getFullYear()).slice(-2), '%Y': twt_date.getFullYear() }; var date = settings.dateFormat; var format = settings.dateFormat.match(/%[dmbByY]/g); for (var i = 0, len = format.length; i < len; i++) { date = date.replace(format[i], _date[format[i]]); } return date; }; /** * Templating a tweet using '{{ }}' braces * @param {Object} data Tweet details are passed * @return {String} Templated string */ var templating = function (data) { var temp = settings.template; var temp_variables = ['date', 'tweet', 'avatar']; for (var i = 0, len = temp_variables.length; i < len; i++) { temp = temp.replace(new RegExp('{{' + temp_variables[i] + '}}', 'gi'), data[temp_variables[i]]); } return temp; }; // Set loading this.html('<span>Loading...</span>'); var that = this; // Fetch tweets $.getJSON('js/themejs/api/tweet.php', { count: settings.count, exclude_replies: settings.hideReplies }, function (twt) { that.find('span').fadeOut('fast', function () { that.html('<ul class="fa-ul"></ul>'); for (var i = 0; i < settings.count; i++) { if (twt[i]) { var temp_data = { date: dating(twt[i].created_at), tweet: linking(twt[i].text), avatar: '<img alt="" src="'+ twt[i].user.profile_image_url +'" />' }; that.find('ul').append('<li><div class="icon-wrapper icon-border-round"><i class="fa fa-twitter"></i></div>' + templating(temp_data) + '</li>'); } else { break; } } }); }); }; })(jQuery);
Close