Only took 5 months, but site is back online!
Category: Stuff
How to Use Notepad to Create a Log File
Nice tip for Notepad from weekly email from Veeam’s Gostev.
How to Use Notepad to Create a Log File
Summary
More Information
- Click Start, point to Programs, point to Accessories, and then click Notepad.
- Type .LOG on the first line, and then press ENTER to move to the next line.
- On the File menu, click Save As, type a descriptive name for your file in the File name box, and then click OK. When you next open the file, note that the date and time have been appended to the end of the log, immediately preceding the place where new text can be added. You can use this functionality to automatically add the current date and time to each log entry.
Source: https://support.microsoft.com/en-us/help/260563/how-to-use-notepad-to-create-a-log-file
Web Push notifications in Firefox
Finally took some time to eradicate the annoying FF notification prompts. Referenced How do I disable Web Push completely? from
Amazon Workspaces now provides IP address-based access control
Good stuff to lock down access to Amazon WorkSpaces…
Amazon WorkSpaces now provides you with the ability to control the IP addresses from which your WorkSpaces can be accessed. Using IP address-based control groups, you can define and manage groups of trusted IP addresses, and only allow users to access their WorkSpaces when they’re connected to a trusted network. This feature helps you gain greater control over your security posture.
More here
Duo for Outlook Web App (OWA) on Exchange 2013 and Later
Piece of cake…https://duo.com/docs/owa
Wish I had done this years ago!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Would have made CN proud.
Reduced Duo user count also as Alias provides flexibility for accounts!
iCloud for Windows on Amazon WorkSpaces
Since Amazon WorkSpaces runs atop Windows Server 2016, iCloud for Windows installation fails stating Windows 7 or higher is required.
These 2 links got me through the hoops. Thanks friends!
Duo for WordPress
Piece of cake…
Duo’s WordPress plugin enables two-factor authentication for WordPress logins, complete with inline self-service enrollment and Duo Prompt. The code is open-source and available on GitHub.
WTF FortiGate/Fortinet TCP/8008 and /8010
Noticed odd traffic to Canada IPs from FAZ and found they are in use by the FortiGate for the FortiGuard block pages as well as the FortiGuard override pages.
Source: http://itheadaches.com/wtf-fortinet-fortigate-tcp-ports-8008-8010-reserved-ports/
QUIC Protocol udp/443
QUIC (Quick UDP Internet Connections, pronounced quick) is an experimental transport layer network protocol developed by Google. QUIC supports a set of multiplexed connections between two endpoints over User Datagram Protocol (UDP), and was designed to provide security protection equivalent to TLS/SSL, along with reduced connection and transport latency, and bandwidth estimation in each direction to avoid congestion. QUIC’s main goal is to optimize connection-oriented web applications currently using TCP. An experimental implementation is being put in place in Chrome by a team of engineers at Google.
Source: How to Block QUIC Protocol
https://live.paloaltonetworks.com/t5/Management-Articles/How-to-Block-QUIC-Protocol/ta-p/120207
WordPress Update Failed
Attempting update to wordpress as we are not worthy. Got this error:
Update WordPress
Downloading update from https://downloads.wordpress.org/release/wordpress-4.9.2-no-content.zip…
Unpacking the update…
The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions.: wp-admin/includes/update-core.php
Installation Failed
THIS guy saved us…https://aaronjholbrook.com/wordpress-permissions-update-error-resolved/
Thanks Aaron!
wp-admin/includes/update-core.php
WordPress install folder:
/var/www/html
sudo find /var/www/html -type f -exec chmod 664 {} \;
sudo find /var/www/html -type d -exec chmod 775 {} \;
sudo chgrp -R www-data /var/www/html