- Validate Locally - Apple
- https://www.objc.io/issues/17-security/receipt-validation/
- https://www.synack.com/2016/05/04/are-you-from-the-mac-app-store/
- validate receipt 1 and 2
- https://github.com/objective-see/fromAppStore
| #!/bin/sh | |
| pkg install -y poudriere ccache git-lite | |
| mkdir /var/cache/ccache | |
| # edit poudriere.conf | |
| echo "cache_dir = /var/cache/ccache" >>/usr/local/etc/ccache.conf | |
| echo "CCACHE_DIR=/var/cache/ccache" >> /usr/local/etc/poudriere.conf | |
| echo "ZPOOL=zroot" >> /usr/local/etc/poudriere.conf | |
| # add your poudriere.conf options below |
| # $FreeBSD: releng/11.1/etc/sysctl.conf 112200 2003-03-13 18:43:50Z mux $ | |
| # | |
| # see https://calomel.org/freebsd_network_tuning.html | |
| # https://www.c0ffee.net/blog/freebsd-server-guide | |
| # https://en.wikipedia.org/wiki/TCP_tuning | |
| # https://en.wikipedia.org/wiki/TCP_window_scale_option | |
| # https://en.wikipedia.org/wiki/Bandwidth-delay_product | |
| # https://www.freebsd.org/doc/handbook/configtuning-sysctl.html | |
| # https://www.freebsd.org/cgi/man.cgi?query=sysctl&sektion=8&manpath=freebsd-release-ports | |
| # |
| server { | |
| listen 443 ssl http2; | |
| listen [::]:443 ssl http2; | |
| server_name yourdomain | |
| ssl_certificate /etc/ssl/localcerts/yourdomain.crt; | |
| ssl_certificate_key /etc/ssl/localcerts/yourdomain.key; | |
| ssl_ecdh_curve prime256v1; | |
| ssl_session_cache builtin:1000 shared:SSL:10m; |
Author: Chris Lattner
Following script may be used for configuring complete and secure email server on fresh install of Debian 9. It will probably work on other distributions using apt-get. After minor changes you'll be able to use it on other Linux distros.
| ###################################################################### | |
| # BSD Meetup Rennes - FreeBSD Jails Workshop | |
| # | |
| # TEA-WARE LICENSE: | |
| # Mathieu Kerjouan <[email protected]> wrote this file. As long as | |
| # you retain this notice you can do whatever you want with this | |
| # stuff. If we meet some day, and you think this stuff is worth it, | |
| # you can buy me a tea in return. Mathieu Kerjouan | |
| # | |
| ###################################################################### |
| using UnityEngine; | |
| using System.Net; | |
| using System.Threading; | |
| public class TestConnectionLimit : MonoBehaviour | |
| { | |
| void Download(object arg) | |
| { | |
| var sw = new System.Diagnostics.Stopwatch(); | |
| sw.Start(); |