information gathering

10
Information Gathering Marcos

Upload: mirojo

Post on 20-Jun-2015

779 views

Category:

Technology


1 download

DESCRIPTION

Power Point con la presentación de Marcos sobre Information Gathering

TRANSCRIPT

Page 1: Information Gathering

Information Gathering

Marcos

Page 2: Information Gathering

Information Gathering

VictimaWhoisGoogle HackingEmail HarvestingDNS

Page 3: Information Gathering

Information Gathering

Victima

Organización Atómica de Irán www.aeoi.org.ir

Page 4: Information Gathering

Information Gathering

Whois

Netcraft

Page 5: Information Gathering

Information Gathering

Google

site: aeoi.org.irFiletype:pdf site:aeoi.org.ir

Page 6: Information Gathering

Information Gathering

E-mail Harvesting

Page 7: Information Gathering

Information Gathering

DNS

http://www.digininja.org/projects/zonetransferme.php

Zonetransfer.me

Page 8: Information Gathering

Information Gathering

DNS

Page 9: Information Gathering

Information Gathering

DNS – ip

#!/bin/bash

for c in $(seq 0 255);do

for d in $(seq 0 255);do

host 192.168.$c.$d | grep "name pointer"

done

done

Page 10: Information Gathering

Information Gathering

DNS – Descubrir dns.

#!/bin/bash

for name in $(cat dns.txt);do

host $name.dnstransfer.me | grep “has address"

done