Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
components /
com_rsform /
helpers /
Delete
Unzip
Name
Size
Permission
Date
Action
captcha.php
5.24
KB
-rwxr-xr-x
2023-07-13 17:52
datevalidation.php
1.96
KB
-rwxr-xr-x
2023-07-13 17:52
iban.php
12.61
KB
-rwxr-xr-x
2023-07-13 17:52
index.html
44
B
-rwxr-xr-x
2023-07-13 17:52
validation.php
9.79
KB
-rwxr-xr-x
2023-07-13 17:52
Save
Rename
<?php /** * @package RSForm! Pro * @copyright (C) 2007-2019 www.rsjoomla.com * @license GPL, http://www.gnu.org/copyleft/gpl.html */ // no direct access defined( '_JEXEC' ) or die( 'Restricted access' ); class RSFormProDateValidations { public static function none($day, $month, $year, $data = array()) { // no validation $valid = true; return $valid; } public static function fromtoday($day, $month, $year, $data = array()) { try { $today = JFactory::getDate(); $selected = JFactory::getDate($year.'-'.self::padding($month).'-'.self::padding($day).' 23:59:59'); return $selected->toUnix() >= $today->toUnix(); } catch (Exception $e) { return false; } } public static function fromtomorrow($day, $month, $year, $data = array()) { try { $tomorrow = JFactory::getDate(); $tomorrow->modify('+1 day'); $selected = JFactory::getDate($year.'-'.self::padding($month).'-'.self::padding($day).' 23:59:59'); return $selected->toUnix() >= $tomorrow->toUnix(); } catch (Exception $e) { return false; } } public static function beforetodayexcluding($day, $month, $year, $data = array()) { try { $today = JFactory::getDate(); $today->setTime(0, 0, 0); $selected = JFactory::getDate($year.'-'.self::padding($month).'-'.self::padding($day).' 00:00:00'); return $selected->toUnix() < $today->toUnix(); } catch (Exception $e) { return false; } } public static function beforetodayincluding($day, $month, $year, $data = array()) { try { $today = JFactory::getDate(); $today->setTime(23, 59, 59); $selected = JFactory::getDate($year.'-'.self::padding($month).'-'.self::padding($day).' 00:00:00'); return $selected->toUnix() < $today->toUnix(); } catch (Exception $e) { return false; } } protected static function padding($value) { return str_pad($value, 2, '0', STR_PAD_LEFT); } }