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.
2021-11-28 22:47:32 +00:00
## [Unreleased]
2021-12-07 15:48:14 +00:00
Minor bug fixes. Mainly typos from changing the package name.
### Changed
- Fixed `--version` switch.
- Fixed readme typos.
### Added
- Read the Docs Configuration File
2021-11-28 22:47:32 +00:00
2021-11-28 22:35:14 +00:00
## [v0.5.0] - 2021-11-28
This is a major release mainly due to the name change, and PyPI package addition.
The package has been renamed to `pwncat-cs` and the default entrypoint has also
been renamed to `pwncat-cs` . These changes were made in an effort to deconflict
with [Cytopia pwncat ](https://pwncat.org/ ). Beyond that, some new features were
added as seen in the release notes below.
I've tried to update all references to the old `pwncat` entrypoint, but may have
missed some throughout the documentation or code. Please open an issue if you
notice any old references to the previous name.
It's worth noting that the internal module name is still `pwncat` , as Cytopia
does not implement an importable package (only a command line entrypoint). I may
change this name in the future, but for now it doesn't cause any issues and would
require a major refactor so I'm going to leave it.
2021-06-20 05:00:23 +00:00
### Changed
- Moved dependency management and building to [Poetry ](https://python-poetry.org ).
- Changed package name to `pwncat-cs` in order to not conflict w/ cytopia/pwncat.
2021-06-19 00:28:57 +00:00
### Added
- Added `ssl-bind` and `ssl-connect` channel protocols for encrypted shells
- Added `ncat` -style ssl arguments to entrypoint and `connect` command
- Added query-string arguments to connection strings for both the entrypoint
and the `connect` command.
2021-06-19 02:04:12 +00:00
- Added Enumeration States to allow session-bound enumerations
2021-06-20 05:00:23 +00:00
- Added PyPi publishing to GitHub `publish` workflow.
2021-06-22 03:17:58 +00:00
- Added licensing for pwncat (MIT)
2021-06-19 23:58:44 +00:00
- Added background listener API and commands ([#43](https://github.com/calebstewart/pwncat/issues/43))
2021-06-19 04:50:31 +00:00
- Added Windows privilege escalation via BadPotato plugin ([#106](https://github.com/calebstewart/pwncat/issues/106))
2021-06-22 03:17:58 +00:00
### Removed
- Removed `setup.py` and `requirements.txt`
2021-06-19 00:21:25 +00:00
2021-11-28 21:33:34 +00:00
## [0.4.4] - 2021-11-28
2021-07-17 21:07:49 +00:00
### Fixed
- Possible exception due to _pre-registering_ of `session` with `manager`
2021-08-10 22:30:11 +00:00
- Covered edge case in sudo rule parsing for wildcards ([#183](https://github.com/calebstewart/pwncat/issue/183))
- Added fallthrough cases for PTY methods in case of misbehaving binaries (looking at you: `screen` )
2021-07-18 17:54:09 +00:00
- Fixed handling of `socket.getpeername` when `Socket` channel uses IPv6 ([#159](https://github.com/calebstewart/pwncat/issues/159)).
2021-08-12 05:41:46 +00:00
- Fixed verbose logging handler to be __unique__ for every `channel`
- Fixed docstrings in `Command` modules
2021-08-31 21:35:26 +00:00
- Changed docker base image to `python3.9-alpine` to fix python version issues.
2021-09-19 06:50:19 +00:00
- Added logic for calling correct paramiko method when reloading an encrypted SSH privat ekey ([#185](https://github.com/calebstewart/pwncat/issues/185)).
- Forced `Stream.RAW` for all GTFOBins interaction ([#195](https://github.com/calebstewart/pwncat/issues/195)).
- Added custom `which` implementation for linux when `which` is not available ([#193](https://github.com/calebstewart/pwncat/issues/193)).
2021-09-21 05:51:58 +00:00
- Correctly handle `--listen` argument ([#201](https://github.com/calebstewart/pwncat/issues/201))
2021-09-21 06:33:33 +00:00
- Added handler for `OSError` when attempting to detect the running shell ([#179](https://github.com/calebstewart/pwncat/issues/179))
2021-11-28 20:06:11 +00:00
- Added additional check for stat time of file birth field (#208)
- Removed shell compare with ["nologin", "false", "sync", "git-shell"] (#210)
- Added shell compare with not in ["bash", "zsh", "ksh", "fish"] (#210)
2021-07-17 21:07:49 +00:00
### Added
- Added alternatives to `bash` to be used during _shell upgrade_ for a _better shell_
- Added a warning message when a `KeyboardInterrupt` is caught
2021-08-12 05:41:46 +00:00
- Added `--verbose/-V` for argument parser
- Added `OSError` for `bind` protocol to show appropriate error messages
2021-09-22 22:48:26 +00:00
- Contributing guidelines for GitHub maintainers
2021-09-22 23:02:46 +00:00
- Installation instructions for BlackArch
2021-11-28 20:52:07 +00:00
- Added `lpwd` and `lcd` commands to interact with the local working directory ([#218](https://github.com/calebstewart/pwncat/issues/218))
2021-07-17 21:07:49 +00:00
### Changed
2021-09-21 06:33:33 +00:00
- Removed handling of `shell` argument to `Popen` to prevent `euid` problems ([#179](https://github.com/calebstewart/pwncat/issues/179))
2021-07-17 21:07:49 +00:00
- Changed some 'red' warning message color to 'yellow'
2021-08-10 21:09:11 +00:00
- Leak private keys for all users w/ file-read ability as UID=0 ([#181](https://github.com/calebstewart/pwncat/issues/181))
- Raise `PermissionError` when underlying processes terminate unsuccessfully for `LinuxReader` and `LinuxWriter`
2021-11-28 20:59:46 +00:00
- Removed `busybox` and `bruteforce` commands from documentation.
2021-07-17 21:07:49 +00:00
2021-06-19 00:21:25 +00:00
## [0.4.3] - 2021-06-18
Patch fix release. Major fixes are the correction of file IO for LinuxWriters and
improved stability with better exception handling.
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-07-20 20:30:00 +00:00
- Corrected processing of password in connection string
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))
2021-06-19 00:28:57 +00:00
### Added
2021-06-18 18:12:47 +00:00
- Added better file io test cases
2021-06-17 02:44:29 +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))