Skip to content

Commit 6aaaf84

Browse files
committed
Release 4.11.0
1 parent 2d998a4 commit 6aaaf84

File tree

3 files changed

+28
-14
lines changed

3 files changed

+28
-14
lines changed

CHANGELOG.md

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ The table below shows which release corresponds to each branch, and what date th
99

1010
| Version | Branch | Release Date |
1111
| ---------------- | -------- | ---------------------- |
12-
| [4.12.0](#4120) | `dev` |
13-
| [4.11.0](#4110) | `beta` |
14-
| [4.10.0](#4100) | `stable` | May 21, 2023
12+
| [4.13.0](#4130-dev) | `dev` |
13+
| [4.12.0](#4120-beta) | `beta` |
14+
| [4.11.0](#4110-stable) | `stable` | Sep 15, 2023
15+
| [4.10.0](#4100) | | May 21, 2023
1516
| [4.9.0](#490) | | Dec 29, 2022
1617
| [4.8.0](#480) | | Apr 21, 2022
1718
| [4.7.1](#471) | | Apr 20, 2022
@@ -66,30 +67,43 @@ The table below shows which release corresponds to each branch, and what date th
6667
| [3.0.0](#300) | | Aug 20, 2016
6768
| [2.2.0](#220) | | Jan 5, 2015
6869

69-
## 4.12.0 (`dev`)
70+
## 4.13.0 (`dev`)
7071

7172

7273

73-
## 4.11.0 (`beta`)
74+
## 4.12.0 (`beta`)
75+
- [#2202][2202] Fix `remote` and `listen` in sagemath
76+
- [#2117][2117] Add -p (--prefix) and -s (--separator) arguments to `hex` command
77+
- [#2221][2221] Add shellcraft.sleep template wrapping SYS_nanosleep
78+
- [#2219][2219] Fix passing arguments on the stack in shellcraft syscall template
79+
- [#2212][2212] Add `--libc libc.so` argument to `pwn template` command
80+
- [#2257][2257] Allow creation of custom templates for `pwn template` command
81+
- [#2225][2225] Allow empty argv in ssh.process()
82+
83+
[2202]: https://github.com/Gallopsled/pwntools/pull/2202
84+
[2117]: https://github.com/Gallopsled/pwntools/pull/2117
85+
[2221]: https://github.com/Gallopsled/pwntools/pull/2221
86+
[2219]: https://github.com/Gallopsled/pwntools/pull/2219
87+
[2212]: https://github.com/Gallopsled/pwntools/pull/2212
88+
[2257]: https://github.com/Gallopsled/pwntools/pull/2257
89+
[2225]: https://github.com/Gallopsled/pwntools/pull/2225
90+
91+
## 4.11.0 (`stable`)
7492

7593
- [#2185][2185] make fmtstr module able to create payload without $ notation
7694
- [#2103][2103] Add search for libc binary by leaked function addresses `libcdb.search_by_symbol_offsets()`
7795
- [#2177][2177] Support for RISC-V 64-bit architecture
7896
- [#2186][2186] Enhance `ELF.nx` and `ELF.execstack`
7997
- [#2129][2129] Handle `context.newline` correctly when typing in `tube.interactive()`
98+
- [#2214][2214] Fix bug at ssh.py:`download` and `download_file` with relative paths
99+
- [#2241][2241] Fix ssh.process not setting ssh_process.cwd attribute
100+
- [#2261][2261] Fix corefile module after pyelftools update
80101

81102
[2185]: https://github.com/Gallopsled/pwntools/pull/2185
82103
[2103]: https://github.com/Gallopsled/pwntools/pull/2103
83104
[2177]: https://github.com/Gallopsled/pwntools/pull/2177
84105
[2186]: https://github.com/Gallopsled/pwntools/pull/2186
85106
[2129]: https://github.com/Gallopsled/pwntools/pull/2129
86-
87-
## 4.10.1 (`stable`)
88-
89-
- [#2214][2214] Fix bug at ssh.py:`download` and `download_file` with relative paths
90-
- [#2241][2241] Fix ssh.process not setting ssh_process.cwd attribute
91-
- [#2261][2261] Fix corefile module after pyelftools update
92-
93107
[2214]: https://github.com/Gallopsled/pwntools/pull/2214
94108
[2241]: https://github.com/Gallopsled/pwntools/pull/2241
95109
[2261]: https://github.com/Gallopsled/pwntools/pull/2261

pwnlib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.11.0beta0'
1+
__version__ = '4.11.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
sys.exit(-1)
6363

6464
setup(
65-
version = '4.11.0beta0',
65+
version = '4.11.0',
6666
data_files = [('pwntools-doc',
6767
glob.glob('*.md') + glob.glob('*.txt')),
6868
],

0 commit comments

Comments
 (0)