Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
cqt /
node_modules /
d3-time /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
day.js
1
KB
-rw-r--r--
duration.js
321
B
-rw-r--r--
hour.js
798
B
-rw-r--r--
index.js
1.39
KB
-rw-r--r--
interval.js
2.03
KB
-rw-r--r--
millisecond.js
633
B
-rw-r--r--
minute.js
768
B
-rw-r--r--
month.js
796
B
-rw-r--r--
second.js
403
B
-rw-r--r--
ticks.js
2.47
KB
-rw-r--r--
week.js
1.98
KB
-rw-r--r--
year.js
1.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : day.js
import {timeInterval} from "./interval.js"; import {durationDay, durationMinute} from "./duration.js"; export const timeDay = timeInterval( date => date.setHours(0, 0, 0, 0), (date, step) => date.setDate(date.getDate() + step), (start, end) => (end - start - (end.getTimezoneOffset() - start.getTimezoneOffset()) * durationMinute) / durationDay, date => date.getDate() - 1 ); export const timeDays = timeDay.range; export const utcDay = timeInterval((date) => { date.setUTCHours(0, 0, 0, 0); }, (date, step) => { date.setUTCDate(date.getUTCDate() + step); }, (start, end) => { return (end - start) / durationDay; }, (date) => { return date.getUTCDate() - 1; }); export const utcDays = utcDay.range; export const unixDay = timeInterval((date) => { date.setUTCHours(0, 0, 0, 0); }, (date, step) => { date.setUTCDate(date.getUTCDate() + step); }, (start, end) => { return (end - start) / durationDay; }, (date) => { return Math.floor(date / durationDay); }); export const unixDays = unixDay.range;
Close