Before we can build and install ssh2 extension, we’ll need a few packages yum install gcc php-devel php-pear libssh2 libssh2-devel makeyum install gcc php-devel php-pear libssh2 libssh2-devel make Install the …
MyDumper – CentOS HowTo
Mydumper – MySQL backup tool created by Domas Mituzas and later supported by several other devs. The main benefits are multi-threaded and fast backups with almost no locking (if not …
New server
From today I’m on the new server and I desire you won’t detect any troubles.
Extract multiple 7z files in folder (at once)
To extract multiple 7z files at once, use the next script for fileToExtract in *.7z do 7z x "$fileToExtract" donefor fileToExtract in *.7z do 7z x "$fileToExtract" done Remember, x …
GNU bash Environment Variable Command Injection
You can test your server for bash command injection with [root@ss ~]# env x='() { :;}; echo vulnerable’ bash -c "echo this is a test" vulnerable this is a test[root@ss …
XSS via DNS
XSS (Cross-Site Scripting) attack is a type of injection, in which malicious scripts are injected into trusted web sites. Your browser has no way to know that the script should …
AN!Cluster Tutorial
Today I found something very interesting (and large) https://alteeve.ca/w/AN!Cluster_Tutorial_2 p.s. Please do not bother me for the next 30 days 🙂
Samsung printer on Linux – rastertosplc – No such file or directory
If you try to install Samsung printer (in my case ML1675) on Ubuntu 14.04 or Mint 17, you’ll may have some problems with missing file – rastertosplc. If you added …
CentOS server – NFS client/server howto
NFS stands for Network File System and through NFS, a client can read and/or write a remote share on an NFS server (like on local hard disk) The first step …