Update of /cvsroot/javanetsim/IceScan
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23013
Modified Files:
CHANGELOG ctarget.h TODO csubtarget.h
Log Message:
no message
Index: csubtarget.h
===================================================================
RCS file: /cvsroot/javanetsim/IceScan/csubtarget.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** csubtarget.h 29 Nov 2006 12:51:01 -0000 1.3
--- csubtarget.h 30 Nov 2006 05:27:39 -0000 1.4
***************
*** 487,491 ****
sprintf(output_buf, "Not shown: %d filtered ports.", filtered);
}else{
! sprintf(output_buf, "Not shown: %d filtered && %d closed ports.", closed);
}
out->line(output_buf);
--- 487,491 ----
sprintf(output_buf, "Not shown: %d filtered ports.", filtered);
}else{
! sprintf(output_buf, "Not shown: %d filtered && %d closed ports.", filtered, closed);
}
out->line(output_buf);
Index: ctarget.h
===================================================================
RCS file: /cvsroot/javanetsim/IceScan/ctarget.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ctarget.h 28 Nov 2006 17:57:54 -0000 1.1
--- ctarget.h 30 Nov 2006 05:27:39 -0000 1.2
***************
*** 23,28 ****
char *subtarget_hostname;
subtarget_hostname = subtargets_addresses[i];
!
! csubtarget *cst = new csubtarget(hostname, par, out, isnd);
subtargets.push_back(cst);
--- 23,28 ----
char *subtarget_hostname;
subtarget_hostname = subtargets_addresses[i];
!
! csubtarget *cst = new csubtarget(subtarget_hostname, par, out, isnd);
subtargets.push_back(cst);
Index: TODO
===================================================================
RCS file: /cvsroot/javanetsim/IceScan/TODO,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TODO 29 Nov 2006 12:51:01 -0000 1.4
--- TODO 30 Nov 2006 05:27:39 -0000 1.5
***************
*** 5,9 ****
-- UI --
! + add enable/disable reverse dns lookup;
* fix reading port range for ack/udp/syn pings;
--- 5,10 ----
-- UI --
! + add enable/disable reverse dns lookup;
! + add multiple targets handling;
* fix reading port range for ack/udp/syn pings;
***************
*** 12,15 ****
--- 13,17 ----
+ UDP Ping (-PU [portlist]) [QweR]
+ TCP SYN Scan (-SS [portlist]) [Key]
+ * stop scanning of target if discovery failed: print message
-- Scanning --
***************
*** 27,34 ****
-- Misc --
! + add scan/discovery/full time reporting
-- Bugs --
! * crash on empty target
! * connect() scan for scanme.nmap.org: 3 filtered && 0 closed ports??? (see nmap result)
\ No newline at end of file
--- 29,36 ----
-- Misc --
! + add scan time reporting
-- Bugs --
! * crash on empty target
! * handling multiple subtargets
\ No newline at end of file
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/javanetsim/IceScan/CHANGELOG,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** CHANGELOG 29 Nov 2006 12:51:01 -0000 1.1
--- CHANGELOG 30 Nov 2006 05:27:39 -0000 1.2
***************
*** 7,9 ****
+ added printing time at startup.
* fixed icmp echo discovery (icmplen).
! * fixed selecting discovery type from command line.
\ No newline at end of file
--- 7,11 ----
+ added printing time at startup.
* fixed icmp echo discovery (icmplen).
! * fixed selecting discovery type from command line.
!
! * fixed format string vulnerability when showing port table.
\ No newline at end of file
|