Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hack3ric committed Nov 2, 2024
1 parent 4e8effb commit 20a7567
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog for Mimic

## 0.6.0 (2024-11-02)

- Do not depend on bpf_xdp_get_buff_len for payload length; this could be larger than the actual packet length, and the real length should be retrieved from packet headers
- Add kprobe checksum hacks, along with previous kfunc implementation
- Enable XDP fragments support
- RST is now sent to peers when Mimic is shutting down
- Allow domain names in filters; they are only resolved when Mimic starts, and only resolved IPs are stored
- Allow fixed or pseudo-random padding in packets

## 0.5.0 (2024-08-05)

- Track TCP window size and send window change packets to prevent conntrack failure
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
mimic (0.6.0-1) unstable; urgency=medium

* New upstream release.

-- Eric Long <[email protected]> Sat, 02 Nov 2024 21:40:55 +0800

mimic (0.5.0-1) unstable; urgency=medium

* New upstream release.
Expand Down
2 changes: 1 addition & 1 deletion kmod/AKMBUILD.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
modname=mimic
modver=0.5.0
modver=0.6.0
built_modules="$modname.ko"

build() {
Expand Down
2 changes: 1 addition & 1 deletion kmod/dkms.conf.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME="mimic"
PACKAGE_VERSION="0.5.0"
PACKAGE_VERSION="0.6.0"
MAKE[0]="make KERNEL_UNAME=$kernelver @@EXTRA_OPTS@@"
CLEAN="make clean"
BUILT_MODULE_NAME[0]="mimic"
Expand Down
2 changes: 1 addition & 1 deletion kmod/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "csum-hack.h"

MODULE_VERSION("0.5.0");
MODULE_VERSION("0.6.0");
MODULE_DESCRIPTION("eBPF TCP -> UDP obfuscator - kernel module extension");
MODULE_LICENSE("GPL");

Expand Down
2 changes: 1 addition & 1 deletion src/args.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "log.h"
#include "main.h"

const char* argp_program_version = "0.5.0";
const char* argp_program_version = "0.6.0";
const char* argp_program_bug_address = "https://github.com/hack3ric/mimic/issues";

/* mimic (global options) */
Expand Down

0 comments on commit 20a7567

Please sign in to comment.