I found a simple way to disable/prevent the username enumeration on a WordPress installation. Follow these steps edit the file .htaccess of your WordPress installation add the following lines : RewriteCond %{QUERY_STRING} author=\d RewriteRule ^ /? [L,R=301] You can check
Transform HTML textarea element into a VI editor
Wmic tool to check Active Directory replications
Disable the SSL v3 Protocol on IIS and Apache
Automatic security update process with unattended-upgrades
NTP: how to chroot
The following bash script will automate the configuration of ntp to run in a jail (chroot) for a debian/ubuntu. #!/bin/bash /etc/init.d/ntp stop rootfs=/var/chroot/ntp mkdir -p $rootfs/{etc,var/lib/ntp,var/log} mv /etc/ntp.conf $rootfs/etc ln -s $rootfs/etc/ntp.conf /etc/ntp.conf if [ -e /var/lib/ntp/ntp.drift ]; then mv