Skip to content

Commit

Permalink
Merge branch 'dev' into windows_doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
peace-maker authored Jan 15, 2025
2 parents cf4f7be + 241b139 commit 787ac54
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
23 changes: 12 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions pwnlib/asm.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,7 @@ def cpp(shellcode):
code = _include_header() + shellcode
cmd = [
cpp,
'-Wno-unused-command-line-argument',
'-C',
'-nostdinc',
'-undef',
Expand Down
2 changes: 1 addition & 1 deletion pwnlib/tubes/ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pwnlib/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.15.0dev'
__version__ = '5.0.0dev'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')),
],
Expand Down

0 comments on commit 787ac54

Please sign in to comment.