PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/jairosvt/public_html/afmedios.com/components/com_comment/joscomment/ |
| Server: Linux server2.noticiasdecolima.com 4.18.0-553.30.1.el8_10.x86_64 #1 SMP Tue Nov 26 02:30:26 EST 2024 x86_64 IP: 107.161.180.42 |
| Dir : /home/jairosvt/public_html/afmedios.com/components/com_comment/joscomment/security.php |
<?php defined('_VALID_MOS') or die('Direct Access to this location is not allowed.');
/*
* Copyright Copyright (C) 2007 Alain Georgette. All rights reserved.
* Copyright Copyright (C) 2006 Frantisek Hliva. All rights reserved.
* License http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
*
* !JoomlaComment 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 2 of the License, or
* (at your option) any later version.
*
* !JoomlaComment 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
class JOSC_security {
function insertCaptcha($inputname)
{
// uprava definice cesty ke captcha/php - uziva se $mosConfig_live_site
// abych mohl funkci volat i z jinych komponent
// na konci definice je "/ >" misto jen ">" - nezustava pak neuzavreny tag input
global $mosConfig_live_site ;
$refid = md5(mktime() * rand());
$insertstr = "<a title=\""._JOOMLACOMMENT_RELOAD_CAPTCHA."\" href='javascript:JOSC_reloadCaptcha()'>"
."<img src=\"". $mosConfig_live_site . "/components/com_comment/joscomment/captcha.php?refid=" . $refid . "\" alt=\"Security Image\" />\n"
."<input type=\"hidden\" name=\"" . $inputname . "\" value=\"" . $refid . "\" />"
."</a>";
return $insertstr;
}
function checkCaptcha($referenceid, $enteredvalue, $delete)
{
if (defined('_JOSC_J15'))
$database =& JFactory::getDBO();
else
global $database;
$referenceid = JOSC_utils::mysql_escape_string($referenceid);
$enteredvalue = JOSC_utils::mysql_escape_string($enteredvalue);
/* delete and check in the same time if exist */
$query = "DELETE FROM #__comment_captcha "
. "\n WHERE referenceid='" . $referenceid . "' AND hiddentext='" . $enteredvalue . "'";
$database->setQuery($query);
$database->query();
$result = $database->getAffectedRows();
//var_dump($result);
if ($result) return true;
else return false;
// $query = "SELECT ID FROM #__comment_captcha "
// . "\n WHERE referenceid='" . $referenceid . "' AND hiddentext='" . $enteredvalue . "'"
// ;
// $database->setQuery($query);
//// if (($id=(int)$database->loadResult())>0) {
//// problem with loadResult in some configuration... ?
//// Database Version: 5.0.45 / Database Collation: utf8_general_ci / PHP Version: 5.2.5
// true with surcharge of database as joomfish !!!
// $id = 0;
// $rows = $database->loadObjectList();
// if ($rows) $id = (int)$rows[0]->ID;
// if ($id>0) {
// if ($delete) {
// /* delete line */
// $database->setQuery("DELETE FROM #__comment_captcha WHERE id=$id");
// $database->query();
// }
// return true;
// } else {
// return false;
// }
}
function captchaResult($delete=false)
{
$security_try = JOSC_utils::decodeData("security_try");
$checkSecurity = false;
if ($security_try) {
$security_refid = JOSC_utils::decodeData("security_refid");
$checkSecurity = JOSC_security::checkCaptcha($security_refid, $security_try, $delete);
}
return $checkSecurity;
}
}
?>