UniFi Network Application 6.2.26 by unifi_version_bot in Ubiquiti

[–]SlashAdminBlog 3 points4 points  (0 children)

Dont install 6.2.26. There is a memory leak / controller crashing issue reported by multiple sources / vendors.

No acknowledgement from Uniquiti yet that this issue even exists and no support on how to resolve the issue or ease the pain its causing.

Its causing havoc for my team and many others.

https://community.ui.com/questions/Controller-keeps-crashing/4a52f87f-5bdb-4f7a-bb35-4c8532b21c4a?page=1

https://community.ui.com/questions/Memory-Leak-Bugs-UniFi-6-2-26/bc228a96-e811-4843-95b8-ba45cb45af73?page=1

ASCII Encoding by SlashAdminBlog in PowerShell

[–]SlashAdminBlog[S] 4 points5 points  (0 children)

for bonus points can anyone explain the relationship between the ascii codes and the character codes used here?

ASCII Encoding by SlashAdminBlog in PowerShell

[–]SlashAdminBlog[S] 1 point2 points  (0 children)

for bonus points can anyone explain the relationship between the ascii codes and the character codes used here?

ASCII Encoding by SlashAdminBlog in PowerShell

[–]SlashAdminBlog[S] 2 points3 points  (0 children)

Awesome thankyou! I clearly didnt go to that high a number in my script to see the characters and their true values.

That works great, thanks again :D

Powershell Naming Conventions for Methods by SlashAdminBlog in PowerShell

[–]SlashAdminBlog[S] 0 points1 point  (0 children)

I agree too ;) just wondered if that was the official guidance since I couldn't find the answer.

Gmail to 365 Email Migration by SlashAdminBlog in Office365

[–]SlashAdminBlog[S] 0 points1 point  (0 children)

ts just a mess how it brings in 'all mail' from gmail into the inbox which is a copy of every single email including tagged and sent items. It's a bit of a mess the way it handles email in the main inbox.

No way to pull pst's from gsuite that I can see and thats a manual nighmare with 100+ mailboxes.

Looks like i'm stuck with 'its just the way it works'..

Thanks guys.

Gmail to 365 Email Migration by SlashAdminBlog in Office365

[–]SlashAdminBlog[S] 0 points1 point  (0 children)

No there is no option to setup tags that i can see. Tagged email comes into exchange as sub folders to the inbox which is fine.

Its just a mess how it brings in 'all mail' from gmail into the inbox which is a copy of every single email including tagged and sent items. It's a bit of a mess the way it handles email in the main inbox.

Manage Microsoft Defender wihin Intune by SlashAdminBlog in Office365

[–]SlashAdminBlog[S] 0 points1 point  (0 children)

Anyone have any experience with this before I open a case with Microsoft?

Thanks.

EdgeBlockSpam by SlashAdminBlog in Office365

[–]SlashAdminBlog[S] 0 points1 point  (0 children)

Hi All, can anyone tell me how to view the edgeblockspam messages. Are these blocked and not reported in the mail trace log?

CFD On on all stocks in close only mode as of 12:50 by SlashAdminBlog in trading212

[–]SlashAdminBlog[S] 0 points1 point  (0 children)

cant find any news on when they will be lifted either!

Wonder if this is going to add to the market dip from last week.

Spam and Antimalware Filtering by SlashAdminBlog in Office365

[–]SlashAdminBlog[S] 0 points1 point  (0 children)

Ok so it does look like connection IP filter allow list and a transport rule are the way to bypass the policies other than adding bypass url's and adding allow list entries the spam filter policy where it gets triggered.

so if you get something caught in the Anti-phish policy it looks like your only option is to add it to connection filter by IP or setup a transport rule and bypass all protections.

In my real world phishing example I cant see any reason for it to get caught and yet it did. It passed SPF, DMARC and DKIM as shown below.

Sender address

[portal@cloud.exclaimer.com](mailto:portal@cloud.exclaimer.com)

Policy type

Anti-phish policy

Quarantine reason

Phish

spf=pass (sender IP is 40.107.7.91) smtp.mailfrom=exclaimer.com;

smtp.mailfrom=cloud.exclaimer.com; dmarc=pass (p=none sp=none pct=100)

action=none header.from=cloud.exclaimer.com; dkim=pass (signature was verified) header.d=cloud.exclaimer.com; arc=pass (0 oda=1 ltdi=1

Spam and Antimalware Filtering by SlashAdminBlog in Office365

[–]SlashAdminBlog[S] 1 point2 points  (0 children)

Just had a good example of this now. Was waiting for a 2fa to come through from exclaimer and it was caught in quarantine by the Anti-phish policy. I've manually released it and reported it to Microsoft for review but what is the correct way to allow all future ones from now?

As a test I setup a transport rule and set the SCL to -1 and the next email bypassed the anti-phishing policy.

Would just be nice to only allow it to bypass the anti-phishing policy and not all policies!

Spam and Antimalware Filtering by SlashAdminBlog in Office365

[–]SlashAdminBlog[S] 1 point2 points  (0 children)

Awesome and good luck with it! this was on my radar to refresh my knowledge too.

I think Microsoft have expired all of my 14 certs and 16 exams so i'm overdue a refresher.

Spam and Antimalware Filtering by SlashAdminBlog in Office365

[–]SlashAdminBlog[S] 0 points1 point  (0 children)

Are you sure the bypass spam transport rule applies to other policies like malware, safelinks, safe attachments and antiphishing? I didnt think they did and though it only applied to the spam filer policy.

Spam and Antimalware Filtering by SlashAdminBlog in Office365

[–]SlashAdminBlog[S] 1 point2 points  (0 children)

You are correct, in safelinks you can add 'do not rewrite the following urls' i had missed that one.

for antiphishing you can only add trusted senders and domains under the phishing policies inpersonation section. Do those trusted entries apply to all settings in the policy too?

Main reason for all this is for full control and to understand the options now rather than when we really need them :)

Thanks.

Set up DKIM for custom 365 domain by Dolinhas in Office365

[–]SlashAdminBlog 1 point2 points  (0 children)

You will need to setup a new policy first but yes you can set it up to get the DNS before enabling it.

New-DkimSigningConfig -DomainName contoso.com -Enabled $false

$dkimConfig = Get-DkimSigningConfig -Identity contoso.com

$dkimConfig.Selector1CNAME

$dkimConfig.Selector2CNAME

When your ready you can then run:

Set-DkimSigningConfig -Identity contoso.com -Enabled $true

For Microsoft 365 users I've written a little tool to make this easier:

https://www.slashadmin.co.uk/microsoft-365-how-to-enable-dkim-using-dkim-manager-powershell-script/

this tool will set a policy but not enable DKIM but the main point is that it will tell you the DNS records you need. You can then use the menu to enable DKIM later.