Skip to content

Commit

Permalink
Fix credential tracking missing Kerberos tickets
Browse files Browse the repository at this point in the history
  • Loading branch information
cobbr committed Nov 19, 2020
1 parent 5eadefe commit c531556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix Download Task adding extra byte to files
- Fix Download task exception on unexpected output
- Fix credential tracking missing some credentials
- Fix credential tracking missing Kerberos tickets

## [v0.6] - 2020-08-04
### Added
Expand Down
2 changes: 1 addition & 1 deletion Covenant/Models/Covenant/CapturedCredential.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public static List<CapturedCredential> ParseCredentials(string input)
domain = string.Join(":", line.Split(":").Skip(1)).Trim();
}
}
MatchCollection ticket_matches = Regex.Matches(match.Groups[0].Value, "(?s)ServiceName :.*?((?=ServiceName :)|$)");
MatchCollection ticket_matches = Regex.Matches(match.Groups[0].Value, "(?s)ServiceName :.*?((?=ServiceName :)|$)");
foreach (Match ticket_match in ticket_matches)
{

Expand Down

0 comments on commit c531556

Please sign in to comment.