For iFRME injection, first search the all domains on the server using following command which are infected then remove it using following script. find /home/*/public_html/ -type f -exec grep -Eil “iframedomain.com” {} \; >> scanresult.txt Where iframedomain.com is injected domain. Now use following script to remove it. vi remove.sh and add following #!/bin/bash for i in […]
See MoreTag: Linux commands
Set scheduler task on windows server
To set scheduler task on windows server one need to perform below mentioned steps: 1) Click on Start -> Control Panel -> Scheduled Task. 2) Click on “Add Scheduled Tasks”. 3) Click on Next to continue. 4) Select scheduler task file or program for which one need to set it. 5) Click on Next. 6) […]
See MoreLinux Server Security Cheklist.
1. Keep the system Updated with Latest Security Patches 2. Keep Yourself updated with latest vulnerabilities through mailing lists, forums etc. 3.Disable and stop unwanted services on the server. 4.Use SUDO to limit ROOT Access 5. SSH security settings. 6. Check the integrity of critical files using checksum 7.Tunnel all of your X-Window Sessions through […]
See More