diff --git a/CHANGELOG.md b/CHANGELOG.md index ecaac64d0..f809a8d24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,10 @@ The table below shows which release corresponds to each branch, and what date th | Version | Branch | Release Date | | ---------------- | -------- | ---------------------- | -| [4.15.0](#4150-dev) | `dev` | -| [4.14.0](#4140-beta) | `beta` | -| [4.13.1](#4131-stable) | `stable` | Sep 29, 2024 +| [5.0.0](#500-dev) | `dev` | +| [4.15.0](#4150-beta) | `beta` | +| [4.14.0](#4140-stable) | `stable` | Jan 15, 2025 +| [4.13.1](#4131) | | Sep 29, 2024 | [4.13.0](#4130) | | Aug 12, 2024 | [4.12.0](#4120) | | Feb 22, 2024 | [4.11.1](#4111) | | Nov 14, 2023 @@ -71,8 +72,11 @@ The table below shows which release corresponds to each branch, and what date th | [3.0.0](#300) | | Aug 20, 2016 | [2.2.0](#220) | | Jan 5, 2015 -## 4.15.0 (`dev`) +## 5.0.0 (`dev`) + +## 4.15.0 (`beta`) +- [#2508][2508] Ignore a warning when compiling with asm on nix - [#2471][2471] Properly close spawned kitty window - [#2358][2358] Cache output of `asm()` - [#2457][2457] Catch exception of non-ELF files in checksec. @@ -90,6 +94,7 @@ The table below shows which release corresponds to each branch, and what date th - [#2476][2476] Deprecate 'keepends' argument in favor of 'drop' in `tube.recvline*` - [#2364][2364] Deprecate direct commandline scripts invocation and exclude nonsense ones +[2508]: https://github.com/Gallopsled/pwntools/pull/2508 [2471]: https://github.com/Gallopsled/pwntools/pull/2471 [2358]: https://github.com/Gallopsled/pwntools/pull/2358 [2457]: https://github.com/Gallopsled/pwntools/pull/2457 @@ -107,7 +112,7 @@ The table below shows which release corresponds to each branch, and what date th [2476]: https://github.com/Gallopsled/pwntools/pull/2476 [2364]: https://github.com/Gallopsled/pwntools/pull/2364 -## 4.14.0 (`beta`) +## 4.14.0 (`stable`) - [#2356][2356] Add local libc database provider for libcdb - [#2360][2360] Add offline parameter for `search_by_hash` series function @@ -129,6 +134,7 @@ The table below shows which release corresponds to each branch, and what date th - [#2382][2382] added optional port, gdb_args and gdbserver_args parameters to gdb.debug() - [#2435][2435] Speed up gdbserver handshake in gdb.debug() - [#2436][2436] Add resolution_addr parameter to Ret2dlresolvePayload +- [#2497][2497] Fix remote.fromsocket() to handle AF_INET6 socket [2436]: https://github.com/Gallopsled/pwntools/pull/2436 [2371]: https://github.com/Gallopsled/pwntools/pull/2371 @@ -150,14 +156,9 @@ The table below shows which release corresponds to each branch, and what date th [2382]: https://github.com/Gallopsled/pwntools/pull/2382 [2435]: https://github.com/Gallopsled/pwntools/pull/2435 [2437]: https://github.com/Gallopsled/pwntools/pull/2437 - -## 4.13.2 - -- [#2497][2497] Fix remote.fromsocket() to handle AF_INET6 socket - [2497]: https://github.com/Gallopsled/pwntools/pull/2497 -## 4.13.1 (`stable`) +## 4.13.1 - [#2445][2445] Fix parsing the PLT on Windows - [#2466][2466] Fix PLT emulation with Unicorn 2.1.0 diff --git a/pwnlib/asm.py b/pwnlib/asm.py index 139ab6726..ee73079a4 100644 --- a/pwnlib/asm.py +++ b/pwnlib/asm.py @@ -471,6 +471,7 @@ def cpp(shellcode): code = _include_header() + shellcode cmd = [ cpp, + '-Wno-unused-command-line-argument', '-C', '-nostdinc', '-undef', diff --git a/pwnlib/tubes/ssh.py b/pwnlib/tubes/ssh.py index 8f19b57a2..b714a5660 100644 --- a/pwnlib/tubes/ssh.py +++ b/pwnlib/tubes/ssh.py @@ -450,7 +450,7 @@ def __init__(self, parent, host, port, *a, **kw): try: self.sock = parent.transport.open_channel('direct-tcpip', (host, port), ('127.0.0.1', 0)) except Exception as e: - self.exception(e.message) + self.exception(str(e)) raise try: diff --git a/pwnlib/version.py b/pwnlib/version.py index f7dfb7bdc..c48ee63da 100644 --- a/pwnlib/version.py +++ b/pwnlib/version.py @@ -1 +1 @@ -__version__ = '4.15.0dev' +__version__ = '5.0.0dev' diff --git a/setup.py b/setup.py index df97d887b..6f6cdd10d 100755 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ sys.exit(-1) setup( - version = '4.15.0dev', + version = '5.0.0dev', data_files = [('pwntools-doc', glob.glob('*.md') + glob.glob('*.txt')), ],