Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
btm2000.bak /
core /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
blockUI.js
2.99
KB
-rw-r--r--
2025-11-25 13:16
dst.js
6.06
KB
-rw-r--r--
2025-11-25 13:16
editinplace.js
12.56
KB
-rw-r--r--
2025-11-25 13:16
index.html
0
B
-rw-r--r--
2025-11-25 13:16
lib_foot.js.php
7.09
KB
-rw-r--r--
2025-11-25 13:16
lib_gravatar.js.php
6.31
KB
-rw-r--r--
2025-11-25 13:16
lib_head.js.php
35.79
KB
-rw-r--r--
2025-11-25 13:16
lib_notification.js.php
6.89
KB
-rw-r--r--
2025-11-25 13:16
lib_photosresize.js
1.52
KB
-rw-r--r--
2025-11-25 13:16
lib_rare.js
1.32
KB
-rw-r--r--
2025-11-25 13:16
listview.js
5.76
KB
-rw-r--r--
2025-11-25 13:16
timepicker.js.php
2.56
KB
-rw-r--r--
2025-11-25 13:16
timesheet.js
8.62
KB
-rw-r--r--
2025-11-25 13:16
Save
Rename
// Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net> // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. // or see http://www.gnu.org/ // // \file htdocs/core/js/lib_rare.js // \brief File that include javascript functions not frequently used (included if option use_javascript activated) // // in [-]HH:MM format... // won't yet work with non-even tzs function fetchTimezone() { var localclock = new Date(), // returns negative offset from GMT in minutes tzRaw = localclock.getTimezoneOffset(), tzHour = Math.floor(Math.abs(tzRaw) / 60), tzMin = Math.abs(tzRaw) % 60; return ((tzRaw >= 0) ? "-" : "") + ((tzHour < 10) ? "0" : "") + tzHour + ":" + ((tzMin < 10) ? "0" : "") + tzMin; }