Your IP : 216.73.217.6


Current Path : /home/smartconb/www/armencom33/components/com_eyesite/
Upload File :
Current File : /home/smartconb/www/armencom33/components/com_eyesite/eyesite.php

<?php
/********************************************************************
Product		: Eyesite
Date		: 23 January 2024
Copyright	: Les Arbres Design 2010-2024
Contact		: https://www.lesarbresdesign.info
Licence		: GNU General Public License
*********************************************************************/
defined('_JEXEC') or die('Restricted Access');

use Joomla\CMS\Factory;

$task = Factory::getApplication()->input->get('task','', 'string');
if ($task != 'scan')
    {
    http_response_code(400);    // bad request
    exit;
    }
require_once JPATH_ADMINISTRATOR.'/components/com_eyesite/helpers/eyesite_helper.php';
require_once JPATH_ADMINISTRATOR.'/components/com_eyesite/helpers/db_helper.php';
require_once JPATH_ADMINISTRATOR.'/components/com_eyesite/helpers/trace_helper.php';
require_once JPATH_ADMINISTRATOR.'/components/com_eyesite/helpers/eyesite_scanner.php';
require_once JPATH_ADMINISTRATOR.'/components/com_eyesite/models/config.php';
require_once JPATH_ADMINISTRATOR.'/components/com_eyesite/models/history.php';
require_once JPATH_ADMINISTRATOR.'/components/com_eyesite/models/data.php';
$scanner = new LAE_scanner;
$scanner->scan();