├── .gitignore ├── .gitmodules ├── BUILDING.md ├── CHANGELOG.md ├── Dump ├── ADCP │ ├── ADCP.psd1 │ ├── ADCP.psm1 │ ├── ADCPInstances.ps1 │ ├── Get-ADCPDump.ps1 │ ├── Import-ADCPDump.ps1 │ ├── Prepare-ADCPDump.ps1 │ ├── Utils.ps1 │ └── neo4j.conf ├── Bin │ ├── Plugins │ │ ├── Filters │ │ │ └── placeholder │ │ ├── Importers │ │ │ └── placeholder │ │ └── Writers │ │ │ └── placeholder │ └── placeholder ├── Dump.ps1 ├── Src │ ├── AceFilter │ │ ├── AceFilter.sln │ │ ├── AceFilterCore │ │ │ ├── AceConstants.c │ │ │ ├── AceConstants.h │ │ │ ├── AceFilter.c │ │ │ ├── AceFilter.h │ │ │ ├── AceFilter.vcxproj │ │ │ ├── AceFilter.vcxproj.filters │ │ │ ├── AceFilter.vcxproj.user │ │ │ ├── Cache.c │ │ │ ├── Cache.h │ │ │ ├── Common.h │ │ │ ├── ImportedObjects.c │ │ │ ├── ImportedObjects.h │ │ │ ├── Plugin.c │ │ │ ├── Plugin.h │ │ │ ├── PluginApi.c │ │ │ ├── PluginApi.h │ │ │ └── PluginCommon.h │ │ ├── AceFilterPlugins │ │ │ ├── Filters │ │ │ │ ├── AceMask │ │ │ │ │ ├── AceMask.c │ │ │ │ │ ├── AceMask.vcxproj │ │ │ │ │ ├── AceMask.vcxproj.filters │ │ │ │ │ └── AceMask.vcxproj.user │ │ │ │ ├── AceType │ │ │ │ │ ├── AceType.c │ │ │ │ │ ├── AceType.vcxproj │ │ │ │ │ ├── AceType.vcxproj.filters │ │ │ │ │ └── AceType.vcxproj.user │ │ │ │ ├── AdmSdHolder │ │ │ │ │ ├── AdmSdHolder.c │ │ │ │ │ ├── AdmSdHolder.vcxproj │ │ │ │ │ ├── AdmSdHolder.vcxproj.filters │ │ │ │ │ ├── AdmSdHolder.vcxproj.user │ │ │ │ │ └── fufu │ │ │ │ ├── ControlAd │ │ │ │ │ ├── ControlAd.c │ │ │ │ │ ├── ControlAd.vcxproj │ │ │ │ │ ├── ControlAd.vcxproj.filters │ │ │ │ │ └── ControlAd.vcxproj.user │ │ │ │ ├── ControlFs │ │ │ │ │ ├── ControlFs.c │ │ │ │ │ ├── ControlFs.vcxproj │ │ │ │ │ ├── ControlFs.vcxproj.filters │ │ │ │ │ └── ControlFs.vcxproj.user │ │ │ │ ├── ControlMbx │ │ │ │ │ ├── ControlMbx.c │ │ │ │ │ ├── ControlMbx.vcxproj │ │ │ │ │ └── ControlMbx.vcxproj.filters │ │ │ │ ├── DefaultSd │ │ │ │ │ ├── DefaultSd.c │ │ │ │ │ ├── DefaultSd.vcxproj │ │ │ │ │ ├── DefaultSd.vcxproj.filters │ │ │ │ │ └── DefaultSd.vcxproj.user │ │ │ │ ├── Inherited │ │ │ │ │ ├── Inherited.c │ │ │ │ │ ├── Inherited.vcxproj │ │ │ │ │ ├── Inherited.vcxproj.filters │ │ │ │ │ └── Inherited.vcxproj.user │ │ │ │ ├── InheritedObjectType │ │ │ │ │ ├── InheritedObjectType.c │ │ │ │ │ ├── InheritedObjectType.vcxproj │ │ │ │ │ ├── InheritedObjectType.vcxproj.filters │ │ │ │ │ └── InheritedObjectType.vcxproj.user │ │ │ │ ├── MapiFolder │ │ │ │ │ ├── MapiFolder.c │ │ │ │ │ ├── MapiFolder.vcxproj │ │ │ │ │ └── MapiFolder.vcxproj.filters │ │ │ │ ├── Object │ │ │ │ │ ├── Object.c │ │ │ │ │ ├── Object.vcxproj │ │ │ │ │ ├── Object.vcxproj.filters │ │ │ │ │ └── Object.vcxproj.user │ │ │ │ ├── ObjectType │ │ │ │ │ ├── ObjectType.c │ │ │ │ │ ├── ObjectType.vcxproj │ │ │ │ │ ├── ObjectType.vcxproj.filters │ │ │ │ │ └── ObjectType.vcxproj.user │ │ │ │ └── Trustee │ │ │ │ │ ├── Trustee.c │ │ │ │ │ ├── Trustee.vcxproj │ │ │ │ │ ├── Trustee.vcxproj.filters │ │ │ │ │ └── Trustee.vcxproj.user │ │ │ ├── Importers │ │ │ │ ├── LdapDump │ │ │ │ │ ├── LdapDump.c │ │ │ │ │ ├── LdapDump.vcxproj │ │ │ │ │ ├── LdapDump.vcxproj.filters │ │ │ │ │ └── LdapDump.vcxproj.user │ │ │ │ ├── Loopback │ │ │ │ │ ├── Loopback.c │ │ │ │ │ ├── Loopback.vcxproj │ │ │ │ │ ├── Loopback.vcxproj.filters │ │ │ │ │ └── Loopback.vcxproj.user │ │ │ │ └── Sysvol │ │ │ │ │ ├── Sysvol.c │ │ │ │ │ ├── Sysvol.vcxproj │ │ │ │ │ ├── Sysvol.vcxproj.filters │ │ │ │ │ └── Sysvol.vcxproj.user │ │ │ └── Writers │ │ │ │ ├── FullyResolved │ │ │ │ ├── FullyResolved.c │ │ │ │ ├── FullyResolved.vcxproj │ │ │ │ ├── FullyResolved.vcxproj.filters │ │ │ │ └── FullyResolved.vcxproj.user │ │ │ │ ├── Loopback │ │ │ │ ├── Loopback.c │ │ │ │ ├── Loopback.vcxproj │ │ │ │ ├── Loopback.vcxproj.filters │ │ │ │ └── Loopback.vcxproj.user │ │ │ │ ├── MasterMailboxRelation │ │ │ │ ├── MasterMailboxRelation.c │ │ │ │ ├── MasterMailboxRelation.vcxproj │ │ │ │ └── MasterMailboxRelation.vcxproj.filters │ │ │ │ └── MasterSlaveRelation │ │ │ │ ├── MasterSlaveRelation.c │ │ │ │ ├── MasterSlaveRelation.vcxproj │ │ │ │ ├── MasterSlaveRelation.vcxproj.filters │ │ │ │ └── MasterSlaveRelation.vcxproj.user │ │ └── libdev │ │ │ └── readme.txt │ └── ControlRelationsProviders │ │ ├── Control.Ad.Container │ │ ├── Control.Ad.Container.c │ │ ├── Control.Ad.Container.vcxproj │ │ ├── Control.Ad.Container.vcxproj.filters │ │ └── Control.Ad.Container.vcxproj.user │ │ ├── Control.Ad.Deleg │ │ ├── Control.Ad.Deleg.c │ │ ├── Control.Ad.Deleg.vcxproj │ │ └── Control.Ad.Deleg.vcxproj.filters │ │ ├── Control.Ad.Gplink │ │ ├── Control.Ad.Gplink.c │ │ ├── Control.Ad.Gplink.vcxproj │ │ ├── Control.Ad.Gplink.vcxproj.filters │ │ └── Control.Ad.Gplink.vcxproj.user │ │ ├── Control.Ad.Group │ │ ├── Control.Ad.Group.c │ │ ├── Control.Ad.Group.vcxproj │ │ ├── Control.Ad.Group.vcxproj.filters │ │ └── Control.Ad.Group.vcxproj.user │ │ ├── Control.Ad.PrimaryGroup │ │ ├── Control.Ad.PrimaryGroup.c │ │ ├── Control.Ad.PrimaryGroup.vcxproj │ │ ├── Control.Ad.PrimaryGroup.vcxproj.filters │ │ └── Control.Ad.PrimaryGroup.vcxproj.user │ │ ├── Control.Ad.Rodc │ │ ├── Control.Ad.Rodc.c │ │ └── Control.Ad.Rodc.vcxproj │ │ ├── Control.Ad.Sd │ │ ├── Control.Ad.Sd.c │ │ ├── Control.Ad.Sd.vcxproj │ │ ├── Control.Ad.Sd.vcxproj.filters │ │ └── Control.Ad.Sd.vcxproj.user │ │ ├── Control.Ad.SidHistory │ │ ├── Control.Ad.SidHistory.c │ │ ├── Control.Ad.SidHistory.vcxproj │ │ ├── Control.Ad.SidHistory.vcxproj.filters │ │ └── Control.Ad.SidHistory.vcxproj.user │ │ ├── Control.Exch.Db │ │ ├── Control.Exch.Db.c │ │ ├── Control.Exch.Db.vcxproj │ │ └── Control.Exch.Db.vcxproj.filters │ │ ├── Control.Exch.Role │ │ ├── Control.Exch.Role.c │ │ ├── Control.Exch.Role.vcxproj │ │ └── Control.Exch.Role.vcxproj.filters │ │ ├── Control.Exch.RoleEntry │ │ ├── Control.Exch.RoleEntry.c │ │ ├── Control.Exch.RoleEntry.vcxproj │ │ └── Control.Exch.RoleEntry.vcxproj.filters │ │ ├── Control.MakeAllNodes │ │ ├── Control.MakeAllNodes.c │ │ └── Control.MakeAllNodes.vcxproj │ │ ├── Control.Mbx.Sd │ │ ├── Control.Mbx.Sd.c │ │ ├── Control.Mbx.Sd.vcxproj │ │ └── Control.Mbx.Sd.vcxproj.filters │ │ ├── Control.Sysvol.Sd │ │ ├── Control.Sysvol.Sd.c │ │ ├── Control.Sysvol.Sd.vcxproj │ │ ├── Control.Sysvol.Sd.vcxproj.filters │ │ └── Control.Sysvol.Sd.vcxproj.user │ │ ├── ControlRelationsProviders.sln │ │ ├── Utils │ │ ├── Control.c │ │ └── Control.h │ │ └── libdev │ │ └── readme.txt └── Utils │ └── Get-MAPIFoldersPermissions.ps1 ├── LICENSE.txt ├── Query └── Query.ps1 ├── README.md ├── global-schema.png └── graph-example.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dump/ADCP/ADCP.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/ADCP/ADCP.psd1 -------------------------------------------------------------------------------- /Dump/ADCP/ADCP.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/ADCP/ADCP.psm1 -------------------------------------------------------------------------------- /Dump/ADCP/ADCPInstances.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/ADCP/ADCPInstances.ps1 -------------------------------------------------------------------------------- /Dump/ADCP/Get-ADCPDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/ADCP/Get-ADCPDump.ps1 -------------------------------------------------------------------------------- /Dump/ADCP/Import-ADCPDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/ADCP/Import-ADCPDump.ps1 -------------------------------------------------------------------------------- /Dump/ADCP/Prepare-ADCPDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/ADCP/Prepare-ADCPDump.ps1 -------------------------------------------------------------------------------- /Dump/ADCP/Utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/ADCP/Utils.ps1 -------------------------------------------------------------------------------- /Dump/ADCP/neo4j.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/ADCP/neo4j.conf -------------------------------------------------------------------------------- /Dump/Bin/Plugins/Filters/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dump/Bin/Plugins/Importers/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dump/Bin/Plugins/Writers/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dump/Bin/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dump/Dump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Dump.ps1 -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilter.sln -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/AceConstants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/AceConstants.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/AceConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/AceConstants.h -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/AceFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/AceFilter.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/AceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/AceFilter.h -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/AceFilter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/AceFilter.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/AceFilter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/AceFilter.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/AceFilter.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/AceFilter.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/Cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/Cache.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/Cache.h -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/Common.h -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/ImportedObjects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/ImportedObjects.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/ImportedObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/ImportedObjects.h -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/Plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/Plugin.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/Plugin.h -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/PluginApi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/PluginApi.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/PluginApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/PluginApi.h -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterCore/PluginCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterCore/PluginCommon.h -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AceMask/AceMask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AceMask/AceMask.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AceMask/AceMask.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AceMask/AceMask.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AceMask/AceMask.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AceMask/AceMask.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AceMask/AceMask.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AceMask/AceMask.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AceType/AceType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AceType/AceType.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AceType/AceType.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AceType/AceType.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AceType/AceType.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AceType/AceType.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AceType/AceType.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AceType/AceType.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AdmSdHolder/AdmSdHolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AdmSdHolder/AdmSdHolder.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AdmSdHolder/AdmSdHolder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AdmSdHolder/AdmSdHolder.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AdmSdHolder/AdmSdHolder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AdmSdHolder/AdmSdHolder.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AdmSdHolder/AdmSdHolder.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/AdmSdHolder/AdmSdHolder.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/AdmSdHolder/fufu: -------------------------------------------------------------------------------- 1 | lol 2 | -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlAd/ControlAd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlAd/ControlAd.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlAd/ControlAd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlAd/ControlAd.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlAd/ControlAd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlAd/ControlAd.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlAd/ControlAd.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlAd/ControlAd.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlFs/ControlFs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlFs/ControlFs.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlFs/ControlFs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlFs/ControlFs.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlFs/ControlFs.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlFs/ControlFs.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlFs/ControlFs.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlFs/ControlFs.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlMbx/ControlMbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlMbx/ControlMbx.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlMbx/ControlMbx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlMbx/ControlMbx.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlMbx/ControlMbx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ControlMbx/ControlMbx.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/DefaultSd/DefaultSd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/DefaultSd/DefaultSd.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/DefaultSd/DefaultSd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/DefaultSd/DefaultSd.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/DefaultSd/DefaultSd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/DefaultSd/DefaultSd.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/DefaultSd/DefaultSd.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/DefaultSd/DefaultSd.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Inherited/Inherited.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Inherited/Inherited.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Inherited/Inherited.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Inherited/Inherited.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Inherited/Inherited.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Inherited/Inherited.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Inherited/Inherited.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Inherited/Inherited.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/InheritedObjectType/InheritedObjectType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/InheritedObjectType/InheritedObjectType.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/InheritedObjectType/InheritedObjectType.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/InheritedObjectType/InheritedObjectType.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/InheritedObjectType/InheritedObjectType.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/InheritedObjectType/InheritedObjectType.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/InheritedObjectType/InheritedObjectType.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/InheritedObjectType/InheritedObjectType.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/MapiFolder/MapiFolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/MapiFolder/MapiFolder.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/MapiFolder/MapiFolder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/MapiFolder/MapiFolder.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/MapiFolder/MapiFolder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/MapiFolder/MapiFolder.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Object/Object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Object/Object.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Object/Object.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Object/Object.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Object/Object.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Object/Object.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Object/Object.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Object/Object.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ObjectType/ObjectType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ObjectType/ObjectType.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ObjectType/ObjectType.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ObjectType/ObjectType.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ObjectType/ObjectType.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ObjectType/ObjectType.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/ObjectType/ObjectType.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/ObjectType/ObjectType.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Trustee/Trustee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Trustee/Trustee.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Trustee/Trustee.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Trustee/Trustee.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Trustee/Trustee.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Trustee/Trustee.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Filters/Trustee/Trustee.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Filters/Trustee/Trustee.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/LdapDump/LdapDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/LdapDump/LdapDump.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/LdapDump/LdapDump.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/LdapDump/LdapDump.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/LdapDump/LdapDump.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/LdapDump/LdapDump.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/LdapDump/LdapDump.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/LdapDump/LdapDump.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/Loopback/Loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/Loopback/Loopback.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/Loopback/Loopback.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/Loopback/Loopback.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/Loopback/Loopback.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/Loopback/Loopback.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/Loopback/Loopback.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/Loopback/Loopback.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/Sysvol/Sysvol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/Sysvol/Sysvol.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/Sysvol/Sysvol.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/Sysvol/Sysvol.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/Sysvol/Sysvol.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/Sysvol/Sysvol.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Importers/Sysvol/Sysvol.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Importers/Sysvol/Sysvol.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/FullyResolved/FullyResolved.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/FullyResolved/FullyResolved.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/FullyResolved/FullyResolved.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/FullyResolved/FullyResolved.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/FullyResolved/FullyResolved.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/FullyResolved/FullyResolved.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/FullyResolved/FullyResolved.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/FullyResolved/FullyResolved.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/Loopback/Loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/Loopback/Loopback.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/Loopback/Loopback.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/Loopback/Loopback.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/Loopback/Loopback.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/Loopback/Loopback.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/Loopback/Loopback.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/Loopback/Loopback.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterMailboxRelation/MasterMailboxRelation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterMailboxRelation/MasterMailboxRelation.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterMailboxRelation/MasterMailboxRelation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterMailboxRelation/MasterMailboxRelation.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterMailboxRelation/MasterMailboxRelation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterMailboxRelation/MasterMailboxRelation.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterSlaveRelation/MasterSlaveRelation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterSlaveRelation/MasterSlaveRelation.c -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterSlaveRelation/MasterSlaveRelation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterSlaveRelation/MasterSlaveRelation.vcxproj -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterSlaveRelation/MasterSlaveRelation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterSlaveRelation/MasterSlaveRelation.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterSlaveRelation/MasterSlaveRelation.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/AceFilterPlugins/Writers/MasterSlaveRelation/MasterSlaveRelation.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/AceFilter/libdev/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/AceFilter/libdev/readme.txt -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Container/Control.Ad.Container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Container/Control.Ad.Container.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Container/Control.Ad.Container.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Container/Control.Ad.Container.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Container/Control.Ad.Container.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Container/Control.Ad.Container.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Container/Control.Ad.Container.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Container/Control.Ad.Container.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Deleg/Control.Ad.Deleg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Deleg/Control.Ad.Deleg.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Deleg/Control.Ad.Deleg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Deleg/Control.Ad.Deleg.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Deleg/Control.Ad.Deleg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Deleg/Control.Ad.Deleg.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Gplink/Control.Ad.Gplink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Gplink/Control.Ad.Gplink.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Gplink/Control.Ad.Gplink.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Gplink/Control.Ad.Gplink.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Gplink/Control.Ad.Gplink.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Gplink/Control.Ad.Gplink.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Gplink/Control.Ad.Gplink.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Gplink/Control.Ad.Gplink.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Group/Control.Ad.Group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Group/Control.Ad.Group.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Group/Control.Ad.Group.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Group/Control.Ad.Group.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Group/Control.Ad.Group.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Group/Control.Ad.Group.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Group/Control.Ad.Group.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Group/Control.Ad.Group.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.PrimaryGroup/Control.Ad.PrimaryGroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.PrimaryGroup/Control.Ad.PrimaryGroup.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.PrimaryGroup/Control.Ad.PrimaryGroup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.PrimaryGroup/Control.Ad.PrimaryGroup.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.PrimaryGroup/Control.Ad.PrimaryGroup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.PrimaryGroup/Control.Ad.PrimaryGroup.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.PrimaryGroup/Control.Ad.PrimaryGroup.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.PrimaryGroup/Control.Ad.PrimaryGroup.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Rodc/Control.Ad.Rodc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Rodc/Control.Ad.Rodc.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Rodc/Control.Ad.Rodc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Rodc/Control.Ad.Rodc.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Sd/Control.Ad.Sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Sd/Control.Ad.Sd.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Sd/Control.Ad.Sd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Sd/Control.Ad.Sd.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Sd/Control.Ad.Sd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Sd/Control.Ad.Sd.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.Sd/Control.Ad.Sd.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.Sd/Control.Ad.Sd.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.SidHistory/Control.Ad.SidHistory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.SidHistory/Control.Ad.SidHistory.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.SidHistory/Control.Ad.SidHistory.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.SidHistory/Control.Ad.SidHistory.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.SidHistory/Control.Ad.SidHistory.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.SidHistory/Control.Ad.SidHistory.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Ad.SidHistory/Control.Ad.SidHistory.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Ad.SidHistory/Control.Ad.SidHistory.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Exch.Db/Control.Exch.Db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Exch.Db/Control.Exch.Db.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Exch.Db/Control.Exch.Db.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Exch.Db/Control.Exch.Db.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Exch.Db/Control.Exch.Db.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Exch.Db/Control.Exch.Db.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Exch.Role/Control.Exch.Role.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Exch.Role/Control.Exch.Role.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Exch.Role/Control.Exch.Role.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Exch.Role/Control.Exch.Role.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Exch.Role/Control.Exch.Role.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Exch.Role/Control.Exch.Role.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Exch.RoleEntry/Control.Exch.RoleEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Exch.RoleEntry/Control.Exch.RoleEntry.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Exch.RoleEntry/Control.Exch.RoleEntry.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Exch.RoleEntry/Control.Exch.RoleEntry.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Exch.RoleEntry/Control.Exch.RoleEntry.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Exch.RoleEntry/Control.Exch.RoleEntry.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.MakeAllNodes/Control.MakeAllNodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.MakeAllNodes/Control.MakeAllNodes.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.MakeAllNodes/Control.MakeAllNodes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.MakeAllNodes/Control.MakeAllNodes.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Mbx.Sd/Control.Mbx.Sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Mbx.Sd/Control.Mbx.Sd.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Mbx.Sd/Control.Mbx.Sd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Mbx.Sd/Control.Mbx.Sd.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Mbx.Sd/Control.Mbx.Sd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Mbx.Sd/Control.Mbx.Sd.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Sysvol.Sd/Control.Sysvol.Sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Sysvol.Sd/Control.Sysvol.Sd.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Sysvol.Sd/Control.Sysvol.Sd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Sysvol.Sd/Control.Sysvol.Sd.vcxproj -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Sysvol.Sd/Control.Sysvol.Sd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Sysvol.Sd/Control.Sysvol.Sd.vcxproj.filters -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Control.Sysvol.Sd/Control.Sysvol.Sd.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Control.Sysvol.Sd/Control.Sysvol.Sd.vcxproj.user -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/ControlRelationsProviders.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/ControlRelationsProviders.sln -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Utils/Control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Utils/Control.c -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/Utils/Control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/Utils/Control.h -------------------------------------------------------------------------------- /Dump/Src/ControlRelationsProviders/libdev/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Src/ControlRelationsProviders/libdev/readme.txt -------------------------------------------------------------------------------- /Dump/Utils/Get-MAPIFoldersPermissions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Dump/Utils/Get-MAPIFoldersPermissions.ps1 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Query/Query.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/Query/Query.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/README.md -------------------------------------------------------------------------------- /global-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/global-schema.png -------------------------------------------------------------------------------- /graph-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ANSSI-FR/AD-control-paths/HEAD/graph-example.png --------------------------------------------------------------------------------