gitextract_n0h_95a4/ ├── ACE-Docker/ │ ├── README.md │ ├── ace-ca/ │ │ └── dockerfile │ ├── ace-nginx/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── entrypoint.sh │ │ └── nginx.conf │ ├── ace-rabbitmq/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── ace-cache.py │ │ ├── ace-entrypoint.sh │ │ └── ace-lookup.py │ ├── ace-sql/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── ace.sql │ │ └── import-data.sh │ ├── ace.env │ ├── docker-compose.yml │ ├── settings.sh │ └── start.sh ├── ACE-Management/ │ └── PS-ACE/ │ ├── Cmdlets/ │ │ ├── Download-AceFile.ps1 │ │ ├── Get-AceComputer.ps1 │ │ ├── Get-AceCredential.ps1 │ │ ├── Get-AceSchedule.ps1 │ │ ├── Get-AceScript.ps1 │ │ ├── Get-AceSweep.ps1 │ │ ├── Get-AceSweepResult.ps1 │ │ ├── Get-AceUser.ps1 │ │ ├── Invoke-AceWebRequest.ps1 │ │ ├── New-AceCredential.ps1 │ │ ├── New-AceScheduledScan.ps1 │ │ ├── New-AceScript.ps1 │ │ ├── New-AceUser.ps1 │ │ ├── Remove-AceCredential.ps1 │ │ ├── Remove-AceScript.ps1 │ │ ├── Remove-AceUser.ps1 │ │ ├── Send-AceResult.ps1 │ │ ├── Start-AceDiscovery.ps1 │ │ ├── Start-AceSweep.ps1 │ │ ├── Update-AceCredential.ps1 │ │ └── Update-AceUser.ps1 │ ├── PS-ACE.psm1 │ ├── README.md │ ├── Scripts/ │ │ ├── ACE-Master.ps1 │ │ ├── ACE_Get-AccessToken.ps1 │ │ ├── ACE_Get-ArpCache.ps1 │ │ ├── ACE_Get-Atom.ps1 │ │ ├── ACE_Get-InjectedThread.ps1 │ │ ├── ACE_Get-KerberosTicketCache.ps1 │ │ ├── ACE_Get-LogonSession.ps1 │ │ ├── ACE_Get-MasterBootRecord.ps1 │ │ ├── ACE_Get-NetworkConnection.ps1 │ │ ├── ACE_Get-PSAutorun.ps1 │ │ ├── ACE_Get-PSIProcess.ps1 │ │ ├── ACE_Get-PSIScheduledTask.ps1 │ │ ├── ACE_Get-PSIService.ps1 │ │ ├── ACE_Get-PSIWindowsSecurityEvent.ps1 │ │ ├── ACE_Get-ScheduledJob.ps1 │ │ ├── ACE_Get-SecurityPackage.ps1 │ │ ├── ACE_Get-SimpleNamedPipe.ps1 │ │ └── Invoke-MonsterWinRM.ps1 │ └── Working/ │ └── ACE_Get-PSIPrefetch.ps1 ├── ACE-WebService/ │ ├── .gitignore │ ├── ACEWebService.sln │ ├── Configure-AceWebService.ps1 │ ├── NuGet.config │ ├── dockerfile │ └── src/ │ └── ACEWebService/ │ ├── ACEWebService.csproj │ ├── App.config │ ├── AppSettings.cs │ ├── Controllers/ │ │ ├── ComputerController.cs │ │ ├── CredentialController.cs │ │ ├── DiscoverController.cs │ │ ├── DownloadController.cs │ │ ├── ResultController.cs │ │ ├── ScanController.cs │ │ ├── ScriptController.cs │ │ ├── SweepController.cs │ │ └── UserController.cs │ ├── DbModelBuilder.cs │ ├── Entities/ │ │ ├── ACEWebServiceDbContext.cs │ │ ├── Computer.cs │ │ ├── ComputerGroup.cs │ │ ├── Credential.cs │ │ ├── Download.cs │ │ ├── Scan.cs │ │ ├── Schedule.cs │ │ ├── Script.cs │ │ ├── Sweep.cs │ │ └── User.cs │ ├── Migrations/ │ │ ├── 20170322221439_MyFirstMigration.Designer.cs │ │ ├── 20170322221439_MyFirstMigration.cs │ │ ├── 20170322222622_MySecondMigration.Designer.cs │ │ ├── 20170322222622_MySecondMigration.cs │ │ ├── 20170417201050_MyThirdMigration.Designer.cs │ │ ├── 20170417201050_MyThirdMigration.cs │ │ ├── 20170420231736_MyFourthMigration.Designer.cs │ │ ├── 20170420231736_MyFourthMigration.cs │ │ ├── 20170421030619_MyFifthMigration.Designer.cs │ │ ├── 20170421030619_MyFifthMigration.cs │ │ ├── 20170429215921_MySixthMigration.Designer.cs │ │ ├── 20170429215921_MySixthMigration.cs │ │ ├── 20170430141205_MySeventhMigration.Designer.cs │ │ ├── 20170430141205_MySeventhMigration.cs │ │ ├── 20170707032113_MyEigthMigration.Designer.cs │ │ ├── 20170707032113_MyEigthMigration.cs │ │ ├── 20170707040959_MyNinthMigration.Designer.cs │ │ ├── 20170707040959_MyNinthMigration.cs │ │ ├── 20170707042221_MyTenthMigration.Designer.cs │ │ ├── 20170707042221_MyTenthMigration.cs │ │ ├── 20170713053904_MyEleventhMigration.Designer.cs │ │ ├── 20170713053904_MyEleventhMigration.cs │ │ ├── 20171116210534_MyTwelfthMigration.Designer.cs │ │ ├── 20171116210534_MyTwelfthMigration.cs │ │ ├── 20171116211023_MyThirteenthMigration.Designer.cs │ │ ├── 20171116211023_MyThirteenthMigration.cs │ │ ├── 20171116233431_MyFourteenthMigration.Designer.cs │ │ ├── 20171116233431_MyFourteenthMigration.cs │ │ └── ACEWebServiceDbContextModelSnapshot.cs │ ├── Program.cs │ ├── Project_Readme.html │ ├── Properties/ │ │ ├── PublishProfiles/ │ │ │ ├── ACEWebService-publish.ps1 │ │ │ ├── ACEWebService.pubxml │ │ │ ├── FileSystem-publish.ps1 │ │ │ ├── FileSystem.pubxml │ │ │ └── publish-module.psm1 │ │ └── launchSettings.json │ ├── Security/ │ │ ├── ApiKeyPolicy.cs │ │ └── IsAdminPolicy.cs │ ├── Services/ │ │ ├── IAceConfiguration.cs │ │ ├── ICryptographyService.cs │ │ ├── IDiscoveryService.cs │ │ ├── IDownloadService.cs │ │ ├── ISweepExecutionService.cs │ │ └── ISweepResultProcessorService.cs │ ├── Startup.cs │ ├── ViewModels/ │ │ ├── ArbitrarySweepViewModel.cs │ │ ├── CredentialViewModel.cs │ │ ├── DiscoveryActiveDirectoryViewModel.cs │ │ ├── DiscoveryComputerListViewModel.cs │ │ ├── DownloadReceiveViewModel.cs │ │ ├── DownloadRequestViewModel.cs │ │ ├── ErrorViewModel.cs │ │ ├── FileViewModel.cs │ │ ├── ScheduleIntervalViewModel.cs │ │ ├── ScheduleTimeViewModel.cs │ │ ├── SweepExecutionViewModel.cs │ │ ├── SweepResultViewModel.cs │ │ └── UserViewModel.cs │ ├── appsettings.Production.json │ ├── appsettings.json │ ├── nuget.config │ ├── scripts/ │ │ ├── Download-AceFile.ps1 │ │ └── Start-AceScript.ps1 │ └── web.config ├── LICENSE-Quartz.NET ├── LICENSE-RabbitMQ ├── LICENSE-SSH.NET ├── LICENSE-osxcollector └── README.md