-- HikaShop version -- : HikaShop Essential: 3.4.0
-- Joomla version -- : Joomla! 3.8.6
-- PHP version -- : 5.x
-- Browser(s) name and version -- : chrome
-- Error-message(debug-mod must be tuned on) -- : No error message
Hi
I am finding files in the root of my site that appear to be circumnavigating normal joomla component methods.
example filenames are..
paypaladvanced_cance_1.php
content is
<?php
$_GET['option']='com_hikashop';
$_REQUEST['option']='com_hikashop';
$_GET['tmpl']='component';
$_REQUEST['tmpl']='component';
$_GET['ctrl']='checkout';
$_REQUEST['ctrl']='checkout';
$_GET['task']='notify';
$_REQUEST['task']='notify';
$_GET['notif_payment']='paypaladvanced';
$_REQUEST['notif_payment']='paypaladvanced';
$_GET['format']='html';
$_REQUEST['format']='html';
$_GET['local']='en';
$_REQUEST['local']='en';
$_GET['notif_id']='1';
$_REQUEST['notif_id']='1';
$_GET['from_user']='cancel';
$_REQUEST['from_user']='cancel';
include('index.php');
I am working this for a client and am asking is this placed by hika shop? Was this a previous devs work etc...I would like to delete it to be honest.
This is also to do with paypal. I think it is some kind of paypal call back code perhaps.
Thank you.