Linux moon.hostseba.com 4.18.0-553.51.1.lve.el8.x86_64 #1 SMP Tue May 6 15:14:12 UTC 2025 x86_64
LiteSpeed
Server IP : 103.174.152.68 & Your IP : 216.73.216.121
Domains :
Cant Read [ /etc/named.conf ]
User : julaysp1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
julaysp1 /
public_html /
assets /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
wp
[ DIR ]
dr-xr-xr-x
2025-09-01 07:26
.htaccess
237
B
-r-xr-xr-x
2025-09-01 07:26
Chart.roundedBarCharts.js
5.81
KB
-rw-r--r--
2024-02-22 14:40
bcmath-min.js
14.24
KB
-rw-r--r--
2024-10-24 08:16
chart.js
7.95
KB
-rw-r--r--
2024-02-22 14:40
codemirror.js
1.53
KB
-rw-r--r--
2024-02-22 14:40
dashboard.js
15.99
KB
-rw-r--r--
2024-02-22 14:40
disabled.js
1.77
KB
-rw-r--r--
2024-10-24 08:16
file-upload.js
398
B
-rw-r--r--
2024-02-22 14:40
hoverable-collapse.js
806
B
-rw-r--r--
2024-02-22 14:40
jquery-file-upload.js
185
B
-rw-r--r--
2024-02-22 14:40
jquery.cookie.js
3.05
KB
-rw-r--r--
2024-02-22 14:40
off-canvas.js
188
B
-rw-r--r--
2024-02-22 14:40
pdf417-min.js
30.58
KB
-rw-r--r--
2024-10-24 08:16
select.dataTables.min.css
3.83
KB
-rw-r--r--
2024-02-22 14:40
select2.js
237
B
-rw-r--r--
2024-02-22 14:40
settings.js
3.79
KB
-rw-r--r--
2024-02-22 14:40
template.js
4.45
KB
-rw-r--r--
2024-02-22 14:40
todolist.js
952
B
-rw-r--r--
2024-02-22 14:40
typeahead.js
1.88
KB
-rw-r--r--
2024-02-22 14:40
Save
Rename
(function($) { 'use strict'; var substringMatcher = function(strs) { return function findMatches(q, cb) { var matches, substringRegex; // an array that will be populated with substring matches matches = []; // regex used to determine if a string contains the substring `q` var substrRegex = new RegExp(q, 'i'); // iterate through the pool of strings and for any string that // contains the substring `q`, add it to the `matches` array for (var i = 0; i < strs.length; i++) { if (substrRegex.test(strs[i])) { matches.push(strs[i]); } } cb(matches); }; }; var states = ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey', 'New Mexico', 'New York', 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island', 'South Carolina', 'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West Virginia', 'Wisconsin', 'Wyoming' ]; $('#the-basics .typeahead').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'states', source: substringMatcher(states) }); // constructs the suggestion engine var states = new Bloodhound({ datumTokenizer: Bloodhound.tokenizers.whitespace, queryTokenizer: Bloodhound.tokenizers.whitespace, // `states` is an array of state names defined in "The Basics" local: states }); $('#bloodhound .typeahead').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'states', source: states }); })(jQuery);