pen-test
[Top] [All Lists]

Re: Tools for pen test,

To: pen-test@securityfocus.com
Subject: Re: Tools for pen test,
From: Antonin Kral <A.Kral@sh.cvut.cz>
Date: Sun, 5 Aug 2007 02:15:34 +0200
Delivered-to: sp-com-lists@consult.net
Delivered-to: pentest-list2@consult.net
Delivered-to: mailing list pen-test@securityfocus.com
Delivered-to: moderator for pen-test@securityfocus.com
In-reply-to: <4B7301C007954F20AC25B8986552FA27@Steves>
List-help: <mailto:pen-test-help@securityfocus.com>
List-id: <pen-test.list-id.securityfocus.com>
List-post: <mailto:pen-test@securityfocus.com>
List-subscribe: <mailto:pen-test-subscribe@securityfocus.com>
List-unsubscribe: <mailto:pen-test-unsubscribe@securityfocus.com>
Mailing-list: contact pen-test-help@securityfocus.com; run by ezmlm
Organization: Trusted Solutions s.r.o. <http://www.trusted.cz>
References: <20b0a0170707270525m548e299dtd0643c9e0e2ef49d@mail.gmail.com> <BA0E92F3A518C74F99579843B13CF25939A4@ned.LogicallySecure.local> <002401c7d18b$1a7086f0$4f5194d0$@org> <20b0a0170707300602p59857285l3f1a703a6f14c352@mail.gmail.com> <AD30A871-0213-4432-9CFE-2F7DE432E89C@martinelli.com> <D491D8D0D9BC4B38806EC8AD608E7FC4@infosysec> <006601c7d649$903f4250$b0bdc6f0$@net.au> <4B7301C007954F20AC25B8986552FA27@Steves>
Resent-date: Sat, 4 Aug 2007 18:09:02 -0600 (MDT)
Resent-from: pen-test-return-1078484763@securityfocus.com
Resent-message-id: <20070805000902.0A33B143787@outgoing2.securityfocus.com>
Resent-sender: listbounce@securityfocus.com
Sender: listbounce@securityfocus.com
User-agent: Mutt/1.5.16 (2007-06-11)
Hi Jonh,

for nicely written parallel ping visit fping site:

    http://fping.sourceforge.net/


      Cheers,

          Antonin



* Stephen McNaught <smcnaugh@comcast.net> [2007-08-05 01:05] wrote:
> 
> A couple other examples:
> 
> for I in `seq 1 255`
>   do ip="$1.$I"
>       echo $ip
>       e=`ping -c 1 $ip | grep "64 bytes"`
>        if [[ X$e != X ]]
>          then
>            echo $e >> /tmp/$ip.output
>            nslookup $ip >> /tmp/$ip.output
>            traceroute $ip >> /tmp/$ip.output
>        fi
>  done 
> 
> 
> while read ip
>  do echo $ip
>     e=`ping -c 1 $ip | grep "64 bytes"`
>        if [[ X$e != X ]]
>          then
>            echo $e >> /tmp/$ip.output
>            nslookup $ip >> /tmp/$ip.output
>            traceroute $ip >> /tmp/$ip.output
>        fi
>  done < /tmp/testis
> 
> -----Original Message-----
> From: listbounce@securityfocus.com [mailto:listbounce@securityfocus.com] On
> Behalf Of IRM
> Sent: Friday, August 03, 2007 11:43 PM
> To: pen-test@securityfocus.com
> Subject: Tools for pen test, 
> 
> For the sake of completeness, every time I perform a penetration testing I
> need to PING, NSLOOUKUP, TRACERT, etc. The problem is that tools like PING
> only can accept single IP Address so every time I do a penetration testing
> for multiple IPs, I need to execute the ping command manually and save all
> the corresponding evidence. I knew tools like NMAP can perform ping for
> multiple IP addresses with single command but I still wanted to use legacy
> *Nix tools like ping, nslookup, etc. 
> 
> I was wondering has anyone in here had a shell script that can execute tools
> like ping, nslookup and pipe it into a file? Or knew a shell script that can
> do this kind of job?
> 
> To give you an illustration, the shell script that I am looking for should
> can perform this kind of job.
> 
> >Program 192.168.0.1-20 -> will ping (using *nix ping command from host ID
> 192.168.0.1 - 192.168.0.20 and save all the output into a file
> 
> Cheers, 
> John 
> 
>  
> 
> ------------------------------------------------------------------------
> This list is sponsored by: Cenzic
> 
> Need to secure your web apps NOW?
> Cenzic finds more, "real" vulnerabilities fast.
> Click to try it, buy it or download a solution FREE today!
> 
> http://www.cenzic.com/downloads
> ------------------------------------------------------------------------
> 
> 
> 
> 
> ------------------------------------------------------------------------
> This list is sponsored by: Cenzic
> 
> Need to secure your web apps NOW?
> Cenzic finds more, "real" vulnerabilities fast.
> Click to try it, buy it or download a solution FREE today!
> 
> http://www.cenzic.com/downloads
> ------------------------------------------------------------------------
> 

------------------------------------------------------------------------
This list is sponsored by: Cenzic

Need to secure your web apps NOW?
Cenzic finds more, "real" vulnerabilities fast.
Click to try it, buy it or download a solution FREE today!

http://www.cenzic.com/downloads
------------------------------------------------------------------------


<Prev in Thread] Current Thread [Next in Thread>