Link to home
Start Free TrialLog in
Avatar of Ahmed Ahmed
Ahmed Ahmed

asked on

security issue with exchange server

Hello

We are very worried because we have just find out that some users can "send as" emails, sent on behalf,...

How could this be possible?

Ahmed
ASKER CERTIFIED SOLUTION
Avatar of Valentina Perez
Valentina Perez
Flag of France image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
to get a report on "send as" rights,  run the following Script, this is for O365 users only.

$RecipientPermissions = Get-RecipientPermission -ResultSize unlimited
$SendAsRights = $RecipientPermissions | ? {$_.trustee -ne "True" -and $_.Trustee `
-notlike "S-1-5*" -and $_.Trustee -notlike "*Self"} | select Identity,Trustee, Accessrights
$sendAsAttachment = "SendAs-Permission-Backup" + $(get-date -Format MM-dd-yyyy) + ".csv"
$SendAsRights | Export-csv "$sendAsAttachment" -NoType

Open in new window


for Getting Reports on Send on Behalf permission

get the script from this link: http://www.sunilchauhan.info/2016/05/get-send-on-behalf-access-report-well.html
They have permission to do so, whether the admin granted it or the user received delegated rights from the mailbox owner.
Avatar of Ahmed Ahmed
Ahmed Ahmed

ASKER

There was an incorrect send as permission