Milne.IT > 2017 > February
Monthly Archive: February 2017
Ryan Milne
26 Feb 2017
In Part 4, we created our basic Get-MITUser function, which accepts a single $Identity parameter, and will obtain both the MsolUser and Mailbox (assuming they exist). Now it’s time to test with some real fake data – in particular we…
Read more
Ryan Milne
24 Feb 2017
The L2TP Client in MikroTik RouterOS versions 6.83.3 and 6.37.4 does not enable IPsec encryption after a reboot. This allows eavesdroppers to view the transmitted data unencrypted. It also allows eavesdroppers to obtain L2TP client secrets and then establish tunnels to the L2TP servers, gaining unauthorised access to the networks they provide access to.
Ryan Milne
16 Feb 2017
After writing part 4, I realised that I need to get some of this blog’s scripts into source control. Furthermore, it only makes sense that I store them in an online repository to share the scripts publicly. If you aren’t…
Read more
Ryan Milne
12 Feb 2017
At this point we are able to build our basic function that can obtain the MsolUser and Mailbox from a single Identity parameter. First, let’s put our code from parts 2 and 3 into functions, add some Debug output, and…
Read more
Ryan Milne
05 Feb 2017
In a previous post dnscrypt-proxy: Installing on Debian / Raspbian Jessie, I went through the steps to install dnscrypt-proxy and its dependency using checkinstall, so that they can be managed with dpkg. I’ve recently discovered an alternative installation method, which…
Read more
Ryan Milne
05 Feb 2017
At home I have a MikroTik router/firewall; specifically an RB2011UIAS-RM. My Virgin Super Hub is in modem-only mode, leaving the MikroTik to handle all of the networking functions. Just as a bit of an introduction / side-note, MikroTiks are amazing…
Read more
Ryan Milne
03 Feb 2017
In the previous part, we explored how we can handle the errors from Get-MsolUser
as part of our larger Get-MITUser
function. We would hope we could handle Get-Mailbox
in the same way.
Ryan Milne
01 Feb 2017
So a big part of our all-in-one Get-User cmdlet Get-MITUser, is that it needs to try obtaining both the MsolUser from Office 365, and the Mailbox from Exchange Online. Imagine this first as a manual process with “john@example.com”. It would…
Read more