Subscribe Now

* You will receive the latest news and updates on your favorite celebrities!

Trending News

Autor: Eduardo

xen

XenServer Dicas 

Como finalizar uma VM travada no XenServer Sua VM travou e você não quer reiniciar o servidor para liberar a tarefa que não desliga, essa dica servirá para desligar a VM que está travada. Primeiro passo é saber o uuid da VM que está travada,...
wordpress

How to remove entire admin menu? 

The correct hook to use is admin_menu and then create a function to remove the menus you want to remove. The following 2 functions remove all the menus. add_action( ‘admin_menu’, ‘remove_admin_menus’ ); add_action( ‘admin_menu’, ‘remove_admin_submenus’ ); //Remove top level admin menus function remove_admin_menus() { remove_menu_page(...
iptables

IPtables – Bloquear IPs definitivamente 

IPtables – Bloquear IPs definitivamente Galera, Estava com um problema na empresa onde trabalho, o servidor está com o IPtables bloqueando tudo certinho, mas tinham alguns IPs que tentavam acessá-lo muitas vezes ao dia. Isto gerava muitos Logs no SYSLOG, então eu queria bloquear esses...
Apache2, iptables

IP bloqueado ataque continua Prevencao Syn Flood 

# Prevencao Syn Flood http://www.forumcpanel.com.br/topic/2148-ip-bloqueado-ataque-continua/ iptables -N syn-flood iptables -A INPUT -i eth0 -p tcp –syn -j syn-flood iptables -A syn-flood -m limit –limit 10/s –limit-burst 24 -j RETURN iptables -A syn-flood -j DROP http://linuxthink.blogspot.com.br/2011/03/prevent-syn-floods-synrecv-attack-on.html iptables -I INPUT -p tcp -m state –state NEW –dport...