From a5a2231ec3ed375a876800ff08e6427e70eaacf8 Mon Sep 17 00:00:00 2001 From: Peyton Duncan Date: Sat, 19 Jul 2025 13:56:10 -0700 Subject: [PATCH 1/4] typo fix --- README.md | 2 +- Responder.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f09820f..b437d72 100755 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ Options: poisoner in tits Answer section. By default, the answer's canonical name is the same as the query. Changing this value is mainly useful when attempting - to perform Kebreros relaying over HTTP. + to perform Kerberos relaying over HTTP. -E, --ErrorCode Changes the error code returned by the SMB server to STATUS_LOGON_FAILURE. By default, the status is STATUS_ACCESS_DENIED. Changing this value permits to diff --git a/Responder.py b/Responder.py index 952b086..65409c6 100755 --- a/Responder.py +++ b/Responder.py @@ -47,7 +47,7 @@ parser.add_option('--lm', action="store_true", help="Force LM h parser.add_option('--disable-ess', action="store_true", help="Force ESS downgrade. Default: False", dest="NOESS_On_Off", default=False) parser.add_option('-v','--verbose', action="store_true", help="Increase verbosity.", dest="Verbose") parser.add_option('-t','--ttl', action="store", help="Change the default Windows TTL for poisoned answers. Value in hex (30 seconds = 1e). use '-t random' for random TTL", dest="TTL", metavar="1e", default=None) -parser.add_option('-N', '--AnswerName', action="store", help="Specifies the canonical name returned by the LLMNR poisoner in tits Answer section. By default, the answer's canonical name is the same as the query. Changing this value is mainly useful when attempting to perform Kebreros relaying over HTTP.", dest="AnswerName", default=None) +parser.add_option('-N', '--AnswerName', action="store", help="Specifies the canonical name returned by the LLMNR poisoner in tits Answer section. By default, the answer's canonical name is the same as the query. Changing this value is mainly useful when attempting to perform Keberos relaying over HTTP.", dest="AnswerName", default=None) parser.add_option('-E', '--ErrorCode', action="store_true", help="Changes the error code returned by the SMB server to STATUS_LOGON_FAILURE. By default, the status is STATUS_ACCESS_DENIED. Changing this value permits to obtain WebDAV authentications from the poisoned machines where the WebClient service is running.", dest="ErrorCode", default=False) options, args = parser.parse_args() From f1d8d1a6c4b976db1a2f9513dcf6cb47b6800c02 Mon Sep 17 00:00:00 2001 From: Peyton Duncan Date: Sat, 19 Jul 2025 13:58:14 -0700 Subject: [PATCH 2/4] typo had a typo --- Responder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Responder.py b/Responder.py index 65409c6..c9e217f 100755 --- a/Responder.py +++ b/Responder.py @@ -47,7 +47,7 @@ parser.add_option('--lm', action="store_true", help="Force LM h parser.add_option('--disable-ess', action="store_true", help="Force ESS downgrade. Default: False", dest="NOESS_On_Off", default=False) parser.add_option('-v','--verbose', action="store_true", help="Increase verbosity.", dest="Verbose") parser.add_option('-t','--ttl', action="store", help="Change the default Windows TTL for poisoned answers. Value in hex (30 seconds = 1e). use '-t random' for random TTL", dest="TTL", metavar="1e", default=None) -parser.add_option('-N', '--AnswerName', action="store", help="Specifies the canonical name returned by the LLMNR poisoner in tits Answer section. By default, the answer's canonical name is the same as the query. Changing this value is mainly useful when attempting to perform Keberos relaying over HTTP.", dest="AnswerName", default=None) +parser.add_option('-N', '--AnswerName', action="store", help="Specifies the canonical name returned by the LLMNR poisoner in tits Answer section. By default, the answer's canonical name is the same as the query. Changing this value is mainly useful when attempting to perform Kerberos relaying over HTTP.", dest="AnswerName", default=None) parser.add_option('-E', '--ErrorCode', action="store_true", help="Changes the error code returned by the SMB server to STATUS_LOGON_FAILURE. By default, the status is STATUS_ACCESS_DENIED. Changing this value permits to obtain WebDAV authentications from the poisoned machines where the WebClient service is running.", dest="ErrorCode", default=False) options, args = parser.parse_args() From eeceecae8f5f833c22a1f832fd2d822b21976e6e Mon Sep 17 00:00:00 2001 From: HD Moore Date: Mon, 28 Jul 2025 22:01:58 -0500 Subject: [PATCH 3/4] fix minor typo --- Responder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Responder.py b/Responder.py index 952b086..ff6e75e 100755 --- a/Responder.py +++ b/Responder.py @@ -47,7 +47,7 @@ parser.add_option('--lm', action="store_true", help="Force LM h parser.add_option('--disable-ess', action="store_true", help="Force ESS downgrade. Default: False", dest="NOESS_On_Off", default=False) parser.add_option('-v','--verbose', action="store_true", help="Increase verbosity.", dest="Verbose") parser.add_option('-t','--ttl', action="store", help="Change the default Windows TTL for poisoned answers. Value in hex (30 seconds = 1e). use '-t random' for random TTL", dest="TTL", metavar="1e", default=None) -parser.add_option('-N', '--AnswerName', action="store", help="Specifies the canonical name returned by the LLMNR poisoner in tits Answer section. By default, the answer's canonical name is the same as the query. Changing this value is mainly useful when attempting to perform Kebreros relaying over HTTP.", dest="AnswerName", default=None) +parser.add_option('-N', '--AnswerName', action="store", help="Specifies the canonical name returned by the LLMNR poisoner in its Answer section. By default, the answer's canonical name is the same as the query. Changing this value is mainly useful when attempting to perform Kebreros relaying over HTTP.", dest="AnswerName", default=None) parser.add_option('-E', '--ErrorCode', action="store_true", help="Changes the error code returned by the SMB server to STATUS_LOGON_FAILURE. By default, the status is STATUS_ACCESS_DENIED. Changing this value permits to obtain WebDAV authentications from the poisoned machines where the WebClient service is running.", dest="ErrorCode", default=False) options, args = parser.parse_args() From a9c41c97fc9224a0b559e4f312e0a84d908bfc22 Mon Sep 17 00:00:00 2001 From: HD Moore Date: Mon, 28 Jul 2025 22:02:19 -0500 Subject: [PATCH 4/4] fix minor typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f09820f..4a15d32 100755 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ Options: random TTL -N ANSWERNAME, --AnswerName=ANSWERNAME Specifies the canonical name returned by the LLMNR - poisoner in tits Answer section. By default, the + poisoner in its Answer section. By default, the answer's canonical name is the same as the query. Changing this value is mainly useful when attempting to perform Kebreros relaying over HTTP.