Command for to Delete php.ini file from all directories find -name php.ini -exec rm -f {} \;
See MoreCategory: Hostripples Featured
How to stop syn attack on linux server
The SYN (TCP connection request) attack is a common denial of service (DoS) technique. A SYN flood is a form of denial-of-service attack in which an attacker sends a succession ofSYN requests to a target’s system When a client attempts to start a TCP connection to a server, the client and server exchange a series […]
See MoreHow to Zip and Unzip files in UNIX
Here is how to Zip and Unzip files in UNIX unzip myFile.zip – This command will uncompress compressed files with the .zip extension. tar xvf myFile.tar – This command will uncompress compressed files with the .tar extension. gunzip myFile.gz  – This command will uncompress compressed files with the .gz extension.
See More