RedKite.psd1
# # Module manifest for module 'RedKite' # # Generated by: James Erskine # # Generated on: 03/06/2025 # @{ # Script module or binary module file associated with this manifest. RootModule = 'RedKite.psm1' # Version number of this module. ModuleVersion = '1.0.9' # Supported PSEditions # CompatiblePSEditions = @() # ID used to uniquely identify this module GUID = '656600c1-b2a7-4c65-8aa8-bcfb9406ee5b' # Author of this module Author = 'James Erskine' # Company or vendor of this module CompanyName = 'Redkite' # Copyright statement for this module Copyright = '(c) 2025 James Erskine. All rights reserved.' # Description of the functionality provided by this module Description = 'A Microsoft 365 incident response and investigation powershell module with a focus on email phishing attacks. Redkite is designed to check ExchangeOnline for common indicators of compromised email accounts. The checks look at mailbox rules that are commonly put in place by malicious actors to obfuscate their activity. The data is provided in a CSV file that flags possible supicious activity, where further investigation may be required. Checks include; Delete or mark messages as read Move messages to folders silently Forward emails externally Recent Mailbox Changes' # Minimum version of the Windows PowerShell engine required by this module PowerShellVersion = '5.1' # Name of the Windows PowerShell host required by this module # PowerShellHostName = '' # Minimum version of the Windows PowerShell host required by this module # PowerShellHostVersion = '' # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. # DotNetFrameworkVersion = '' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. # CLRVersion = '' # Processor architecture (None, X86, Amd64) required by this module # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @( @{ ModuleName = 'ExchangeOnlineManagement'; ModuleVersion = '3.0.0' }, @{ ModuleName = 'Microsoft.Graph.Users'; ModuleVersion = '2.0.0' } ) # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess # NestedModules = @() # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @( 'Write-Log', 'Test-RequiredModules', 'Start-Redkite', 'Get-M365PhishIndicators' ) # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @() # DSC resources to export from this module # DscResourcesToExport = @() # List of all modules packaged with this module # ModuleList = @() # List of all files packaged with this module FileList = @('RedKite.psm1', 'RedKite.psd1', 'README.md', 'redkite2025.cer') # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @( 'phishing', 'exchange', 'o365', 'compromised' 'breach', 'security', 'inbox_rules', 'audit', 'forensics', 'investigation', 'forwarding') # A URL to the license for this module. LicenseUri = 'https://github.com/redkiteinvestigations/Redkite-Phishing-Indicator-Powershell-Module/blob/c5ec6598c15fa326f3528cd63ba3666b8414a5b9/License.txt' # A URL to the main website for this project. ProjectUri = 'https://github.com/redkiteinvestigations/Redkite-Phishing-Indicator-Powershell-Module' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module ReleaseNotes = '1.0.9 - Shared mailbox check now only queries selected users in line with standard mailbox checks. ReleaseNotes = 1.0.7 - Minor cleanup of files and script. ReleaseNotes = 1.0.6 - Added checks for shared mailboxes. ReleaseNotes = 1.0.5 - Changed CSV output to exclude mailboxes with no alerts. If no alerts found across the tenant this will be displayed. ReleaseNotes = 1.0.2 - Added automatic installation option for required modules. - Improved handling of module dependencies and session imports. - Updated module to import only specific Microsoft.Graph.Users component.' } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |