Script para encontrar vulnerabilidades no BIND
Publicado por Douglas Vigliazzi 13/12/2002
[ Hits: 5.784 ]
Ferramenta que permite identificar versões do BIND vulneráveis. Comprometimento com médio grau de risco.
#!/usr/bin/perl
# >=8.2.3-REL -> not vulnerable
######################################
$file_in = @ARGV[0];
$file_out = @ARGV[1];
$display = @ARGV[2];
$not_vuln = "8.2.3-REL";
unless ($file_in) {
print "[DgL] traduzido por Douglas [DgL]\n";
print "Usar : ./bind_scan.pl <file in> [file out] [display]\n";
}
else {
if ($file_out eq "" ) {
$file_out = "bs_output.txt";
}
if ($display eq "" ) {
$display = 1;
}
open(IP,"<$file_in");
while (!eof(IP)) {
$host = <IP>;
@bind_ver = `dig @$host version.bind chaos txt | grep \\\"8`;
foreach $tmp(@bind_ver)
{
@bind_tmp =split(" ",$tmp);
if ($bind_tmp[4] =~ /$not_vuln/i ) {
if ($display == 1) {
print "\n:. ".$host." Bind: Versão --> ".$bind_tmp[4]." Não Vulnerável .:\n";
}
}
else {
$vuln = ":. ".$host." Bind: Versão --> ".$bind_tmp[4]." Vulnerável .:";
print $vuln."\n";
open (NEW,">$file_out");
foreach ($vuln) {print NEW}
close NEW;
}
}
}
print "\n\n EOF! -dGl- Bind Scan -dGl- \n Douglas Vigliazzi \n\n";
}
Nenhum comentário foi encontrado.
Monitorando o Preço do Bitcoin ou sua Cripto Favorita em Tempo Real com um Widget Flutuante
IA Turbina o Desktop Linux enquanto distros renovam forças
Como extrair chaves TOTP 2FA a partir de QRCODE (Google Authenticator)
Como realizar um ataque de força bruta para desobrir senhas?
Como usar Gpaste no ambiente Cinnamon
Atualizando o Fedora 42 para 43
É normal não gostar de KDE? (18)
Estou tentando ser legalista, mas tá complicado! (2)
PERFIL CRIADO NO SAMBA AD DC NÃO LOGA NO WINDOWS 10 E 11 (2)
PERFIL CRIADO NO SAMBA AD DC NÃO LOGA NO WINDOWS 10 E 11 (1)









