├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── documentation.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── Makefile ├── _static │ ├── custom.css │ └── solarized.css ├── _templates │ ├── layout.html │ └── versions.html ├── changelog.md ├── conf.py ├── contrib.md ├── docs ├── evasion.md ├── img │ ├── amsiutils.png │ ├── powerhub-sharphound.png │ └── powerhub-webapp.png ├── index.md ├── installation.md ├── new.md ├── philosophy.md ├── requirements.txt ├── troubleshooting.md └── usage.md ├── powerhub ├── __init__.py ├── __main__.py ├── app.py ├── args.py ├── decoy │ ├── Generic.psm1 │ ├── LICENSE │ ├── M365DSCAgent.psm1 │ ├── M365DSCCheckProperties.psm1 │ ├── M365DSCDocGenerator.psm1 │ ├── M365DSCEmojis.psm1 │ ├── M365DSCErrorHandler.psm1 │ ├── M365DSCExoResourceUtils.psm1 │ ├── M365DSCLogEngine.psm1 │ ├── M365DSCPermissions.psm1 │ ├── M365DSCReport.psm1 │ ├── M365DSCResourceGenerator.psm1 │ ├── M365DSCReverse.psm1 │ ├── M365DSCStringEncoding.psm1 │ ├── M365DSCStubsUtility.psm1 │ ├── M365DSCTelemetryEngine.psm1 │ ├── M365DSCUtil.psm1 │ ├── MSFT_AADAdministrativeUnit.psm1 │ ├── MSFT_AADApplication.psm1 │ ├── MSFT_AADAuthorizationPolicy.psm1 │ ├── MSFT_AADConditionalAccessPolicy.psm1 │ ├── MSFT_AADEntitlementManagementAccessPackage.psm1 │ ├── MSFT_AADEntitlementManagementAccessPackageCatalog.psm1 │ ├── MSFT_AADEntitlementManagementAccessPackageCatalogResource.psm1 │ ├── MSFT_AADGroup.psm1 │ ├── MSFT_AADGroupLifecyclePolicy.psm1 │ ├── MSFT_AADGroupsNamingPolicy.psm1 │ ├── MSFT_AADGroupsSettings.psm1 │ ├── MSFT_AADNamedLocationPolicy.psm1 │ ├── MSFT_AADRoleDefinition.psm1 │ ├── MSFT_AADRoleSetting.psm1 │ ├── MSFT_AADSecurityDefaults.psm1 │ ├── MSFT_AADServicePrincipal.psm1 │ ├── MSFT_AADTenantDetails.psm1 │ ├── MSFT_AADTokenLifetimePolicy.psm1 │ ├── MSFT_AADUser.psm1 │ ├── MSFT_EXOAcceptedDomain.psm1 │ ├── MSFT_EXOActiveSyncDeviceAccessRule.psm1 │ ├── MSFT_EXOAddressBookPolicy.psm1 │ ├── MSFT_EXOAddressList.psm1 │ ├── MSFT_EXOAntiPhishPolicy.psm1 │ ├── MSFT_EXOAntiPhishRule.psm1 │ ├── MSFT_EXOApplicationAccessPolicy.psm1 │ ├── MSFT_EXOAtpPolicyForO365.psm1 │ ├── MSFT_EXOAuthenticationPolicy.psm1 │ ├── MSFT_EXOAuthenticationPolicyAssignment.psm1 │ ├── MSFT_EXOAvailabilityAddressSpace.psm1 │ ├── MSFT_EXOAvailabilityConfig.psm1 │ ├── MSFT_EXOCASMailboxPlan.psm1 │ ├── MSFT_EXOCASMailboxSettings.psm1 │ ├── MSFT_EXOClientAccessRule.psm1 │ ├── MSFT_EXODataClassification.psm1 │ ├── MSFT_EXODataEncryptionPolicy.psm1 │ ├── MSFT_EXODistributionGroup.psm1 │ ├── MSFT_EXODkimSigningConfig.psm1 │ ├── MSFT_EXOEmailAddressPolicy.psm1 │ ├── MSFT_EXOGlobalAddressList.psm1 │ ├── MSFT_EXOHostedConnectionFilterPolicy.psm1 │ ├── MSFT_EXOHostedContentFilterPolicy.psm1 │ ├── MSFT_EXOHostedContentFilterRule.psm1 │ ├── MSFT_EXOHostedOutboundSpamFilterPolicy.psm1 │ ├── MSFT_EXOHostedOutboundSpamFilterRule.psm1 │ ├── MSFT_EXOIRMConfiguration.psm1 │ ├── MSFT_EXOInboundConnector.psm1 │ ├── MSFT_EXOIntraOrganizationConnector.psm1 │ ├── MSFT_EXOJournalRule.psm1 │ ├── MSFT_EXOMailContact.psm1 │ ├── MSFT_EXOMailTips.psm1 │ ├── MSFT_EXOMailboxPlan.psm1 │ ├── MSFT_EXOMailboxSettings.psm1 │ ├── MSFT_EXOMalwareFilterPolicy.psm1 │ ├── MSFT_EXOMalwareFilterRule.psm1 │ ├── MSFT_EXOManagementRole.psm1 │ ├── MSFT_EXOManagementRoleAssignment.psm1 │ ├── MSFT_EXOMessageClassification.psm1 │ ├── MSFT_EXOMobileDeviceMailboxPolicy.psm1 │ ├── MSFT_EXOOMEConfiguration.psm1 │ ├── MSFT_EXOOfflineAddressBook.psm1 │ ├── MSFT_EXOOnPremisesOrganization.psm1 │ ├── MSFT_EXOOrganizationConfig.psm1 │ ├── MSFT_EXOOrganizationRelationship.psm1 │ ├── MSFT_EXOOutboundConnector.psm1 │ ├── MSFT_EXOOwaMailboxPolicy.psm1 │ ├── MSFT_EXOPartnerApplication.psm1 │ ├── MSFT_EXOPerimeterConfiguration.psm1 │ ├── MSFT_EXOPolicyTipConfig.psm1 │ ├── MSFT_EXOQuarantinePolicy.psm1 │ ├── MSFT_EXORemoteDomain.psm1 │ ├── MSFT_EXOResourceConfiguration.psm1 │ ├── MSFT_EXORoleAssignmentPolicy.psm1 │ ├── MSFT_EXOSafeAttachmentPolicy.psm1 │ ├── MSFT_EXOSafeAttachmentRule.psm1 │ ├── MSFT_EXOSafeLinksPolicy.psm1 │ ├── MSFT_EXOSafeLinksRule.psm1 │ ├── MSFT_EXOSharedMailbox.psm1 │ ├── MSFT_EXOSharingPolicy.psm1 │ ├── MSFT_EXOTransportConfig.psm1 │ ├── MSFT_EXOTransportRule.psm1 │ ├── MSFT_IntuneASRRulesPolicyWindows10.psm1 │ ├── MSFT_IntuneAntivirusPolicyWindows10SettingCatalog.psm1 │ ├── MSFT_IntuneAppConfigurationPolicy.psm1 │ ├── MSFT_IntuneAppProtectionPolicyAndroid.psm1 │ ├── MSFT_IntuneAppProtectionPolicyiOS.psm1 │ ├── MSFT_IntuneApplicationControlPolicyWindows10.psm1 │ ├── MSFT_IntuneAttackSurfaceReductionRulesPolicyWindows10ConfigManager.psm1 │ ├── MSFT_IntuneDeviceAndAppManagementAssignmentFilter.psm1 │ ├── MSFT_IntuneDeviceCategory.psm1 │ ├── MSFT_IntuneDeviceCompliancePolicyAndroid.psm1 │ ├── MSFT_IntuneDeviceCompliancePolicyAndroidDeviceOwner.psm1 │ ├── MSFT_IntuneDeviceCompliancePolicyAndroidWorkProfile.psm1 │ ├── MSFT_IntuneDeviceCompliancePolicyMacOS.psm1 │ ├── MSFT_IntuneDeviceCompliancePolicyWindows10.psm1 │ ├── MSFT_IntuneDeviceCompliancePolicyiOs.psm1 │ ├── MSFT_IntuneDeviceConfigurationPolicyAndroidDeviceAdministrator.psm1 │ ├── MSFT_IntuneDeviceConfigurationPolicyAndroidDeviceOwner.psm1 │ ├── MSFT_IntuneDeviceConfigurationPolicyAndroidOpenSourceProject.psm1 │ ├── MSFT_IntuneDeviceConfigurationPolicyAndroidWorkProfile.psm1 │ ├── MSFT_IntuneDeviceConfigurationPolicyMacOS.psm1 │ ├── MSFT_IntuneDeviceConfigurationPolicyWindows10.psm1 │ ├── MSFT_IntuneDeviceConfigurationPolicyiOS.psm1 │ ├── MSFT_IntuneDeviceEnrollmentLimitRestriction.psm1 │ ├── MSFT_IntuneDeviceEnrollmentPlatformRestriction.psm1 │ ├── MSFT_IntuneExploitProtectionPolicyWindows10SettingCatalog.psm1 │ ├── MSFT_IntuneRoleAssignment.psm1 │ ├── MSFT_IntuneRoleDefinition.psm1 │ ├── MSFT_IntuneSettingCatalogASRRulesPolicyWindows10.psm1 │ ├── MSFT_IntuneWiFiConfigurationPolicyAndroidDeviceAdministrator.psm1 │ ├── MSFT_IntuneWifiConfigurationPolicyAndroidEntrepriseDeviceOwner.psm1 │ ├── MSFT_IntuneWifiConfigurationPolicyAndroidEntrepriseWorkProfile.psm1 │ ├── MSFT_IntuneWifiConfigurationPolicyAndroidForWork.psm1 │ ├── MSFT_IntuneWifiConfigurationPolicyAndroidOpenSourceProject.psm1 │ ├── MSFT_IntuneWifiConfigurationPolicyIOS.psm1 │ ├── MSFT_IntuneWifiConfigurationPolicyMacOS.psm1 │ ├── MSFT_IntuneWifiConfigurationPolicyWindows10.psm1 │ ├── MSFT_O365AdminAuditLogConfig.psm1 │ ├── MSFT_O365Group.psm1 │ ├── MSFT_O365OrgCustomizationSetting.psm1 │ ├── MSFT_ODSettings.psm1 │ ├── MSFT_PPPowerAppsEnvironment.psm1 │ ├── MSFT_PPTenantIsolationSettings.psm1 │ ├── MSFT_PPTenantSettings.psm1 │ ├── MSFT_PlannerBucket.psm1 │ ├── MSFT_PlannerPlan.psm1 │ ├── MSFT_PlannerTask.psm1 │ ├── MSFT_SCAuditConfigurationPolicy.psm1 │ ├── MSFT_SCAutoSensitivityLabelPolicy.psm1 │ ├── MSFT_SCAutoSensitivityLabelRule.psm1 │ ├── MSFT_SCCaseHoldPolicy.psm1 │ ├── MSFT_SCCaseHoldRule.psm1 │ ├── MSFT_SCComplianceCase.psm1 │ ├── MSFT_SCComplianceSearch.psm1 │ ├── MSFT_SCComplianceSearchAction.psm1 │ ├── MSFT_SCComplianceTag.psm1 │ ├── MSFT_SCDLPCompliancePolicy.psm1 │ ├── MSFT_SCDLPComplianceRule.psm1 │ ├── MSFT_SCDeviceConditionalAccessPolicy.psm1 │ ├── MSFT_SCDeviceConfigurationPolicy.psm1 │ ├── MSFT_SCFilePlanPropertyAuthority.psm1 │ ├── MSFT_SCFilePlanPropertyCategory.psm1 │ ├── MSFT_SCFilePlanPropertyCitation.psm1 │ ├── MSFT_SCFilePlanPropertyDepartment.psm1 │ ├── MSFT_SCFilePlanPropertyReferenceId.psm1 │ ├── MSFT_SCFilePlanPropertySubCategory.psm1 │ ├── MSFT_SCLabelPolicy.psm1 │ ├── MSFT_SCProtectionAlert.psm1 │ ├── MSFT_SCRetentionCompliancePolicy.psm1 │ ├── MSFT_SCRetentionComplianceRule.psm1 │ ├── MSFT_SCRetentionEventType.psm1 │ ├── MSFT_SCSensitivityLabel.psm1 │ ├── MSFT_SCSupervisoryReviewPolicy.psm1 │ ├── MSFT_SCSupervisoryReviewRule.psm1 │ ├── MSFT_SPOAccessControlSettings.psm1 │ ├── MSFT_SPOApp.psm1 │ ├── MSFT_SPOBrowserIdleSignout.psm1 │ ├── MSFT_SPOHomeSite.psm1 │ ├── MSFT_SPOHubSite.psm1 │ ├── MSFT_SPOOrgAssetsLibrary.psm1 │ ├── MSFT_SPOPropertyBag.psm1 │ ├── MSFT_SPOSearchManagedProperty.psm1 │ ├── MSFT_SPOSearchResultSource.psm1 │ ├── MSFT_SPOSharingSettings.psm1 │ ├── MSFT_SPOSite.psm1 │ ├── MSFT_SPOSiteAuditSettings.psm1 │ ├── MSFT_SPOSiteDesign.psm1 │ ├── MSFT_SPOSiteDesignRights.psm1 │ ├── MSFT_SPOSiteGroup.psm1 │ ├── MSFT_SPOSiteScript.psm1 │ ├── MSFT_SPOStorageEntity.psm1 │ ├── MSFT_SPOTenantCdnEnabled.psm1 │ ├── MSFT_SPOTenantCdnPolicy.psm1 │ ├── MSFT_SPOTenantSettings.psm1 │ ├── MSFT_SPOTheme.psm1 │ ├── MSFT_SPOUserProfileProperty.psm1 │ ├── MSFT_TeamsCallingPolicy.psm1 │ ├── MSFT_TeamsChannel.psm1 │ ├── MSFT_TeamsChannelTab.psm1 │ ├── MSFT_TeamsChannelsPolicy.psm1 │ ├── MSFT_TeamsClientConfiguration.psm1 │ ├── MSFT_TeamsDialInConferencingTenantSettings.psm1 │ ├── MSFT_TeamsEmergencyCallRoutingPolicy.psm1 │ ├── MSFT_TeamsEmergencyCallingPolicy.psm1 │ ├── MSFT_TeamsEventsPolicy.psm1 │ ├── MSFT_TeamsFederationConfiguration.psm1 │ ├── MSFT_TeamsFilesPolicy.psm1 │ ├── MSFT_TeamsGuestCallingConfiguration.psm1 │ ├── MSFT_TeamsGuestMeetingConfiguration.psm1 │ ├── MSFT_TeamsGuestMessagingConfiguration.psm1 │ ├── MSFT_TeamsIPPhonePolicy.psm1 │ ├── MSFT_TeamsMeetingBroadcastConfiguration.psm1 │ ├── MSFT_TeamsMeetingBroadcastPolicy.psm1 │ ├── MSFT_TeamsMeetingConfiguration.psm1 │ ├── MSFT_TeamsMeetingPolicy.psm1 │ ├── MSFT_TeamsMessagingPolicy.psm1 │ ├── MSFT_TeamsOnlineVoiceUser.psm1 │ ├── MSFT_TeamsOnlineVoicemailPolicy.psm1 │ ├── MSFT_TeamsOnlineVoicemailUserSettings.psm1 │ ├── MSFT_TeamsPstnUsage.psm1 │ ├── MSFT_TeamsShiftsPolicy.psm1 │ ├── MSFT_TeamsTeam.psm1 │ ├── MSFT_TeamsTenantDialPlan.psm1 │ ├── MSFT_TeamsUpdateManagementPolicy.psm1 │ ├── MSFT_TeamsUpgradeConfiguration.psm1 │ ├── MSFT_TeamsUpgradePolicy.psm1 │ ├── MSFT_TeamsUser.psm1 │ ├── MSFT_TeamsUserCallingSettings.psm1 │ ├── MSFT_TeamsVoiceRoute.psm1 │ ├── MSFT_TeamsVoiceRoutingPolicy.psm1 │ ├── Microsoft365.psm1 │ ├── PlannerTaskObject.psm1 │ ├── TestHarness.psm1 │ └── UnitTestHelper.psm1 ├── dhkex.py ├── directories.py ├── flask.py ├── hiddenapp.py ├── logging.py ├── modules.py ├── parameters.py ├── payloads.py ├── po_args.py ├── repos.py ├── reverseproxy.py ├── sql.py ├── stager.py ├── static │ ├── css │ │ ├── SourceSansPro.css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── dashboard.css │ └── js │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.min.js │ │ ├── bootstrap.min.js.map │ │ ├── feather.min.js │ │ ├── feather.min.js.map │ │ ├── jquery-3.3.1.min.js │ │ ├── jquery-3.3.1.min.map │ │ ├── powerhub.js │ │ └── socket.io.min.js ├── templates │ ├── helpstrings.jinja2 │ ├── html │ │ ├── clipboard.html │ │ ├── fileexchange.html │ │ ├── hub.html │ │ ├── hub │ │ │ ├── download-cradle.html │ │ │ └── modulelist.html │ │ ├── index.html │ │ ├── list-static.html │ │ ├── modules.html │ │ ├── single-toast.html │ │ └── toasts.html │ ├── macros.html │ ├── macros.jinja2 │ ├── payloads │ │ ├── powerhub.c │ │ ├── powerhub.cs │ │ └── powerhub.vbs │ └── powershell │ │ ├── amsi │ │ ├── adam-chester.ps1 │ │ ├── am0nsec.ps1 │ │ ├── none.ps1 │ │ ├── process.ps1 │ │ ├── rasta-mouse.ps1 │ │ ├── reflection.ps1 │ │ ├── reflection2.ps1 │ │ └── zc00l.ps1 │ │ ├── antilogging.ps1 │ │ ├── dh_kex.ps1 │ │ ├── disable-logging.ps1 │ │ ├── exec_dotnet.ps1 │ │ ├── modules.csv │ │ ├── powerhub.ps1 │ │ ├── rc4.ps1 │ │ ├── stage1.ps1 │ │ └── stage2.ps1 ├── tools.py ├── upload.py ├── variables.txt └── webdav.py ├── pyproject.toml └── tests ├── helpers └── test_init.py ├── test_fullapp.py ├── test_payloads.py ├── test_po.py └── test_powerhub.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/documentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/.github/workflows/documentation.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/_static/solarized.css -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/_templates/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/_templates/versions.html -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ```{include} ../CHANGELOG.md 2 | ``` 3 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/contrib.md -------------------------------------------------------------------------------- /docs/docs: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /docs/evasion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/evasion.md -------------------------------------------------------------------------------- /docs/img/amsiutils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/img/amsiutils.png -------------------------------------------------------------------------------- /docs/img/powerhub-sharphound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/img/powerhub-sharphound.png -------------------------------------------------------------------------------- /docs/img/powerhub-webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/img/powerhub-webapp.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/new.md -------------------------------------------------------------------------------- /docs/philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/philosophy.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/docs/usage.md -------------------------------------------------------------------------------- /powerhub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/__init__.py -------------------------------------------------------------------------------- /powerhub/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/__main__.py -------------------------------------------------------------------------------- /powerhub/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/app.py -------------------------------------------------------------------------------- /powerhub/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/args.py -------------------------------------------------------------------------------- /powerhub/decoy/Generic.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/Generic.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/LICENSE -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCAgent.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCAgent.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCCheckProperties.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCCheckProperties.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCDocGenerator.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCDocGenerator.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCEmojis.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCEmojis.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCErrorHandler.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCErrorHandler.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCExoResourceUtils.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCExoResourceUtils.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCLogEngine.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCLogEngine.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCPermissions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCPermissions.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCReport.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCReport.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCResourceGenerator.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCResourceGenerator.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCReverse.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCReverse.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCStringEncoding.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCStringEncoding.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCStubsUtility.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCStubsUtility.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCTelemetryEngine.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCTelemetryEngine.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/M365DSCUtil.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/M365DSCUtil.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADAdministrativeUnit.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADAdministrativeUnit.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADApplication.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADApplication.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADAuthorizationPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADAuthorizationPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADConditionalAccessPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADConditionalAccessPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADEntitlementManagementAccessPackage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADEntitlementManagementAccessPackage.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADEntitlementManagementAccessPackageCatalog.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADEntitlementManagementAccessPackageCatalog.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADEntitlementManagementAccessPackageCatalogResource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADEntitlementManagementAccessPackageCatalogResource.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADGroup.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADGroup.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADGroupLifecyclePolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADGroupLifecyclePolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADGroupsNamingPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADGroupsNamingPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADGroupsSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADGroupsSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADNamedLocationPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADNamedLocationPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADRoleDefinition.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADRoleDefinition.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADRoleSetting.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADRoleSetting.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADSecurityDefaults.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADSecurityDefaults.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADServicePrincipal.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADServicePrincipal.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADTenantDetails.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADTenantDetails.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADTokenLifetimePolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADTokenLifetimePolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_AADUser.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_AADUser.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOAcceptedDomain.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOAcceptedDomain.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOActiveSyncDeviceAccessRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOActiveSyncDeviceAccessRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOAddressBookPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOAddressBookPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOAddressList.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOAddressList.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOAntiPhishPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOAntiPhishPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOAntiPhishRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOAntiPhishRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOApplicationAccessPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOApplicationAccessPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOAtpPolicyForO365.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOAtpPolicyForO365.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOAuthenticationPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOAuthenticationPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOAuthenticationPolicyAssignment.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOAuthenticationPolicyAssignment.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOAvailabilityAddressSpace.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOAvailabilityAddressSpace.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOAvailabilityConfig.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOAvailabilityConfig.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOCASMailboxPlan.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOCASMailboxPlan.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOCASMailboxSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOCASMailboxSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOClientAccessRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOClientAccessRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXODataClassification.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXODataClassification.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXODataEncryptionPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXODataEncryptionPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXODistributionGroup.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXODistributionGroup.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXODkimSigningConfig.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXODkimSigningConfig.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOEmailAddressPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOEmailAddressPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOGlobalAddressList.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOGlobalAddressList.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOHostedConnectionFilterPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOHostedConnectionFilterPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOHostedContentFilterPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOHostedContentFilterPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOHostedContentFilterRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOHostedContentFilterRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOHostedOutboundSpamFilterPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOHostedOutboundSpamFilterPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOHostedOutboundSpamFilterRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOHostedOutboundSpamFilterRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOIRMConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOIRMConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOInboundConnector.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOInboundConnector.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOIntraOrganizationConnector.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOIntraOrganizationConnector.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOJournalRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOJournalRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOMailContact.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOMailContact.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOMailTips.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOMailTips.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOMailboxPlan.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOMailboxPlan.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOMailboxSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOMailboxSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOMalwareFilterPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOMalwareFilterPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOMalwareFilterRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOMalwareFilterRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOManagementRole.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOManagementRole.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOManagementRoleAssignment.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOManagementRoleAssignment.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOMessageClassification.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOMessageClassification.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOMobileDeviceMailboxPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOMobileDeviceMailboxPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOOMEConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOOMEConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOOfflineAddressBook.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOOfflineAddressBook.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOOnPremisesOrganization.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOOnPremisesOrganization.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOOrganizationConfig.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOOrganizationConfig.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOOrganizationRelationship.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOOrganizationRelationship.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOOutboundConnector.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOOutboundConnector.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOOwaMailboxPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOOwaMailboxPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOPartnerApplication.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOPartnerApplication.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOPerimeterConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOPerimeterConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOPolicyTipConfig.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOPolicyTipConfig.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOQuarantinePolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOQuarantinePolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXORemoteDomain.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXORemoteDomain.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOResourceConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOResourceConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXORoleAssignmentPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXORoleAssignmentPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOSafeAttachmentPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOSafeAttachmentPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOSafeAttachmentRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOSafeAttachmentRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOSafeLinksPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOSafeLinksPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOSafeLinksRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOSafeLinksRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOSharedMailbox.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOSharedMailbox.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOSharingPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOSharingPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOTransportConfig.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOTransportConfig.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_EXOTransportRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_EXOTransportRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneASRRulesPolicyWindows10.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneASRRulesPolicyWindows10.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneAntivirusPolicyWindows10SettingCatalog.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneAntivirusPolicyWindows10SettingCatalog.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneAppConfigurationPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneAppConfigurationPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneAppProtectionPolicyAndroid.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneAppProtectionPolicyAndroid.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneAppProtectionPolicyiOS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneAppProtectionPolicyiOS.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneApplicationControlPolicyWindows10.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneApplicationControlPolicyWindows10.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneAttackSurfaceReductionRulesPolicyWindows10ConfigManager.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneAttackSurfaceReductionRulesPolicyWindows10ConfigManager.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceAndAppManagementAssignmentFilter.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceAndAppManagementAssignmentFilter.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceCategory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceCategory.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyAndroid.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyAndroid.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyAndroidDeviceOwner.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyAndroidDeviceOwner.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyAndroidWorkProfile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyAndroidWorkProfile.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyMacOS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyMacOS.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyWindows10.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyWindows10.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyiOs.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceCompliancePolicyiOs.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyAndroidDeviceAdministrator.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyAndroidDeviceAdministrator.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyAndroidDeviceOwner.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyAndroidDeviceOwner.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyAndroidOpenSourceProject.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyAndroidOpenSourceProject.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyAndroidWorkProfile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyAndroidWorkProfile.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyMacOS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyMacOS.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyWindows10.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyWindows10.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyiOS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceConfigurationPolicyiOS.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceEnrollmentLimitRestriction.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceEnrollmentLimitRestriction.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneDeviceEnrollmentPlatformRestriction.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneDeviceEnrollmentPlatformRestriction.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneExploitProtectionPolicyWindows10SettingCatalog.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneExploitProtectionPolicyWindows10SettingCatalog.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneRoleAssignment.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneRoleAssignment.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneRoleDefinition.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneRoleDefinition.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneSettingCatalogASRRulesPolicyWindows10.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneSettingCatalogASRRulesPolicyWindows10.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneWiFiConfigurationPolicyAndroidDeviceAdministrator.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneWiFiConfigurationPolicyAndroidDeviceAdministrator.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyAndroidEntrepriseDeviceOwner.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyAndroidEntrepriseDeviceOwner.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyAndroidEntrepriseWorkProfile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyAndroidEntrepriseWorkProfile.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyAndroidForWork.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyAndroidForWork.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyAndroidOpenSourceProject.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyAndroidOpenSourceProject.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyIOS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyIOS.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyMacOS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyMacOS.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyWindows10.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_IntuneWifiConfigurationPolicyWindows10.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_O365AdminAuditLogConfig.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_O365AdminAuditLogConfig.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_O365Group.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_O365Group.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_O365OrgCustomizationSetting.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_O365OrgCustomizationSetting.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_ODSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_ODSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_PPPowerAppsEnvironment.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_PPPowerAppsEnvironment.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_PPTenantIsolationSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_PPTenantIsolationSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_PPTenantSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_PPTenantSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_PlannerBucket.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_PlannerBucket.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_PlannerPlan.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_PlannerPlan.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_PlannerTask.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_PlannerTask.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCAuditConfigurationPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCAuditConfigurationPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCAutoSensitivityLabelPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCAutoSensitivityLabelPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCAutoSensitivityLabelRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCAutoSensitivityLabelRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCCaseHoldPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCCaseHoldPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCCaseHoldRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCCaseHoldRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCComplianceCase.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCComplianceCase.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCComplianceSearch.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCComplianceSearch.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCComplianceSearchAction.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCComplianceSearchAction.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCComplianceTag.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCComplianceTag.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCDLPCompliancePolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCDLPCompliancePolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCDLPComplianceRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCDLPComplianceRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCDeviceConditionalAccessPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCDeviceConditionalAccessPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCDeviceConfigurationPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCDeviceConfigurationPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCFilePlanPropertyAuthority.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCFilePlanPropertyAuthority.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCFilePlanPropertyCategory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCFilePlanPropertyCategory.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCFilePlanPropertyCitation.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCFilePlanPropertyCitation.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCFilePlanPropertyDepartment.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCFilePlanPropertyDepartment.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCFilePlanPropertyReferenceId.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCFilePlanPropertyReferenceId.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCFilePlanPropertySubCategory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCFilePlanPropertySubCategory.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCLabelPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCLabelPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCProtectionAlert.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCProtectionAlert.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCRetentionCompliancePolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCRetentionCompliancePolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCRetentionComplianceRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCRetentionComplianceRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCRetentionEventType.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCRetentionEventType.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCSensitivityLabel.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCSensitivityLabel.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCSupervisoryReviewPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCSupervisoryReviewPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SCSupervisoryReviewRule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SCSupervisoryReviewRule.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOAccessControlSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOAccessControlSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOApp.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOApp.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOBrowserIdleSignout.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOBrowserIdleSignout.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOHomeSite.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOHomeSite.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOHubSite.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOHubSite.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOOrgAssetsLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOOrgAssetsLibrary.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOPropertyBag.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOPropertyBag.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOSearchManagedProperty.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOSearchManagedProperty.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOSearchResultSource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOSearchResultSource.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOSharingSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOSharingSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOSite.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOSite.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOSiteAuditSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOSiteAuditSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOSiteDesign.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOSiteDesign.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOSiteDesignRights.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOSiteDesignRights.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOSiteGroup.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOSiteGroup.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOSiteScript.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOSiteScript.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOStorageEntity.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOStorageEntity.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOTenantCdnEnabled.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOTenantCdnEnabled.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOTenantCdnPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOTenantCdnPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOTenantSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOTenantSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOTheme.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOTheme.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_SPOUserProfileProperty.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_SPOUserProfileProperty.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsCallingPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsCallingPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsChannel.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsChannel.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsChannelTab.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsChannelTab.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsChannelsPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsChannelsPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsClientConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsClientConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsDialInConferencingTenantSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsDialInConferencingTenantSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsEmergencyCallRoutingPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsEmergencyCallRoutingPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsEmergencyCallingPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsEmergencyCallingPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsEventsPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsEventsPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsFederationConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsFederationConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsFilesPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsFilesPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsGuestCallingConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsGuestCallingConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsGuestMeetingConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsGuestMeetingConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsGuestMessagingConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsGuestMessagingConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsIPPhonePolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsIPPhonePolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsMeetingBroadcastConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsMeetingBroadcastConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsMeetingBroadcastPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsMeetingBroadcastPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsMeetingConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsMeetingConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsMeetingPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsMeetingPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsMessagingPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsMessagingPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsOnlineVoiceUser.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsOnlineVoiceUser.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsOnlineVoicemailPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsOnlineVoicemailPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsOnlineVoicemailUserSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsOnlineVoicemailUserSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsPstnUsage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsPstnUsage.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsShiftsPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsShiftsPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsTeam.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsTeam.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsTenantDialPlan.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsTenantDialPlan.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsUpdateManagementPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsUpdateManagementPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsUpgradeConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsUpgradeConfiguration.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsUpgradePolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsUpgradePolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsUser.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsUser.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsUserCallingSettings.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsUserCallingSettings.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsVoiceRoute.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsVoiceRoute.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/MSFT_TeamsVoiceRoutingPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/MSFT_TeamsVoiceRoutingPolicy.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/Microsoft365.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/Microsoft365.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/PlannerTaskObject.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/PlannerTaskObject.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/TestHarness.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/TestHarness.psm1 -------------------------------------------------------------------------------- /powerhub/decoy/UnitTestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/decoy/UnitTestHelper.psm1 -------------------------------------------------------------------------------- /powerhub/dhkex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/dhkex.py -------------------------------------------------------------------------------- /powerhub/directories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/directories.py -------------------------------------------------------------------------------- /powerhub/flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/flask.py -------------------------------------------------------------------------------- /powerhub/hiddenapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/hiddenapp.py -------------------------------------------------------------------------------- /powerhub/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/logging.py -------------------------------------------------------------------------------- /powerhub/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/modules.py -------------------------------------------------------------------------------- /powerhub/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/parameters.py -------------------------------------------------------------------------------- /powerhub/payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/payloads.py -------------------------------------------------------------------------------- /powerhub/po_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/po_args.py -------------------------------------------------------------------------------- /powerhub/repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/repos.py -------------------------------------------------------------------------------- /powerhub/reverseproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/reverseproxy.py -------------------------------------------------------------------------------- /powerhub/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/sql.py -------------------------------------------------------------------------------- /powerhub/stager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/stager.py -------------------------------------------------------------------------------- /powerhub/static/css/SourceSansPro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/css/SourceSansPro.css -------------------------------------------------------------------------------- /powerhub/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /powerhub/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /powerhub/static/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/css/dashboard.css -------------------------------------------------------------------------------- /powerhub/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /powerhub/static/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /powerhub/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /powerhub/static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /powerhub/static/js/feather.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/js/feather.min.js -------------------------------------------------------------------------------- /powerhub/static/js/feather.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/js/feather.min.js.map -------------------------------------------------------------------------------- /powerhub/static/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /powerhub/static/js/jquery-3.3.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/js/jquery-3.3.1.min.map -------------------------------------------------------------------------------- /powerhub/static/js/powerhub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/js/powerhub.js -------------------------------------------------------------------------------- /powerhub/static/js/socket.io.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/static/js/socket.io.min.js -------------------------------------------------------------------------------- /powerhub/templates/helpstrings.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/helpstrings.jinja2 -------------------------------------------------------------------------------- /powerhub/templates/html/clipboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/html/clipboard.html -------------------------------------------------------------------------------- /powerhub/templates/html/fileexchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/html/fileexchange.html -------------------------------------------------------------------------------- /powerhub/templates/html/hub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/html/hub.html -------------------------------------------------------------------------------- /powerhub/templates/html/hub/download-cradle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/html/hub/download-cradle.html -------------------------------------------------------------------------------- /powerhub/templates/html/hub/modulelist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/html/hub/modulelist.html -------------------------------------------------------------------------------- /powerhub/templates/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/html/index.html -------------------------------------------------------------------------------- /powerhub/templates/html/list-static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/html/list-static.html -------------------------------------------------------------------------------- /powerhub/templates/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/html/modules.html -------------------------------------------------------------------------------- /powerhub/templates/html/single-toast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/html/single-toast.html -------------------------------------------------------------------------------- /powerhub/templates/html/toasts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/html/toasts.html -------------------------------------------------------------------------------- /powerhub/templates/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/macros.html -------------------------------------------------------------------------------- /powerhub/templates/macros.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/macros.jinja2 -------------------------------------------------------------------------------- /powerhub/templates/payloads/powerhub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/payloads/powerhub.c -------------------------------------------------------------------------------- /powerhub/templates/payloads/powerhub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/payloads/powerhub.cs -------------------------------------------------------------------------------- /powerhub/templates/payloads/powerhub.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/payloads/powerhub.vbs -------------------------------------------------------------------------------- /powerhub/templates/powershell/amsi/adam-chester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/amsi/adam-chester.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/amsi/am0nsec.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/amsi/am0nsec.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/amsi/none.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/amsi/none.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/amsi/process.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/amsi/process.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/amsi/rasta-mouse.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/amsi/rasta-mouse.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/amsi/reflection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/amsi/reflection.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/amsi/reflection2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/amsi/reflection2.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/amsi/zc00l.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/amsi/zc00l.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/antilogging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/antilogging.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/dh_kex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/dh_kex.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/disable-logging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/disable-logging.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/exec_dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/exec_dotnet.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/modules.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/modules.csv -------------------------------------------------------------------------------- /powerhub/templates/powershell/powerhub.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/powerhub.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/rc4.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/rc4.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/stage1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/stage1.ps1 -------------------------------------------------------------------------------- /powerhub/templates/powershell/stage2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/templates/powershell/stage2.ps1 -------------------------------------------------------------------------------- /powerhub/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/tools.py -------------------------------------------------------------------------------- /powerhub/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/upload.py -------------------------------------------------------------------------------- /powerhub/variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/variables.txt -------------------------------------------------------------------------------- /powerhub/webdav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/powerhub/webdav.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/helpers/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/tests/helpers/test_init.py -------------------------------------------------------------------------------- /tests/test_fullapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/tests/test_fullapp.py -------------------------------------------------------------------------------- /tests/test_payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/tests/test_payloads.py -------------------------------------------------------------------------------- /tests/test_po.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/tests/test_po.py -------------------------------------------------------------------------------- /tests/test_powerhub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrianVollmer/PowerHub/HEAD/tests/test_powerhub.py --------------------------------------------------------------------------------