Skip to content

Commit

Permalink
feat: ensure ADCSECS6b edges are available for pathfinding queries an…
Browse files Browse the repository at this point in the history
…d that ADCSESC6b edges are considered post-processed edges (#385)
  • Loading branch information
elikmiller authored Feb 5, 2024
1 parent 90c0822 commit cf13087
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/go/analysis/ad/post.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ func PostProcessedRelationships() []graph.Kind {
ad.ADCSESC4,
ad.ADCSESC5,
ad.ADCSESC6a,
ad.ADCSESC6b,
ad.ADCSESC7,
ad.ADCSESC10a,
ad.ADCSESC10b,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ import WindowsAbuse from './WindowsAbuse';
import LinuxAbuse from './LinuxAbuse';
import Opsec from './Opsec';
import References from './References';
import Composition from "./Composition";
import Composition from './Composition';

const ADCSESC10a = {
general: General,
windowsAbuse: WindowsAbuse,
linuxAbuse: LinuxAbuse,
opsec: Opsec,
references: References,
composition: Composition
composition: Composition,
};

export default ADCSESC10a;
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export const AllEdgeTypes: Category[] = [
ActiveDirectoryRelationshipKind.ADCSESC1,
ActiveDirectoryRelationshipKind.ADCSESC3,
ActiveDirectoryRelationshipKind.ADCSESC6a,
ActiveDirectoryRelationshipKind.ADCSESC6b,
ActiveDirectoryRelationshipKind.ADCSESC9a,
ActiveDirectoryRelationshipKind.ADCSESC9b,
ActiveDirectoryRelationshipKind.ADCSESC10a,
Expand Down

0 comments on commit cf13087

Please sign in to comment.