Recommended Services
Supported Scripts
Blog
CMS: Get complete list of all installed CMS’s on Server
The following scripts may be very handy to get all the list of CMS's on various servers.
Wordpress:
cPanel:
find /home/*/public_html/ -type ...
Zimbra: Assign a dedicated Outgoing SMTP IP for a domain
Zimbra Outgoing SMTP IP per Domain
1. Add the following line in “/opt/zimbra/postfix/conf/main.cf”
sender_dependent_default_transport_maps = regexp:/opt/zimbra/postfix/conf/sdd_transport_maps.regexp
2. Create the file “/opt/zimbra/postfix/conf/sdd_transport_maps.regexp” and ...
BASH: Script to alert when Exim mail queue is HIGH
The following script sends an alert whenever the exim mail queue is greater than a certain threshold
#!/bin/bash
if [ `/usr/sbin/exim ...
Script to Test Email Mail Delivery using SMTP Authentication
The below script may be useful to test the mail delivery using email authentication with and without SSL
Note:
The ...
Linux: Hide OS Version from Nmap scans
If you want to disable detection of OS version during Nmap scans
1. Edit the sysctl.conf file
vi /etc/sysctl.conf
2. Add the ...