Archivo por meses: septiembre 2014

Bash specially-crafted environment variables code injection attack CVE-2014-6271

http://www.rapid7.com/db/modules/auxiliary/scanner/http/apache_mod_cgi_bash_env Posted on 2014/09/24 by Huzaifa Sidhpurwala Bash or the Bourne again shell, is a UNIX like shell, which is perhaps one of the most installed utilities on any Linux system. From its creation in 1980, bash has evolved from a simple terminal based command interpreter to many other fancy uses. In Linux, environment variables… Leer más »

install webmin centos 7

Webmin is a web based tool for Linux, it helps to manage the services like DNS, DHCP, MySQL server, PostgrSQL and other networking services. It also helps to manage the user, disk, file system, process, packages, etc.. This post will guide you to install Webmin on CentOS 7. Create repo for webmin. vi /etc/yum.repos.d/webmin.repo Place… Leer más »

centos 7 minimal

ifconfig -a equivalente en centos 7: ip a list   Install net-tools (ifconfig) #yum install net-tools

How to get started with Firewalld

source: http://www.tejasbarot.com/2014/08/05/rhel-7-centos-7-how-to-get-started-with-firewalld/#axzz3DakgfzHX   Hello All, Today I was trying to learn and know about Systemd. I have found one of the great Article about firewalld, Sharing with you guys, It will help you to understand this biggest and major change in RHEL and CentOS 7. This article is not mine, I found on internet and… Leer más »

Install Apache, PHP And MySQL On CentOS 7 (LAMP)

url: http://www.howtoforge.com/apache_php_mysql_on_centos_7_lamp   1 Preliminary Note In this tutorial I use the hostname server1.example.com with the IP address 192.168.0.100. These settings might differ for you, so you have to replace them where appropriate. I will add EPEL-7 repo here to install latest phpMyAdmin as follows: rpm -ivh http://dl.fedoraproject.org/pub/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm

Mondongo a la andaluza

3 kilo mondongo limpio y cortado en cubo 3 kilo papas peladas y cortadas en cuadros 1 kilo garbanzo 1 kilo tomate 1/2 kilo jamón crudo, en trozos 1/2 kilo longaniza, cortada en trozos 1/4 kilo tocineta, en trozos 8 chiles anchos 5 chorizos cortados en trozos, con su manteca 4 naranjas (el jugo) 2… Leer más »

Find sum of file sizes listed in ls -l using awk

March 1, 2010 at 9:17 pm · Filed under Technology ·Tagged add, awk, linux, list, sum, unix 1 ls -l | awk ‘{ TOTAL += $5} END { print TOTAL/1024/1024 }’ With this, awk will pull field number 5 from ls -l, which is the size in bytes in most of the *nix platforms. Then… Leer más »