Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security FullDisclosure
[Top] [All Lists]

Re: [Full-disclosure] Solaris telnet vulnberability - how many on yourne

Subject: Re: [Full-disclosure] Solaris telnet vulnberability - how many on yournetwork?
Date: Sat, 17 Feb 2007 01:32:26 +0000
The following script might also help find Solaris telnet servers on
your network.

Note: I give no guarantees that it will work

# solaris-telnetd-audit.sh
IPSFILE="./ip-addresses.lst";
MESSAGE="possible Sun Solaris telned found";
EMAIL="youremail@domain.com";

for IP in `cat $IPSFILE`
do
        echo "Trying $IP ...";
        if nmap -P0 -n -p23 -sS $IP | grep -i open > /dev/null
        then
                if nmap -P0 -n -p23 -sV $IP | grep -ie 'SunOS' -ie 'Solaris'
                then
                        echo "$MESSAGE on $IP"; echo $IP >>
$0.results; echo $IP | mail -s $MESSAGE $EMAIL
                fi
        fi
done


On 2/12/07, Michael Holstein <michael.holstein@csuohio.edu> wrote:
If you run Solaris, please check if you got telnet enabled NOW.

Simple test :

nmap -sV -oG - -p23 your.net/cidr |grep "Sun Solaris"

Cheers,

Michael Holstein CISSP GCIA
Cleveland State University

_______________________________________________
Full-Disclosure - We believe in it.
Charter: http://lists.grok.org.uk/full-disclosure-charter.html
Hosted and sponsored by Secunia - http://secunia.com/



-- 
pagvac
[http://ikwt.com/]

_______________________________________________
Full-Disclosure - We believe in it.
Charter: http://lists.grok.org.uk/full-disclosure-charter.html
Hosted and sponsored by Secunia - http://secunia.com/

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