TODO 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. This is a general list of things which should/could/may be done.
  2. If any of these features interest you let me know- especially if you're
  3. willing and able to help code it.
  4. Legend:
  5. - = Not started
  6. + = Done
  7. O = Mostly done
  8. o = Started work
  9. . = Canceled
  10. ? = To think about
  11. + Look at VLAN (802.1q) packets
  12. - others non-vanilla types?
  13. + Add tags? Remove tags? Change tags?
  14. - Tag only one side of the connection
  15. - Cisco's ISL trunking?
  16. - Add support for MPLS
  17. - Add support for GRE
  18. http://www.linuxguruz.com/iptables/howto/2.4routing-5.html
  19. Perhaps this should be done via the hardware interface rather then the GRE
  20. virtual interface since libnet doesn't support the GRE virtual
  21. + Add support for setting the ethernet protocol field so we can use
  22. -I, -K to fill out an entire ethernet header w/o using -2
  23. + Add a secondary interface full layer two rewrite option
  24. + Fix MAC rewriting to allow sending packets with a MAC of 00:00:00:00:00:00
  25. - Add support for more linktypes (Prism Monitor, 802.11, FDDI, etc)
  26. - Make it easier for others to add support for others
  27. + Rip out packet munger from tcpreplay and put it into another tool so
  28. that tcpreplay can be more optimized
  29. ? perhaps use libnetdude?
  30. ? make into a library?
  31. + definately put it into a seperate binary (tcprewrite)
  32. - Add the ability to modify packet data via regex(es) in tcprewrite
  33. - Should support pcre
  34. - Support (foo) and $1, etc so new data can include old
  35. - Limit matching which packets via BPF filter and tcpprep cache
  36. (client/server)
  37. - Step through packets ala tcpreplay and provide option to edit (Y/n)
  38. + Improve config file format
  39. + better variable names
  40. + use "var: value" format
  41. + have tcpreplay, tcpprep, tcprewrite sections
  42. + Being solved using GNU AutoOpts
  43. . Add support for dual-nic send on one intf, wait for packet, send next.
  44. would be really useful for testing the effectiveness of how well an IPS
  45. detects and blocks attacks. (TP's tomahawk does this even better then
  46. described here, so why re-invent the wheel?)
  47. - Support fragrouter like features
  48. - basic IP fragmenation
  49. - TCP fudging
  50. - then more advanced stuff
  51. - Can we integrate FR's code?
  52. - Support connection tracking and generating 3way handshake for connections
  53. missing them.
  54. - Bump Syn/Ack numbers by a random or given value so that running
  55. the same pcap will behave as different streams.
  56. - Improve flowreplay so it actually works
  57. o Use libnids to read the pcaps
  58. - Allow handoff to a socket after user specified client/server exchanges
  59. - Perhaps integrate stick/snot/fpg logic into flowreplay:
  60. http://www.geschke-online.de/FLoP/fpg.8.html
  61. to do full 3way handshakes
  62. - IPv6 support? People ask for this every few months, but nobody actually
  63. says they "need" or "really want" it; seems more of "gee, wouldn't it be
  64. nice".
  65. + When splitting traffic via tcpprep print out each packet (tcpdump style)
  66. so end users know where each packet is going
  67. + Improve autoconf detection of libraries
  68. + Re-organize source tree
  69. O tcpdump decoder should print packets syncronously w/ the main process
  70. - Rewrite do_sleep() to handle sub sleep times by only nanosleep()'ing
  71. once for multiple packets when the timestamps are close enough. We
  72. also need to time nanosleep, since different architectures have lower
  73. minimum sleep times (Linux/Alpha is 1ms vs. 10ms for Linux/x86)
  74. + Tcpreplay should say which interface each packet is going out
  75. + Better use of GNU Autotools
  76. + Improve CLI/config file parsing
  77. - Tcprewrite should be able to remove the two byte ethernet FCS (checksums)
  78. at the end of the frame.
  79. - See about removing libnet_init() from all binaries other then tcprewrite
  80. so we don't have to run as root:
  81. . libnet_addr2name4 (ignore, doesn't require libnet_t context)
  82. + libnet_name2addr4
  83. - libnet_get_hwaddr
  84. - libnet_do_checksum
  85. + Support randomization of IP addresses in ARP packets
  86. - Only tcpreplay should need to run as root.
  87. - Tcpreplay should use raw sockets or BPF directly for writing rather then
  88. libnet where applicable for higher performance.