Skip to content

Commit

Permalink
2.7.1.0: update the TGT delegation algorithm after the July update (n…
Browse files Browse the repository at this point in the history
…ew flag CROSS_ORGANIZATION_ENABLE_TGT_DELEGATION)
  • Loading branch information
vletoux committed Sep 12, 2019
1 parent dac8095 commit d53e97d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Healthcheck/TrustAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ static public string GetTGTDelegation(int TrustDirection, int TrustAttributes)
{
// quarantined ?
if (!IsFlagSet(TrustAttributes, 0x200))
return "Yes";
{
if (IsFlagSet(TrustAttributes, 0x800))
return "Yes";
}
return "No";
}
return "Not applicable";
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// Numéro de build
// Révision
//
[assembly: AssemblyVersion("2.7.0.0")]
[assembly: AssemblyFileVersion("2.7.0.0")]
[assembly: AssemblyVersion("2.7.1.0")]
[assembly: AssemblyFileVersion("2.7.1.0")]
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.7.1.0
* update the TGT delegation algorithm after the July update (new flag CROSS_ORGANIZATION_ENABLE_TGT_DELEGATION)

2.7.0.0
* added a network map inspired from hilbert curves
* fix a bug when doing a map with very complicated data
Expand Down

0 comments on commit d53e97d

Please sign in to comment.