Skip to content

Instantly share code, notes, and snippets.

View welrbraga's full-sized avatar

Welington Rodrigues Braga welrbraga

View GitHub Profile
@welrbraga
welrbraga / proof.md
Created February 20, 2024 18:51
Prova de identidade para KeyOxid

openpgp4fpr:F168BADC91643CB940EACFA050D10044FE0D9BA9

Keybase proof

I hereby claim:

  • I am welrbraga on github.
  • I am welrbraga (https://keybase.io/welrbraga) on keybase.
  • I have a public key ASCGZbQ2iuhjq4cta_eOhu2e0tmmHhc46PKOPJUENdl4vgo

To claim this, I am signing this object:

@welrbraga
welrbraga / removedafila.sh
Last active December 11, 2017 16:30
Remover todas as mensagens de um determinado domínio da fila de entrega do Postfix
DOMAIN="@dominiomaildito.com" ; postqueue -p |awk '/'$DOMAIN'/ { system("postsuper -d "$1) }'
@welrbraga
welrbraga / fail2ban-status-all.sh
Created December 8, 2017 10:21
faill2ban status all
#!/bin/bash
#Save this script on /usr/local/bin
#welrbraga - 2017-12-07
fail2ban-client status|awk -F: '/Jail list:/ { split($2,jail,",") ; for (i in jail) { gsub(/[\t ]/,"",jail[i]); system("fail2ban-client status "jail[i]); }; }'