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_formmaker /
models /
Delete
Unzip
Name
Size
Permission
Date
Action
checkpaypal.php
9.27
KB
-rwxr-xr-x
2018-04-20 12:55
formmaker.php
178.66
KB
-rwxr-xr-x
2018-04-20 12:55
index.html
44
B
-rwxr-xr-x
2018-04-20 12:55
stats.php
1.08
KB
-rwxr-xr-x
2018-04-20 12:55
submissions.php
40.82
KB
-rwxr-xr-x
2018-04-20 12:55
Save
Rename
<?php /** * @package Form Maker * @author Web-Dorado * @copyright (C) 2011 Web-Dorado. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html **/ defined('_JEXEC') or die('Restricted access'); jimport( 'joomla.application.component.model' ); jimport('joomla.filesystem.file'); jimport('joomla.filesystem.folder'); class formmakerModelstats extends JModelLegacy { function show_stats() { $input_get = JFactory::getApplication()->input; $db = JFactory::getDBO(); $form_id = $input_get->getString('form_id'); $id = $input_get->getString('id'); $from = $input_get->getString('from'); $to = $input_get->getString('to'); $where=' AND form_id='.$form_id; if($from!='') $where.=" AND `date`>='".$from." 00:00:00' "; if($to!='') $where.=" AND `date`<='".$to." 23:59:59' "; $query = "SELECT element_value FROM #__formmaker_submits WHERE element_label='".$id."'".$where; $db->setQuery( $query); $choices = $db->loadObjectList(); if($db->getErrorNum()){ echo $db->stderr(); return false;} return array($choices); } } ?>