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 /
media /
com_aimysitemap /
Delete
Unzip
Name
Size
Permission
Date
Action
aimy-logo_100x50.png
5.12
KB
-rwxr-xr-x
2026-06-10 18:30
aimy-logo_340x327.png
21.34
KB
-rwxr-xr-x
2026-06-10 18:30
aimy-logo_dm_100x50.png
3.07
KB
-rw-r--r--
2026-06-10 18:30
aimy.eot
8.05
KB
-rwxr-xr-x
2026-06-10 18:30
aimy.svg
5.35
KB
-rwxr-xr-x
2026-06-10 18:30
aimy.ttf
7.9
KB
-rwxr-xr-x
2026-06-10 18:30
aimy.woff
4.98
KB
-rwxr-xr-x
2026-06-10 18:30
aimy.woff2
4.01
KB
-rwxr-xr-x
2026-06-10 18:30
backend-j3.css
1.28
KB
-rwxr-xr-x
2026-06-10 18:30
backend-j4.css
3.33
KB
-rwxr-xr-x
2026-06-10 18:30
backend.css
5.36
KB
-rwxr-xr-x
2026-06-10 18:30
bg-linkcheck.png
23.72
KB
-rw-r--r--
2026-06-10 18:30
bg-periodic-crawl.png
33.4
KB
-rw-r--r--
2026-06-10 18:30
crawl.js
7.23
KB
-rwxr-xr-x
2026-06-10 18:30
go-pro.jpg
53.94
KB
-rwxr-xr-x
2026-06-10 18:30
index.html
14
B
-rwxr-xr-x
2026-06-10 18:30
microalert.css
1.31
KB
-rwxr-xr-x
2026-06-10 18:30
microalert.js
1.89
KB
-rwxr-xr-x
2026-06-10 18:30
notifier.js
811
B
-rwxr-xr-x
2019-06-18 17:15
ping.js
1.81
KB
-rwxr-xr-x
2026-06-10 18:30
progress.gif
10.57
KB
-rwxr-xr-x
2026-06-10 18:30
sitemap_128x128.png
4.81
KB
-rwxr-xr-x
2019-06-18 17:15
urls-ajax-edit.js
3.42
KB
-rwxr-xr-x
2026-06-10 18:30
Save
Rename
/* * Copyright (c) 2017-2026 Aimy Extensions, Netzum Sorglos Software GmbH * Copyright (c) 2015-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 */ function AimySitemapAjaxInit(token) {var fnUpdateFlag=function() {var $this=jQuery(this);var code=$this.val();var $active=$this.parent().find('a.chzn-single,a.chosen-single');var url=false;if(code&&code.match(/^..-..$/)) {url='url(../media/mod_languages/images/'+ (code.replace('-','_').toLowerCase())+'.gif)';} if($active.length) {var $el=$active.find('> span');if(url) {$el.css({'background-position':'97% 50%','padding-right':'28px','background-color':'transparent','background-repeat':'no-repeat','background-image':url});} else {$el.css({'padding-right':0,'background':'none'});}} else {var $el=$this.parent();if(url) {$el.css({'background-position':'center left','padding-left':'35px','background-repeat':'no-repeat','background-image':url});} else {$el.css({'background':'none'});}}};jQuery('td.lang select') .bind('change',fnUpdateFlag) .each(fnUpdateFlag);var respToJson=function(jd) {if(jd&&typeof(jd)=='string') {try {jd=jQuery.parseJSON(jd);} catch(e){}} return jd;};var $post_and_handle=function(url,post_data,$e) {post_data[token]=1;jQuery.post(url,post_data,function(d) {d=respToJson(d);if(d!==null&&typeof d==='object'&&d.ok==1) {$e.parent().removeClass('alert-error');} else {$e.parent().addClass('alert-error');}}) .fail(function() {$e.parent().addClass('alert-error');});};var $get_row_id=function($td) {return $td.parent() .find('td:first') .find('input[type=checkbox]') .eq(0) .val();};var base_url='index.php?option=com_aimysitemap&task=url.';jQuery('td.state').each(function() {var $td=jQuery(this);var $a=$td.find('a:first');var id=$get_row_id($td);var state=$td.data('initial-state');if(!id||state==undefined)return;var pd={'id':id};pd[token]=1;$a.click(function(){jQuery.post(base_url+'toggle_state_ajax',pd,function(d) {d=respToJson(d);if(d!==null&&typeof d==='object'&&d.ok==1) {state=(state==1?0:1);$a.html(jQuery('<span></span>').addClass('btn btn-micro '+ 'aimy-icon-'+(state==0?'cancel':'ok')) .attr('title',$a.attr('data-title-'+ (state==0?'activate':'deactivate'))));}}) .fail(function(){});return false;});});jQuery('td.lock').each(function() {var $td=jQuery(this);var $a=$td.find('a:first');var id=$get_row_id($td);var lock=$td.data('initial-lock');if(!id||lock==undefined)return;var pd={'id':id};pd[token]=1;$a.click(function(){jQuery.post(base_url+'toggle_lock_ajax',pd,function(d) {d=respToJson(d);if(d!==null&&typeof d==='object'&&d.ok==1) {lock=(lock==1?0:1);$a.html(jQuery('<span></span>').addClass('btn btn-micro '+ 'aimy-icon-'+(lock==0?'un':'')+'lock') .attr('title',$a.attr('data-title-'+ (lock==0?'lock':'unlock'))));}}) .fail(function(){});return false;});});jQuery('td.lang select').bind('change',function() {var $this=jQuery(this);$post_and_handle(base_url+'change_lang_ajax',{'id':$get_row_id($this.parent()),'val':$this.val()},$this);});jQuery('td.priority select').bind('change',function() {var $this=jQuery(this);$post_and_handle(base_url+'change_priority_ajax',{'id':$get_row_id($this.parent()),'val':$this.val()},$this);});jQuery('td.changefreq select').bind('change',function() {var $this=jQuery(this);$post_and_handle(base_url+'change_changefreq_ajax',{'id':$get_row_id($this.parent()),'val':$this.val()},$this);});}