- Dou-MFA
- Windows Hello for Business
- Crescendo Cards
- ManageEngine's Self Service Plus
- Yubico
- Yubikey
- Okta
- tenebale
A secure file share is never an enclave as the endpoints who access the file share are in scope, but when segmented off the secure file share can be part of an enclave. For example you can restrict managed devices accessing the secure file share with VLANs or create a DMZ. For companies who only handle document based CUI and need to flow these documents down to subcontractors you may be able to create an enclave with secure file sharing. Many companies with an Enterprise or enclave scope add secure file sharing as a way to flowdown CUI to subcontractors
A Pen by Greg McVerry on CodePen.
| <div class="h-entry" style="padding:4px 6px 4px 7px;clear:both"> | |
| <h1 class="p-name"> id="openbsd-6.7-is-released---spoiler-jump-on-the-openbsd-train">OpenBSD 6.7 is Released - Spoiler: Jump on the OpenBSD Train</h2> | |
| <h2><time datetime="2020-05-23 061:34:00" class="dt-published">May 23 06:34:41 CEST 2020</h1> | |
| <!- You need an author h-card-> | |
| <h3 class="p-summary" id="comparisoment-between-freebsd-and-openbsd">Comparisoment between FreeBSD and OpenBSD</h3> | |
| <div class="e-content"><!- I wouldn't use an h3 here, you are not segmenting content, use CSS to sytle not HTML-!> | |
| <p>I have been reading lately a lot about OpebBSD’s security, quality of code and Decent Documentation. I tried it a few months back then. But I have whiped my FreeBSD worsktation back then because I tought I’d make the wrong choice. Well there’s a hell of a difference between those two. Let me explain: In FreeBSD it’s all about <em>functuality</em> and in OpenBSD it’s all about <em>Secutity</em> . <strong>Those two Models can never Coexist</ |
| # Allowed uploadable file extensions and mimetypes are defined here. | |
| # To extend this file it is recommended to create a mime.local.conf | |
| # file. Mimetypes that should be downloadable and not be opened in the | |
| # should be prefixed with a ! | |
| jpg image/jpeg | |
| jpeg image/jpeg | |
| gif image/gif | |
| png image/png | |
| ico image/vnd.microsoft.icon |
| "code": 403, | |
| "header": "HTTP/1.1 403 Forbidden\r\nServer: nginx/1.14.0\r\nContent-Type: application/json\r\nTransfer-Encoding: chunked\r\nConnection: keep-alive\r\nX-Powered-By: PHP/7.2.7-1+ubuntu16.04.1+deb.sury.org+1\r\nCache-Control: no-cache, private\r\nDate: Sat, 14 Mar 2020 17:25:00 GMT", | |
| "body": { | |
| "error": "forbidden", | |
| "error_description": "The token endpoint could not verify this access token", | |
| "token_endpoint": { | |
| "url": "https://quickthoughts.jgregorymcverry.com/indieauth/token", | |
| "code": 404, | |
| "response": "Client mismatch." |
| <div class="container header-contianer h-card"> | |
| <div class="row"> | |
| <div class="col-xs-12 col-sm-6 col-md-6 col-lg-8 header-left "> | |
| <img class="u-photo banner-logo" src="/images/logo.png" alt="website banner"> | |
| <!---- | |
| <h1 class="p-name">Cheuk Ting Ho</h1> | |
| <h2 class="p-summary" >Building the Open-source Community</h2> | |
| ---> | |
| </div> | |
| <div class="col-xs-12 col-sm-6 col-md-6 col-lg-4 header-right"> |
| <figure> | |
| <img src="https://podcasts.eduquinn.com/wp-content/uploads/2019/12/3.png" alt="podcast cover with profile photo"> | |
| <figcaption>Leaving to Learn With Elliot Washor</figcaption> | |
| <audio | |
| controls | |
| src="https://podcasts.eduquinn.com/podcast-player/22/leaving-to-learn-with-elliot-washor.mp3?_=1"> | |
| Your browser does not support the | |
| <code>audio</code> element. | |
| </audio> |
| RewriteEngine On | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule ^([^\.]+)$ $1.php [NC,L] | |
| RewriteCond %{HTTPS_HOST} ^jgregorymcverry.com$ [NC] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule ^([^.]+)$ $1.html [NC,L] | |
| RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC] | |
| RewriteRule ^ /%1 [NC,L,R] | |
| RewriteCond %{REQUEST_FILENAME}.html -f | |
| RewriteRule ^ %{REQUEST_URI}.html [NC,L] |
| <IfModule mod_rewrite.c> | |
| RewriteEngine on | |
| #RewriteBase / | |
| RewriteCond %{HTTPS} !=on | |
| RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | |
| RewriteCond %{ENV:BASE} ^$ | |
| RewriteCond $1::%{REQUEST_URI} ^(.*)::(.*?)\1$ | |
| RewriteRule ^(.*)$ - [ENV=BASE:%2] | |
| RewriteRule ^js/canary\.js$ %{ENV:BASE}/js/default.js [L] |