Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
components /
com_aimysitemap /
models /
Delete
Unzip
Name
Size
Permission
Date
Action
html.php
1.42
KB
-rwxr-xr-x
2026-06-10 18:30
index.html
14
B
-rwxr-xr-x
2026-06-10 18:30
Save
Rename
<?php /* * Copyright (c) 2017-2026 Aimy Extensions, Netzum Sorglos Software GmbH * Copyright (c) 2014-2017 Aimy Extensions, Lingua-Systems Software GmbH * * https://www.aimy-extensions.com/ * * License: GNU GPLv2, see LICENSE.txt within distribution and/or * https://www.aimy-extensions.com/software-license.html */ defined( '_JEXEC' ) or die(); require_once( JPATH_ADMINISTRATOR . '/components/com_aimysitemap/Uri.php' ); use Joomla\CMS\MVC\Model\ListModel; class AimySitemapModelHtml extends ListModel { public function __construct( $config = array() ) { if ( empty( $config[ 'filter_fields' ] ) ) { $config[ 'filter_fields' ] = array( 'url', 'a.url', 'title', 'a.title', 'lang', 'a.lang', 'priority', 'a.priority' ); } parent::__construct( $config ); } protected function populateState( $order = null, $dir = null ) { } public function getItems() { $items = parent::getItems(); if ( ! empty( $items ) ) { foreach ( $items as $item ) { $u = new AimySitemapURI( $item->url ); $item->url = $u->getResourceHTML(); $item->href = $u->getResourceHref(); } } return $items; } protected function getListQuery() { $db = $this->getDbo(); $q = $db->getQuery( true ); return $q->select( $db->quoteName( array( 'a.url', 'a.title', 'a.lang', 'a.priority' ) ) ) ->from( $db->quoteName( '#__aimysitemap' ) . ' AS a' ) ->where( $db->quoteName( 'a.state' ) . ' = ' . '1' . ' AND ' . $db->quoteName( 'a.title' ) . ' > ' . $db->quote( '""' ) ); } }