CHANGELOG 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751
  1. 07/12/2024 Version 4.5.1
  2. - NULL Pointer Dereference in parse_endpoints (#888)
  3. - tcpreplay --include / --exclude to control which packets are replayed (#884)
  4. - add -W (--suppress-warnings) option to suppress warning messages (#878)
  5. - AF_XDP compile issue due to merge issue (#876)
  6. - memory leak in tcpprep when using include/exclude (#869)
  7. - memory leak in tcpprep when using RegEx (#867)
  8. - fix nanosecond timestamp regression bug (#863)
  9. - autotools - AC_HELP_STRING is obsolete in 2.70 (#856)
  10. - add -w output.pcap command line option to direct the output to a pcap (#853)
  11. - configure.ac: do not run conftest in case of cross compilation (#849)
  12. - Haiku support (#847)
  13. - --fixhdrlen option added to control action on packet length changes (#846)
  14. - incorrect checksum for certain IPv4 packets - fixed by #846 (#844)
  15. - add check for IPv6 extension header length (#827 #842)
  16. - GitHub template for pull requests (#839)
  17. - improved 802.3 (Ethernet I) handling and warning messages (#835)
  18. - handle IPv6 fragment extension header (#832 #837)
  19. - Linux tap interfaces fail intermittently (#828)
  20. - Infinite loop in tcprewrite at get.c (#827 #842)
  21. - SLL incorrect size and protocol when converted to Ethernet (#826)
  22. - CVE-2023-43279 add check for empty CIDR (#824 #843)
  23. - AF_XDP socket extension (#822 #823)
  24. - configure.ac: unify search dirs for pcap and add lib32 (#819)
  25. - tcpreplay-edit recomputes IPv4 checksums unnecessarily (#815 #846)
  26. - CVE-2023-4256 double free in tcprewrite DLT_JUNIPER_ETHER (#813 #851)
  27. - dlt_jnpr_ether_cleanup: check config before cleanup (#812 #851)
  28. - SEGV on invalid Juniper Ethernet header length (#811)
  29. - nanosecond timestamps support (#796)
  30. - Linux cooked packet fatal error (#792)
  31. - low PPS values run at full speed after several days (#779)
  32. - create DLT_LINUX_SLL2 plugin (#727)
  33. 06/04/2023 Version 4.4.4
  34. - overflow check fix for parse_mpls (#795)
  35. - tcpreplay-edit: prevent L2 flooding of ipv6 unicast packets (#793)
  36. - CVE-2023-27784 CVE-2023-27785 CVE-2023-27786 CVE-2023-27787 CVE-2023-27788 CVE-2023-27789
  37. bugs caused by strtok_r (#782 #784 #785 #786 #787 #788)
  38. - CVE-2023-27783 reachable assert in tcpedit_dlt_cleanup (#780)
  39. - add CI and C/C++ Linter and CodeQL (#773)
  40. - reachable assert in fast_edit_packet (#772)
  41. 01/01/2023 Version 4.4.3
  42. - upgrade autogen/libopts to version 5.18.16 (#759)
  43. - avoid implicit int in configure.ac (#757)
  44. - remove invalid assert in tree (#756)
  45. - program exit after send error (#751)
  46. - make libpcap version test more robust (#750)
  47. - looping inflates some packet counters (#749)
  48. 08/28/2022 Version 4.4.2
  49. - fix tests when building in a directory outside source tree (#767)
  50. - remove autogen.sh from distribution tarballs (#745)
  51. - CVE-2022-37048 heap-overflow in get_l2len_protocol (#735)
  52. - replaying on a loopback interface is broken (#732)
  53. - replay edit with both --loop and --preload_pcap options (#729)
  54. - test suite bus error on armhf (#725)
  55. - CVE-2022-28487 format string vulnerability in fix_ipv6_checksums (#723)
  56. - CVE-2022-27942 heap-overflow in parse_mpls (#719)
  57. - CVE-2022-27940 CVE-2022-37047 CVE-2022-37049 heap-overflow in get_ipv6_next (#718)
  58. - CVE-2022-27939 reachable assertion in get_layer4_v6 (#717)
  59. - CVE-2022-25484 CVE-2022-27941 heap buffer overflow in get_l2len_protocol (#716)
  60. - remove bash-only test in configure script (#714)
  61. 02/12/2022 Version 4.4.1
  62. - fix support for piping PCAP files from STDIN (#708)
  63. - build failures Debian/kfreebsd (#706)
  64. - bus error when building on armhf (#705)
  65. - typo fixes (#704)
  66. - CVE-2022-27418 heap buffer overflow in tcpreplay (#703)
  67. - CVE-2022-27416 double free in Juniper DLT (#702)
  68. 01/31/2022 Version 4.4.0
  69. - remove obsolete FORCE_ALIGN support to fix macOS 11 compile (#695)
  70. - add a security policy document (#689)
  71. - CVE-2021-45386 CVE-2021-45387 two reachable assertions in add_tree_ipv4() and add_tree_ipv6() (#687 #678)
  72. - ability to specify directory of pcap files (#682)
  73. - incorrect PPS rate for long-running sessions (#679)
  74. - option --skipbroadcast not working (#677 #678)
  75. - revert #630 to fix --multiplier issues (#674)
  76. - gcc 9.3 compiler warnings (#670)
  77. - installed netmap not automatically detected (#669)
  78. - latest macOS SDK selected by default (#668)
  79. - heap-buffer-overflow with flow_decode() (#665)
  80. - add feature VLAN Q-in-Q (#625)
  81. - add feature update Ethernet MAC on multicast IP (#563)
  82. 04/01/2021 Version 4.3.4
  83. - ASAN reports memory leaks while running tests (#662)
  84. - local libopts compiler warnings (#658)
  85. - DLT name for DLT_C_JNPR_ETHER in documentation (#649)
  86. - clean up new_cidr_map() string manipulation on error exit (#648)
  87. - fix gcc 8.3.0 build warnings (#634)
  88. - invalid --pps value protection (#632)
  89. - packets slowly drift further and further behind when they should be sent (#630)
  90. - 64 bit rollover can cause pps replay issues after several hours (#629)
  91. - typo fixes (#626) (#627)
  92. - DLT_NULL/DLT_LOOP support for cross-platform PF_INET6 (#624)
  93. - armv5 Freescale compile (#623)
  94. - heap buffer overflow in tcpreplay fast_edit_packet (#620)
  95. - heap buffer overflow in tcpreplay get_next_packet (#619)
  96. - CVE-2020-24266 heap buffer overflow in tcpprep get_l2len (#617)
  97. - CVE-2020-24265 heap buffer overflow in tcpprep (#616)
  98. - fix UNUSED macro declaration (#614)
  99. - handle malformed and unsupported packets as soft errors (#613)
  100. - compile failure on aarch64-linux-android (#612)
  101. - tcprewrite --fixlen not working on DLT conversion (#582)
  102. - fix configure --without-libdnet (#567)
  103. - ensure automake version is at least 1.15 (#553)
  104. - with multiplier option only first file can be sent and hang (#472)
  105. - do not create tap0 if device already exists (#411) (#651)
  106. 05/20/2020 Version 4.3.3
  107. - Increase cache buffers size to accomodate VLAN edits (#594)
  108. - CVE-2018-20553 Correct L2 header length calculations so that IP header offset is correct (#584)
  109. - Correct L2 header length to correct IP header offset (#583)
  110. - Fix warnings from gcc version 10 (#580)
  111. - CVE-2020-23273 Heap Buffer Overflow in randomize_iparp (#579)
  112. - Use after free in get_ipv6_next (#578)
  113. - CVE-2020-12740 Heap Buffer Overflow in git_ipv6_next (#576)
  114. - Call pcap_freecode() on pcap_compile() (#572)
  115. - Increase max snaplen to 262144 (#571)
  116. - Fix divide by zero in fuzzing (#570)
  117. - Unique IP repeats at very high iteration counts (#566)
  118. - Fails to compile on FreeBSD amd64 13.0 (#558)
  119. - CVE-2020-18976 Heap Buffer Overflow in do_checksum (#556) (#577)
  120. - Attempt to correct corrupt pcap files, if possible (#557)
  121. - Fix GCC v10 warnings (#555)
  122. - Remove some duplicated SOURCES entries (#551)
  123. - Expand /dev/bpfX hard limit to fix macOS Mojave (#550)
  124. - Implement --loopdelay-ms when using --loop=0 (#546)
  125. - CVE-2018-20552 Heap overflow packet2tree and get_l2len (#530)
  126. 03/12/2019 Version 4.3.2
  127. - CVE-2019-8381 memory access in do_checksum() (#538)
  128. - CVE-2019-8376 NULL pointer dereference get_layer4_v6() (#537)
  129. - CVE-2019-8377 NULL pointer dereference get_ipv6_l4proto() (#536)
  130. - Rename Ethereal to Wireshark (#545)
  131. 12/27/2018 Version 4.3.1
  132. - Fix checkspell detected typos (#531)
  133. 11/10/2018 Version 4.3.0
  134. - Fix maxOS TOS checksum failure (#524)
  135. - TCP sequence edits seeding (#514)
  136. - Fix issues identifed by Codacy (#493)
  137. - CVE-2018-18408 use-after-free in post_args (#489)
  138. - CVE-2018-18407 heap-buffer-overflow csum_replace4 (#488)
  139. - CVE-2018-17974 heap-buffer-overflow dlt_en10mb_encode (#486)
  140. - CVE-2018-17580 heap-buffer-overflow fast_edit_packet (#485)
  141. - CVE-2018-17582 heap-buffer-overflow in get_next_packet (#484)
  142. - Out-of-tree build (#482)
  143. - CVE-2018-13112 heap-buffer-overflow in get_l2len (#477 dup #408)
  144. - Closing stdin on pipe (#479)
  145. - Second pcap file hangs on multiplier option (#472)
  146. - Jumbo frame support for fragroute option (#466)
  147. - TCP sequence edit ACK corruption (#451)
  148. - TCP sequence number edit initial SYN packet should have zero ACK (#450)
  149. - Travis CI build fails due to new build images (#432)
  150. - Upgrade libopts to 5.18.12 to address version build issues (#430)
  151. - Add ability to change tcp SEQ/ACK numbers (#425)
  152. - Hang using loop and netmap options (#424)
  153. - tcpprep -S not working for large cache files (#423)
  154. - Unable to tcprewrite range of ports with --portmap (#422)
  155. - --maxsleep broken for values less than 1000 (#421)
  156. - -T flag breaks traffic replay timing (#419)
  157. - Respect 2nd packet timing (#418)
  158. - Avoid non-blocking behaviour when using STDIN (#416)
  159. - pcap containing >1020 packets produces invalid cache file (#415)
  160. - manpage typos (#413)
  161. - Fails to open tap0 on Zephyr (#411)
  162. - Heap-buffer-overflow in get_l2protocol (#410)
  163. - Heap-buffer-overflow in packet2tree (#409)
  164. - Heap-buffer-overflow in get_l2len (#408)
  165. - Heap-buffer-overflow in flow_decode (#407)
  166. - Rewrite zero IP total length field to match the actual packet length (#406)
  167. - Stack-buffer-overflow in tcpcapinfo (#405)
  168. - tcpprep --include option does not exclude (#404)
  169. - Negative-size-param memset in dlt_radiotap_get_80211 (#402)
  170. - tcpeplay --verbose option not working (#398)
  171. - Fix replay when using --with-testnic (#178)
  172. 05/10/2017 Version 4.2.6
  173. - Test fails on sparc64 (#393)
  174. 05/02/2017 Version 4.2.5
  175. - Fix issues found by scan-build (#384)
  176. - Improve --portmap help message (#381)
  177. - AFL detected security crash in fuzz feature (#380)
  178. - Coverity static scan detected issues (#374)
  179. - Fuzz should not be overwritting Layer 3 (#372)
  180. - Add --fuzz-factor option to specify fuzz ratio (#371)
  181. - Warnings when building on old distributions (#368)
  182. - Fix more Lintian detected spelling errors (#365)
  183. - Fuzz test failure on ARM and MIPS (#364)
  184. 04/26/2017 Version 4.2.4
  185. - Fix Lintian detected spelling errors (#362)
  186. 04/12/2017 Version 4.2.3
  187. - Archive (remove) QuickTX until maintainer found (#357)
  188. - Ubuntu precise 32bit_build (#356)
  189. 03/08/2017 Version 4.2.2
  190. - Archive (remove) QuickTX (#357)
  191. - Missing symbol pcap_version on macOS 10.12.4 (#356)
  192. 03/23/2017 Version 4.2.1
  193. - Fix reporting of rates < 1Mbps (#348)
  194. - Option --unique-ip not working properly (#346)
  195. 02/26/2017 Version 4.2.0
  196. - MAC rewriting capabilities (#313)
  197. - Fix several issues identified by Coverity (#305)
  198. - Packet destortion --fuzz-seed option by Gabriel Ganne (#302)
  199. - Add --unique-ip-loops option to modify IPs every few loops (#296)
  200. - Netmap startup delay increase (#290)
  201. - CVE-2017-6429 tcpcapinfo buffer overflow vulnerablily (#278)
  202. - Update git-clone instructions by Kyle McDonald (#277)
  203. - Allow fractions for --pps option (#270)
  204. - Print per-loop stats with --stats=0 (#269)
  205. - Add protection against packet drift by Guillaume Scott (#268)
  206. - Print flow stats periodically with --stats output (#262)
  207. - Include Travis-CI build support by Ilya Shipitsin (#264) (#285)
  208. - tcpreplay won't replay all packets in a pcap file with --netmap (#255)
  209. - First and last packet times in --stats output (#239)
  210. - Switch to wire speed after 30 minutes at 6 Gbps (#210)
  211. - tcprewrite fix checksum properly for fragmented packets (#190)
  212. 11/19/2016 Version 4.1.2
  213. - Fix compilation with musl C library (#260)
  214. - Support parallel builds (#259)
  215. - Give user CFLAGS precedence (#256)
  216. - Properly detect Brew install when Xcode is not available (#254)
  217. - CVE-2016-6160 Increase max packet size to 65549 (#251)
  218. - Handle IP headers with zero length (#247)
  219. 01/11/2016 Version 4.1.1
  220. - Improve --pps accuracy and performance (#236)
  221. - Option --unique-ip accepts --duration (#227)
  222. - RFC1624 incremental checksums (#225)
  223. - Option --duration performance optimizations (#223)
  224. - Correct company name in license (#217)
  225. - Compile and mult-arch cross-compile on ARM (#211)
  226. - Tap device support for Linux and FreeBSD from Murat Demirten (#207)
  227. - Handle loopback for linux cooked capture files from corentin-p1(Linux SLL) (#204)
  228. - Master doesn't compile on OS X 10.11 (#203)
  229. - Recognise tbd stubs from Dominyk Tiller (#202)
  230. - Support for tcprewrite multiple IP CIDR (#199)
  231. - Fix incorrect checksums after editing fragmented packets (#190)
  232. - Option --loop=0 full wire wire speed after 1st pass (#172 #191)
  233. - Big-endian tcpliveplay work-around from Brian Micek (#194)
  234. - Build OS X using existing XCode SDK (#185)
  235. - Update to autogen version 5.18.6 and libopts 46.0.16 (#182)
  236. - netmap reports impossibly high capacity (#176)
  237. - Duration feature from dexteradeus (#175)
  238. - Stop sending and exit when limit is reached (#174)
  239. - Extra packets sent with -L option (#173)
  240. - Buffer overflow bug in tcpprep (#167)
  241. - netmap optimizations (#93)
  242. 12/17/2014 Version 4.1.0
  243. - Do not build Quick TX modules on OS X (#164)
  244. - Add a flag to customize netmap delay (#160)
  245. - Fix some compile wwarnings (#159)
  246. - Disabled QuickTX build by default (#157)
  247. - Less verbose build (#154)
  248. - Add a loop delay option (#125)
  249. - CentOS 6.5 kernel panic on Quick TX init (#146)
  250. - Fix libpcap not found on CentOS 7 (#145)
  251. - Segfault in tcpliveplay on x86_64 (#132)
  252. - Sometimes unable to interrupt with Ctrl-C (#129)
  253. 10/08/2014 Version 4.1.0beta1
  254. - Fix cross compiling (#140)
  255. - Add Quick TX module for Linux (#136)
  256. - Better recovery for missing static libpcap libs (#128)
  257. 09/05/2014 Version 4.0.5
  258. - Fix build failure with latest netmap 11 (#123)
  259. - Fix unable to use Zero Copy interfaces on PF_RING (#118)
  260. - Corrected build for latest version of PF_RING (#81)
  261. - Proper error message when vale is unconfigured (#113)
  262. - Avoid a netmap module debug message (#110)
  263. - Add missing header to distribution (#108)
  264. - Make --netmap version agnostic (#106)
  265. - Fix netmap hang in FreeBSD 11 (#103)
  266. - Fix netmap hang if network cables unplugged (#96)
  267. - Support for Vale Switch (#91)
  268. - Prevent file retransmissions when selecting multiple files (#86)
  269. - Fix max replay rate for all loops except first when omitting --mbps (#85)
  270. - Add missing sanity check in libopt (#84)
  271. - Seg fault on some IPv6 files when using -C option with tcprewrite (#83)
  272. - Support for PF_RING DNA version of libpcap (#81)
  273. - Fix segfault when using '-F pad' (#80)
  274. - Disallow netmap on multiple interfaces (#79)
  275. - Fix build for FreeBSD version 8.4 (#78)
  276. 03/22/2014 Version 4.0.4
  277. - Number of packets inaccurate when using --netmap method (#76)
  278. - Unexpected packet counts with --loop and --cachefile enabled (#75)
  279. - Improved error messages when interface is a file (#74)
  280. - Missing interfaces with --listnics option (#67)
  281. - Compile issue with netmap v10 and debugging (#66)
  282. - Bad values with --stats and -t options (#65)
  283. 02/04/2014 Version 4.0.3
  284. - Fix build errors when ENABLE_VERBOSE is not set (#60)
  285. - Build error on host without tcpdump (#59)
  286. 01/17/2014 Version 4.0.2
  287. - Fix hangs with --mbps command (#54)
  288. 01/16/2014 Version 4.0.1
  289. - Support for netmap version 10 API (#53)
  290. - Remove deprecated "absolute time" for OS X (#52)
  291. - Make dosleep() rentrant to support API concurrency (#51)
  292. - Remove compiler warnings (#50)
  293. - Fix slow netmap in Intel GigE "igb" server NICS (#49)
  294. 01/05/2014 Version 4.0.0
  295. - Implemented wiki page for 4.X - http://tcpreplay.appneta.com
  296. - Support for ARM aarch64 (appneta #43)
  297. - Add Juniper Encapsulated Ethernet DLT (appneta #42)
  298. - Fixed seg fault on -K and --dualfile options (appneta #41)
  299. 12/22/2013 Version 4.0.0beta2
  300. - Restored -K option which somehow disappeared (appneta #35)
  301. - Improve printing with small pcaps at high rates (appneta #34)
  302. - Fixed build errors on BSD and Fedora 20 (appneta #32 #33)
  303. 12/20/2013 Version 4.0.0beta1
  304. - Compile and cross compile on ARM (appneta #26)
  305. - Add flow statistics (appneta #23)
  306. - Merge code cleanups from old 4.0alpha1 project (appneta #18)
  307. - Deprecated file-cache option - use preload-pcap instead (appneta #17)
  308. - Removed obsolete sleep-mode and sleep-accel options (appneta #16)
  309. - Remove unreliable RDTSC option (appneta #16)
  310. - Switch from BSD to GPLv3 license (appneta #5)
  311. - Add --unique-ip option to tcpreplay (appneta #4)
  312. - Removed sleep-accel option (appneta #2)
  313. - Enhance accuracy and performance of --mbps option (appneta #2)
  314. - Add netmap injector (appneta #1)
  315. - Properly process IPv6 extension headers (#396)
  316. - Update URL's to point to new tcpreplay website (#430)
  317. - Improve & fix bugs in tcpcapinfo (#437)
  318. - Fix statistics to be more industry standard (#443)
  319. - Add --nofixcsum (#449)
  320. - Fix compile failure under FreeBSD 9.0 (#450)
  321. - Don't checksum packets before going through fragroute engine (#452)
  322. - Add support for --maxsleep option to tcpreplay (#453)
  323. - Fix segfault when rewriting multiple ports (#459)
  324. - Fix bug with printing stats after CTRL-C (#482)
  325. - Update autotools (#483)
  326. - Don't recalculate UDP checksums if it's value is 0 (#490)
  327. - Fix documentation of --efcs option to be 4, not 2 bytes (#495)
  328. - Fix libdnet header detection under Debian distros (#499)
  329. - Update GNU Autogen to 5.11.5 (#501)
  330. - Fix --stats option for tcpreplay (#503)
  331. - Add support for injecting directly via custom Linux kernel module (#505)
  332. - Fix cidr code debugging (#506)
  333. - Standardize on primary/secondary meaning of interfaces/tcpprep split (#507)
  334. 08/15/2010 Version 3.4.5beta1
  335. - First pass at fixing 'make test' on many little-endian systems (#429)
  336. - Warn users when processing LINUX_SLL frames w/o an Ethernet source MAC (#434)
  337. - Don't try to fragroute non-IPv4/v6 packets so we don't error out (#432)
  338. - Initial Linux TX_RING sending support (#435)
  339. - Update to GNU Autoconf 2.67 (#436)
  340. - Add tcpcapinfo which dumps information about the pcap header/packets (#437)
  341. - Add --dualfile support for replaying two files at the same time (#439)
  342. - Fix bug where --tos=0 didn't do anything (#440)
  343. - Fix crash when processing CIDR data (#441)
  344. 04/04/2010 Version 3.4.4
  345. - Set default timing method to either gtod or abstime (#404)
  346. - Fix IPv6 parsing of CIDR's (#405)
  347. - Add support for preloading the memory cache (#410)
  348. - Generate more useful error when packets are too small (#411)
  349. - Update to libopts/Autogen 5.9.9 (#412)
  350. - Ship Win32Readme.txt file (#413)
  351. - Update copyright notice to 2010 (#416)
  352. - Dramatically enhance --portmap option (#417)
  353. - Update autotools (#423)
  354. - Add support for printing statistics periodically during the run (#424)
  355. - Warn user when pcap snaplen < 65535 (#425)
  356. - Add 802.1q processing support tcpprep (#428)
  357. 06/25/2009: Version 3.4.3
  358. - Link libnl when newer versions of libpcap require it (#397)
  359. - Ship m4 directory (#398)
  360. - Upgrade to latest autotools scripts (#400)
  361. - Fix error message when running autogen.sh (#401)
  362. 05/20/2009: Version 3.4.2
  363. - Added extensive IPv6 support to tcprewrite & tcpreplay-edit (#11)
  364. - Add IPv6 fragroute support (#388)
  365. - Add IPv6 decoding support to tcpprep (#11)
  366. - Fix compile time error in err.h (#390)
  367. - Add --endpoints support in tcpreplay-edit (#393)
  368. 02/18/2009: Version 3.4.1
  369. - Sendpacket method did not match documentation (#361)
  370. - Fix compile issue on systems without err.h (#363)
  371. - Fix tcpprep --mac not processing non-IPv4 packets (#369)
  372. - Always build tcpreplay w/ editing features as tcpreplay-edit (#372)
  373. - Fix potential tcpbridge issues under OS X & *BSD (#373)
  374. - Fix crash on 4 byte strictly aligned systems (#377)
  375. - Add MTU truncation to tcprewrite/tcpreplay-edit (#379)
  376. 01/15/2009: Version 3.4.0
  377. - Add libdnet and remove libnet support for sending packets (#302)
  378. - Fix numerous 802.11 decoder bugs (#325)
  379. - Fix compile issue under Linux (#326)
  380. - Fix Mbps/sec nonsense (#327)
  381. - Fix tcprewrite crash when packets have no L3+ data (#328)
  382. - Clean up err.c/err.h code and improve performance for non-debug builds (#331)
  383. - Fix timesdiv() timer code (#332)
  384. - Improve high-performance packet sending via multiple packets/interval (#334)
  385. - Fix statistics report errors (#335)
  386. - Fix BPF filters not being used in tcpbridge (#336)
  387. - Improve tcpbridge performance (#337)
  388. - Only use two libpcap handles for tcpbridge (#338)
  389. - Fix autotools usage errors (#340)
  390. - Clean up 'make test' results (#341)
  391. - Update to AutoGen/AutoOpts 5.9.7 (#342)
  392. - Fix compiler warnings from GCC 4.2 (#344)
  393. - Fix numerous memory corruption bugs in libtcpedit DLT plugin code (#345)
  394. - Add support for editing IPv4 TOS/DiffServ/ECN (#348)
  395. - Update autotools to more recent versions (#349)
  396. - Report injection method via -V (#352)
  397. - Fix DLT_USER l2len check bug (#353)
  398. - Replace man2html w/ groff (#354)
  399. - Fix false pcap_inject() detection under Windows/Winpcap (#355)
  400. - tcpbridge now builds under Win32/Cygwin
  401. - libdnet is no longer an option for Win32/Cygwin (#57)
  402. - tcpbridge now supports --listnics (#357)
  403. 06/20/2008: Version 3.3.2
  404. - Fix (again) tcpbridge --unidir assert error (#308)
  405. - Fix tcpbridge bug where all packets that were sent were all zeros
  406. - Fix tcpbridge not honoring --include/exclude flags (#311)
  407. - Fix ip_in_cidr() debug messages (#312)
  408. - Report packets which have timestamps which go backwards in time (#315)
  409. - Clean up --sleep-accel code to use options struct (#316)
  410. - Remove really old and out of date RPM .spec file (#317)
  411. - Warn when sending on non-Ethernet interface (#318)
  412. - Re-enable tcpreplay --listnics (#319)
  413. - Fix sendpacket always reporting using PF_PACKET, even when it doesn't (#322)
  414. - Fix major packet timing issue under old versions of glibc (#324)
  415. 05/17/2008: Version 3.3.1
  416. - Fix limitation of PF_PACKET only supporting Ethernet (#123)
  417. - Fix (again) /dev/bpf detection in FreeBSD 8.0 (#292)
  418. - Document building code from Subversion under Cygwin (#304)
  419. - Fix --enable-force-* under Linux (#305)
  420. - Fix tcpbridge --unidir assert error (#308)
  421. 05/04/2008: Version 3.3.0
  422. - Improve tcpreplay timing accuracy between packets (#41)
  423. - Add tcprewrite fragroute support (#42)
  424. - Fix tcprewrite --efcs option (#277)
  425. - Updated Win32/Cygwin documentation (#280)
  426. - Add dmalloc support (#282)
  427. - Fix tcpprep broken handling of VLAN tagged frames (#290)
  428. - Fix tcprewrite crash when cache file has NO_SEND packets (#291)
  429. - Fix /dev/bpf detection in FreeBSD 8.0 (#292)
  430. - Add tcprewrite --ttl editing option (#294)
  431. - Fix autoconf AM_PROG_CC_C_O warning (#295)
  432. - Add tcpprep --reverse option to split by matching client addresses (#297)
  433. - Update version of autoconf to 1.10.1 (#298)
  434. - Improved GNU Autogen detection and warnings (#299)
  435. - Track EAGAIN errors separately from ENOBUFS (#301)
  436. - Automatically detect Winpcap on Cygwin (#303)
  437. 01/23/2008: Version 3.2.5
  438. - Fix linker error with --enable-tcpreplay-edit and --enable-dynamic-link (#288)
  439. - Fix compile errors with Sun Studio compiler (#286)
  440. 01/16/2008: Version 3.2.4
  441. - Fix crash in tcpreplay when --enable-tcpreplay-edit (#281)
  442. - Display if --enable-tcpreplay-edit in -V (#283)
  443. 11/01/2007: Version 3.2.3
  444. - Fix compile issue under Linux and other OS's (#275)
  445. 10/31/2007: Version 3.2.2
  446. - Enable source MAC spoofing for OS X (#142, #151)
  447. * Tcpreplay now requires OS X 10.5 (Leopard)
  448. - Fix crash/memory access error with tcpreplay -N (#273)
  449. 10/25/2007: Version 3.2.1
  450. - Fix tcprewrite segfault in 'make test' under Linux (#200)
  451. - Major performance improvement in tcpprep for large pcaps (#261)
  452. - Fix strsignal already defined error under Cygwin/Windows (#199)
  453. - Fix compile errors for older versions of GCC (#201)
  454. - Remove flowreplay code (#262)
  455. - Fix DLT rewrite code causing corrupted ethernet protocol type (#268)
  456. - Try to fix inet_aton() issue under Solaris (#260)
  457. 08/26/2007: Version 3.2
  458. - Return a more useful error message when tcpprep fails (#187)
  459. - Add Tomahawk test tool client/server detection algorithm (#186)
  460. - Improved AutoGen support (#191)
  461. - Improved documentation (#164, #198)
  462. - Added Doxygen markup (#176)
  463. - configure now honors --with-tcpdump flag (#192)
  464. - configure now defaults to --enable-64bits which breaks backwards
  465. compatibility in certain situations. Use --disable-64bits if this
  466. concerns you (#195)
  467. - Use safe_free() to detect bugs earlier in development (#197)
  468. 07/19/2007: Version 3.1.1
  469. - Upgrade libopts tearoff to 29:0:4 so that everyone else in the world can
  470. compile tcpreplay (#189)
  471. 07/18/2007: Version 3.1.0
  472. - Add tcprewrite --srcmap & --dstmap for rewriting only source or destination IP's (#185)
  473. - ./configure now reports configuration at end (#155)
  474. - Fix svn:keywords (#160)
  475. - Optimize performance of dlt_en10mb plugin (#161)
  476. - Performance improvements on strictly aligned systems (#162)
  477. - Improve tcpprep error messages and handling (#163)
  478. - Add support for warnings in libtcpedit (#165)
  479. - Only use __attribute__((unused)) w/ GCC (#168)
  480. - Fix compile issues under Solaris (#178)
  481. - Gracefully handle systems w/o static libraries (#179)
  482. - Fix segfault when using BPF filters (#182)
  483. - Add additional DLT Plugins:
  484. - 802.11 (#103)
  485. - 802.11 w/ Radiotap (#177)
  486. 05/01/2007: Version 3.0.1
  487. - Stop tcpreplay causing OS X WiFi from disassociating (#167)
  488. - --pnat incorrectly matched all IP addresses (#170)
  489. - Fix serious memory leak in core common library (#175)
  490. - Fix tcprewrite --enet-vlan on little endian systems (#174)
  491. - Bad pcap timestamps were causing excessive delays (#169)
  492. - Code cleanup (#173)
  493. 04/20/2007: Version 3.0
  494. - By default, no longer try to use libnet. You must now specify --enable-libnet (#148)
  495. - Improve documentation (#30)
  496. - General code cleanup (#47)
  497. - Warn when GNU Autogen version < 5.9 (#153)
  498. - Remove support for pcap_snapshot_override which was never added to libpcap (#140)
  499. - Fix support for C99/GCC 4.3 "inline". Rely on -O3 for better performance. (#149)
  500. - Prioritize 64 bit libraries over 32 bit counterparts (#150)
  501. 04/14/2007: Version 3.0.RC1
  502. - Fix tcpbridge and make it compile by default (#15)
  503. - Fix tcprewrite crash on little-endian systems (#127)
  504. - Gracefully handle broken pcap files where the snaplen < caplen (#130)
  505. - Note: Fix was made in libpcap and will be part of 0.9.6
  506. - Fix numerous bugs with the sendpacket code (#137)
  507. - Add optional support for editing packets with tcpreplay (#61)
  508. - Fix 'make test' on little endian systems (#64)
  509. - tcprewrite -s is no longer endian dependent (#65)
  510. - /docs cleaned up (#66)
  511. - Fix detection/compile of libpcap. Now support versions >= 0.7.2 (#80, #144)
  512. - Add official support Cygwin/Win32 support (#110)
  513. - Clean up libpcap version code (#111)
  514. - Add support for interface alias names for Win32 (#113)
  515. - Warn user on DLT miss-match (#125)
  516. - Fix tcprewrite segfault with --fixlen=pad (#134)
  517. - Add loop/cache support for better performance (#136)
  518. - inline debugging code for better performance (#138)
  519. - configure now supports selecting injection method (#139)
  520. - Fix configure/compile errors under OpenBSD (#146)
  521. - Add tcpbridge --verbose mode (#28)
  522. - Fix compile issues under HP-UX & strictly aligned systems (#141)
  523. - --enable-dynamic-link supports 64bit libraries (#143)
  524. 03/22/2007: Version 3.0.beta13
  525. - Fixed detection of IPv4 packets in libtcpedit on little-endian boxes (#115, #116)
  526. - Fixed TCP/UDP checksum calculation on little-endian boxes (#126)
  527. - Added --quiet flag to tcpreplay for Lothar (#109)
  528. - The --seed flag should now generate the same IPs on both little-endian & big-endian boxes (#65)
  529. - The --skipl2broadcast flag now works as documented (#112)
  530. - Adding L2 header for DLT_RAW encapsulated packets now works (#16)
  531. - Clean up documentation (#66, #75)
  532. - Start initial support for Win32 port (#110, #111)
  533. - Finish DLT plugin rewrite (#82)
  534. - Fix compile on systems without tcpdump installed
  535. 02/22/2007: Version 3.0.beta12
  536. - Fix compile under RH ES 3.x (gcc 3.2.2) (#79)
  537. - Fix compile on MIPS, ARM, HPPA, etc (#81, #88)
  538. - Rewrite L2/DLT code in tcpedit/tcprewrite to be plugin based (#82)
  539. - Create Ethernet Plugin (#99)
  540. - Create User Plugin (#100)
  541. - Create Cisco HDLC Plugin (#101)
  542. - Create DLT_LINUX_SLL Plugin (#102)
  543. - Create DLT_RAW Plugin (#104)
  544. - Create DLT_NULL Plugin (#105)
  545. - Create DLT_LOOP Plugin (#106)
  546. - Properly decode ethernet frames when they are VLAN tagged (#84)
  547. - Do not install man2html (#85)
  548. - Add configure --disable-libopts-install option (#86)
  549. - Enhance tcpreplay --oneatatime (#90)
  550. - libtcpedit can now return warnings & errors (#92)
  551. - Fix tcpprep --include/exclude (#96)
  552. - Upgrade AutoGen tearoff (libopts) to latest version (5.9.0) (#97)
  553. - Don't do L4 checksums for non-fragment offset == 0 (#107)
  554. 08/07/2006: Version 3.0.beta11
  555. - Fix distribution to ship missing src/tcpr.h (#73)
  556. - Add support to tcprewrite to alter output file DLT (#74)
  557. - Fix errors in 'make test' (little endian still broken) (#77)
  558. - Tweak Autogen .def files documentation (#78)
  559. 08/05/2006: Version 3.0.beta10
  560. - tcpprep & tcprewrite no longer require root access (#3)
  561. - Develop wrapper API for libnet, libpcap, BPF and PF_PACKET (#4, #24)
  562. - Enhance do_sleep() to support looping for better accuracy (#6)
  563. - Prefer inet_pton over older, deprecated routines (#26)
  564. - Remove libnet as a requirement (#29)
  565. - Optionally don't rewrite broadcast/multicast IP/MAC addresses (#38)
  566. - Remove libnids dependancy for flowreplay (#55)
  567. - Fix build issues when libpcapnav is installed (#56)
  568. - Fix truncate feature not putting correct packet length in IP header (#59)
  569. - Internal error reporting fixes in libtcpedit (#60)
  570. - Support --enable-debug when building under gcc 3.x (#62)
  571. - tcpedit_stub.h wasn't being generated automatically from SVN (#63)
  572. - Fix 'make doxygen' (#67)
  573. - Fix some Makefile issues (#68)
  574. - tcprewrite --endpoints should require a cache file (#70)
  575. - Improve IP randomizer code to be more random (#71)
  576. 07/17/2006: Version 3.0.beta9
  577. - Fix compile issue for users not having AutoOpts installed (#54)
  578. - Fix compile issue for users w/ AutoOpts 5.8.4 (upgrade to 5.8.4)
  579. 07/16/2006: Version 3.0.beta8
  580. - Fix -M running in MBps rather then Mbps
  581. - Fix tcpbridge segfault/bus error reported by Steven Z. (Gerry)
  582. - Improve tcpbridge man page
  583. - Massive tcprewrite fixes & cleanup (#50)
  584. - Much improved README document
  585. - Reorganize packet editing code into a standalone module (tcpedit)
  586. which has been librarized. (#5)
  587. - Strict code cleanup (#27)
  588. - Fix tcpprep from generating bad cache files (#48)
  589. - Add MAC split mode for tcpprep (#1)
  590. - Improve dbg() to list file/line (#32)
  591. - Add tcpprep statistical reports (#2)
  592. - Reorganize flowreplay code (#46)
  593. - Fix conflicting speed_t for Debian (#33)
  594. - Too many other things to document
  595. 08/07/2005: Version 3.0.beta7
  596. - New 'make doxygen' target builds pretty source code docs in
  597. docs/web/doxygen/html
  598. - Fix tcpprep auto/router mode which was sending all packets out the
  599. secondary interface
  600. - Fix endian issue on little-endian systems which made tcpprep think all
  601. packets were not IP
  602. - Improve debugability of tcpprep
  603. - Fix UDP header offset bug in flowreplay
  604. 06/28/2005: Version 3.0.beta6
  605. - Fix rpm .spec file which was still based on tcpreplay 2.x (untested)
  606. - Detect and manually include pcap-bpf.h which fixes compile problem
  607. - Fix tcprewrite -S crash with only one MAC
  608. - Fix tcpreplay using 2nd NIC split mode
  609. - Fix tcpreplay packet counter initialization
  610. - Fix tcpprep to properly handle missing -i and -c with -I and -P
  611. 06/14/2005: Version 3.0.beta5
  612. - Fix --decode flag
  613. - Fix compile under AMD64/RHEL4 where libraries are in /usr/lib64
  614. - tarball now ships with a full test subdir
  615. - Fix compile of src/common/get.c under strictly aligned architectures
  616. - Fix ./configure --enable-64bits flag
  617. - Fix bug on little endian systems which prevented tcprewrite from
  618. editing packets
  619. - Fix tcprewrite linktype checks
  620. - Add --pktlen for when the pcap snaplen lies to us
  621. - Add --enable-dynamic-link for those who want to dynamically link their
  622. libs
  623. 06/05/2005: Version 3.0.beta4
  624. - Really fix compile problems with dlt2desc with old versions of libpcap
  625. - All libraries are now statically linked and full-path #includes. This
  626. should fix problems with people who have different versions of
  627. libraries installed in different locations.
  628. - Fix problems compiling on systems with libpcapnav
  629. - Add support for libpcap 0.5 such as on OpenBSD
  630. - Fix tcpprep --verbose
  631. - Close STDIN prior to re-opening it for certain OS's
  632. 05/04/2005: Version 3.0.beta3
  633. - Fix autoconf problems with --with-libnet
  634. - Fix compile problems with dlt2desc with old versions of libpcap
  635. - Fix compile problem due to not shipping flowreplay_opts.h and
  636. tcpbridge_opts.h
  637. 04/19/2005: Version 3.0.beta2
  638. - Significant improvements to FAQ and manual
  639. - Use autoopts for flowreplay
  640. - Be more cautious about memcpy's
  641. - Fix numerous warnings during compile
  642. - Allow overriding L2 protocol field for DLT_RAW
  643. - tcpprep -I & -P now take the cache filename
  644. - Lots of cleanup
  645. - Added tcpbridge utility
  646. - Fix tcpreplay --mbps which was being interpreted as bps
  647. - Add --no-arg-comment feature for tcpprep
  648. - Improve auto-tests and fix old broken ones
  649. - Fix Makefile errors in the docs directory
  650. - Upgrade libopts tear off to v5.7pre12 which fixes problems with
  651. loading config files
  652. - Add support for forcing the use of the local libopts tearoff code
  653. 02/27/2005: Version 3.0.beta1
  654. - Major code cleanups and rewriting
  655. - Rip out all edit functions from tcpreplay and put into tcprewrite
  656. - Improve tcpreplay performance by about 5% for raw sending
  657. - Move around utility functions for greater code-reuse
  658. - Move MAC Address funcs into mac.c
  659. - Move global defines into defines.h
  660. - Standardize use of structs and typedefs
  661. - Start passing const's when we don't need to modify
  662. - Start using GNU AutoOpts for arg/config file processing
  663. - Start using automake and autoheader
  664. - Major rewrite of configure.in
  665. - Add support for printing which interface packets go out
  666. - 64bit counters are optional via --enable-64bits
  667. - Can now rewrite L2 data per outbound interface
  668. - Add support for additional DLT types
  669. - Non-Code changes
  670. - I now own the full copyright for tcpreplay
  671. - Removed the evil 4th clause from the BSD license
  672. - Start updating the FAQ and split some content to make a manual
  673. - Automatically generate man pages based via autogen
  674. - New Applications:
  675. - tcprewrite
  676. - Removed Applications: (Ethereal has better utilities)
  677. - capinfo
  678. - pcapmerge
  679. - Merge fixes from 2.x/stable branch:
  680. - portmap.c endian bugs
  681. - edit_packet.c handle corrupted pcap's where caplen < len
  682. - configure now properly uses --with-libnet and --with-libpcap
  683. *** Fork 3.x Branch from v2.3.1 ***