Skip to content

Commit

Permalink
Move Get-HawkUserHiddenRule to WorkInProgress folder as it is now dep…
Browse files Browse the repository at this point in the history
…recated.
  • Loading branch information
jonnybottles committed Feb 9, 2025
1 parent 5a5629e commit ec54300
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
1 change: 0 additions & 1 deletion Hawk/Hawk.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
'Start-HawkUserInvestigation',
'Update-HawkModule',
'Get-HawkUserAdminAudit',
'Get-HawkUserHiddenRule',
'Get-HawkMessageHeader',
'Get-HawkUserPWNCheck',
'Get-HawkUserAutoReply',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.SYNOPSIS
This will export MailboxItemsAccessed operations from the Unified Audit Log (UAL). Must be connected to Exchange Online
using the Connect-EXO or Connect-ExchangeOnline module. M365 E5 or G5 license is required for this function to work.
This telemetry will ONLY be availabe if Advanced Auditing is enabled for the M365 tenant.
This telemetry will ONLY be available if Advanced Auditing is enabled for the M365 tenant.
.DESCRIPTION
Recent attacker activities have illuminated the use of the Graph API to read user mailbox contents. This will export
logs that will be present if the attacker is using the Graph API for such actions. Note: NOT all graph API actions against
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
Same as above but uses 30-minute collection intervals. Useful for environments with lower
audit log volume where longer intervals won't risk missing data.
#>

###############################################################################################
#TODO SEE TICKET DETAILS FOR THIS: https://github.com/T0pCyber/hawk/issues/263
###############################################################################################
Param (
[Parameter(Mandatory = $true)]
[datetime]$StartDate,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@
Looks for hidden inbox rules for all users who have "C-Level" set in CustomAttribute1
#>

###############################################################################################
#TODO SEE TICKET DETAILS FOR THIS: https://github.com/T0pCyber/hawk/issues/265
###############################################################################################

param (
[Parameter(Mandatory = $true)]
[array]$UserPrincipalName,
Expand Down

0 comments on commit ec54300

Please sign in to comment.