mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
Bump version, update CHANGELOG
This commit is contained in:
parent
3f50930dc0
commit
27d90a3594
29
CHANGELOG
29
CHANGELOG
@ -1,3 +1,32 @@
|
|||||||
|
31 October 2012: pathod 0.3:
|
||||||
|
|
||||||
|
A release focusing on shoring up our fuzzing capabilities, especially with
|
||||||
|
pathoc.
|
||||||
|
|
||||||
|
* pathoc -q and -r options, output full request and response text.
|
||||||
|
|
||||||
|
* pathod -q and -r options, add full request and response text to pathod's
|
||||||
|
log buffer.
|
||||||
|
|
||||||
|
* pathoc and pathod -x option, makes -q and -r options log in hex dump
|
||||||
|
format.
|
||||||
|
|
||||||
|
* pathoc -C option, specify response codes to ignore.
|
||||||
|
|
||||||
|
* pathoc -T option, instructs pathoc to ignore timeouts.
|
||||||
|
|
||||||
|
* pathoc -o option, a one-shot mode that exits after the first non-ignored
|
||||||
|
response.
|
||||||
|
|
||||||
|
* pathoc and pathod -e option, which explains the resulting message by
|
||||||
|
expanding random and generated portions, and logging a reproducible
|
||||||
|
specification.
|
||||||
|
|
||||||
|
* Major internal refactoring and cleanup.
|
||||||
|
|
||||||
|
* Many bugfixes.
|
||||||
|
|
||||||
|
|
||||||
22 August 2012: pathod 0.2:
|
22 August 2012: pathod 0.2:
|
||||||
|
|
||||||
* Add pathoc, a pathological HTTP client.
|
* Add pathoc, a pathological HTTP client.
|
||||||
|
@ -216,7 +216,7 @@ class _Token(object):
|
|||||||
"""
|
"""
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def resolve(self, msg, settings): # pragma: no cover
|
def resolve(self, msg, settings):
|
||||||
"""
|
"""
|
||||||
Resolves this token to ready it for transmission. This means that
|
Resolves this token to ready it for transmission. This means that
|
||||||
the calculated offsets of actions are fixed.
|
the calculated offsets of actions are fixed.
|
||||||
|
@ -250,7 +250,7 @@ class Pathod(tcp.TCPServer):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
except tcp.NetLibTimeout: # pragma: no cover
|
except tcp.NetLibTimeout:
|
||||||
h.info("Timeout")
|
h.info("Timeout")
|
||||||
self.add_log(
|
self.add_log(
|
||||||
dict(
|
dict(
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
IVERSION = (0, 2, 1)
|
IVERSION = (0, 3, 0)
|
||||||
VERSION = ".".join(str(i) for i in IVERSION)
|
VERSION = ".".join(str(i) for i in IVERSION)
|
||||||
NAME = "pathod"
|
NAME = "pathod"
|
||||||
NAMEVERSION = NAME + " " + VERSION
|
NAMEVERSION = NAME + " " + VERSION
|
||||||
|
Loading…
Reference in New Issue
Block a user