2021-06-15 19:59:33 +00:00
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog ](https://keepachangelog.com/en/1.0.0/ ),
and this project adheres to [Semantic Versioning ](https://semver.org/spec/v2.0.0.html ).
The Changelog starts with v0.4.1, because we did not keep one before that,
and simply didn't have the time to go back and retroactively create one.
## [Unreleased]
2021-06-16 21:24:40 +00:00
### Fixed
- Pinned container base image to alpine 3.13.5 and installed to virtualenv ([#134](https://github.com/calebstewart/pwncat/issues/134))
2021-06-16 21:31:54 +00:00
- Fixed syntax for f-strings in escalation command
2021-06-18 22:33:21 +00:00
- Re-added `readline` import for windows platform after being accidentally removed
2021-06-16 19:57:47 +00:00
### Changed
- Changed session tracking so session IDs aren't reused
- Changed zsh prompt to match CWD of other shell prompts
2021-06-18 22:44:23 +00:00
- Improved exception handling throughout framework ([#133](https://github.com/calebstewart/pwncat/issues/133))
2021-06-17 21:47:07 +00:00
- Added explicit permission checks when opening files
2021-06-18 18:12:47 +00:00
- Changed LinuxWriter close routine again to account for needed EOF signals ([#140](https://github.com/calebstewart/pwncat/issues/140))
### Added
- Added better file io test cases
2021-06-15 19:59:33 +00:00
2021-06-16 01:24:13 +00:00
## [0.4.2] - 2021-06-15
Quick patch release due to corrected bug in `ChannelFile` which caused command
output to be empty in some situations.
### Fixed
2021-06-15 19:59:33 +00:00
- Fixed `linux.enumerate.system.network` to work with old and new style `ip` .
2021-06-16 01:17:08 +00:00
- Fixed `ChannelFile.recvinto` which will no longer raise `BlockingIOError` ([#126](https://github.com/calebstewart/pwncat/issues/126), [#131 ](https://github.com/calebstewart/pwncat/issues/131 ))
- Fixed sessions command with invalid session ID ([#130](https://github.com/calebstewart/pwncat/issues/130))
- Fixed zsh shell prompt color syntax ([#130](https://github.com/calebstewart/pwncat/issues/130))
2021-06-16 01:24:13 +00:00
### Added
2021-06-15 20:37:44 +00:00
- Added Pull Request template
- Added CONTRIBUTING.md
2021-06-16 01:17:08 +00:00
- Added `--version` option to entrypoint to retrieve pwncat version
- Added `latest` tag to documented install command to prevent dev installs
2021-06-15 19:59:33 +00:00
## [0.4.1] - 2021-06-14
### Added
2021-06-16 01:17:08 +00:00
- Differentiate prompt syntax for standard bash, zsh and sh ([#126](https://github.com/calebstewart/pwncat/issues/126))
2021-06-15 19:59:33 +00:00
- Added `-c=never` to `ip` command in `linux.enumerate.system.network`
2021-06-16 01:17:08 +00:00
([#126](https://github.com/calebstewart/pwncat/issues/126))
- Updated Dockerfile to properly build post-v0.4.0 releases ([#125](https://github.com/calebstewart/pwncat/issues/125))
2021-06-15 19:59:33 +00:00
- Added check for `nologin` shell to stop pwncat from accidentally
2021-06-16 01:17:08 +00:00
closing the session ([#116](https://github.com/calebstewart/pwncat/issues/116))
- Resolved all flake8 errors ([#123](https://github.com/calebstewart/pwncat/issues/123))
- Improved EOF handling for Linux file-writes ([#117](https://github.com/calebstewart/pwncat/issues/117))