Find screenshots and more info here:
https://twitter.com/alexellisuk/status/904772410620116993
Also supports:
- round-robbin
- auto-scaling
- Prometheus metrics
- Hybrid Linux/Windows functions
| #!/bin/bash | |
| # running kata-runtime with podman on Fedora 28 | |
| # I used ccloudvm for my dev system (this is not required) | |
| ccloudvm create --name podman --mem 4096 --cpus 2 fedora28 | |
| ccloudvm connect podman | |
| # update system and install podman | |
| sudo yum update | |
| sudo yum install podman |
| Working dir: /data | |
| Testing Read IOPS... | |
| read_iops: (g=0): rw=randread, bs=4096B-4096B,4096B-4096B,4096B-4096B, ioengine=libaio, iodepth=64 | |
| fio-2.17-45-g06cb | |
| Starting 1 process | |
| read_iops: Laying out IO file(s) (1 file(s) / 2048MiB) | |
| read_iops: (groupid=0, jobs=1): err= 0: pid=8: Tue Jan 29 19:00:26 2019 | |
| read: IOPS=2124, BW=8513KiB/s (8718kB/s)(125MiB/15027msec) |
| :: Windows 10 Hardening Script | |
| :: This is based mostly on my own personal research and testing. My objective is to secure/harden Windows 10 as much as possible while not impacting usability at all. (Think being able to run on this computer's of family members so secure them but not increase the chances of them having to call you to troubleshoot something related to it later on). References for virtually all settings can be found at the bottom. Just before the references section, you will always find several security settings commented out as they could lead to compatibility issues in common consumer setups but they're worth considering. | |
| :: Obligatory 'views are my own'. :) | |
| :: Thank you @jaredhaight for the Win Firewall config recommendations! | |
| :: Thank you @ricardojba for the DLL Safe Order Search reg key! | |
| :: Thank you @jessicaknotts for the help on testing Exploit Guard configs and checking privacy settings! | |
| :: Best script I've found for Debloating Windows 10: https://github.com/Sycnex/Windows10Debloater | |
| : |
| # | |
| # Launches configured Graylog 2.3.1 instance | |
| # | |
| # - Docker-compose 1.16 required | |
| # - Please configure following according to your network: | |
| # * gelf-address URL (for each container) | |
| # * GRAYLOG_WEB_ENDPOINT_URI | |
| # - After launch define GELF tcp and GELF udp inputs in graylog web ui | |
| # - Containers send logging to the graylog itself | |
| # - By default tuned to 30 days retention |
Find screenshots and more info here:
https://twitter.com/alexellisuk/status/904772410620116993
Also supports:
| package sample; | |
| import java.io.InputStream; | |
| import java.io.PushbackInputStream; | |
| import java.io.InputStreamReader; | |
| import java.io.Reader; | |
| import java.io.BufferedReader; | |
| import java.util.List; | |
| import java.util.ArrayList; |
| import org.apache.catalina.LifecycleListener; | |
| import org.apache.catalina.core.AprLifecycleListener; | |
| import org.springframework.beans.factory.annotation.Value; | |
| import org.springframework.boot.context.embedded.EmbeddedServletContainerFactory; | |
| import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory; | |
| import org.springframework.context.annotation.Bean; | |
| import org.springframework.context.annotation.Configuration; | |
| /** | |
| * NOTE: You also need to install APR on your system, on Arch Linux the package is called `tomcat-native`. |
| /* | |
| To the extent possible under law, Konstantin Olkhovskiy has waived | |
| all copyright and related or neighboring rights to this snippet. | |
| CC0 license: http://creativecommons.org/publicdomain/zero/1.0/ | |
| */ | |
| package main | |
| import ( | |
| "crypto/x509" |
| ## hacked together by @JohnLaTwC, Nov 2016, v 0.5 | |
| ## This script attempts to decode common PowerShell encoded scripts. This version handles: | |
| ## * base64 data which encode unicode, gzip, or deflate encoded strings | |
| ## * it can operate on a file or stdin | |
| ## * it can run recursively in the event of multiple layers | |
| ## With apologies to @Lee_Holmes for using Python instead of PowerShell | |
| ## | |
| import sys | |
| import zlib | |
| import re |
| # Customize / optimize as necessary. | |
| # This could probably change to plain Windows Server Core as a base-image. | |
| FROM microsoft/iis:10.0.14393.206 | |
| SHELL ["powershell"] | |
| RUN Invoke-WebRequest "https://download.microsoft.com/download/9/B/B/9BB1309E-1A8F-4A47-A6C5-ECF76672A3B3/BuildTools_Full.exe" -OutFile "$env:TEMP\net.exe" -UseBasicParsing | |
| RUN & "$env:TEMP\net.exe" /Silent /Full | |
| RUN Install-WindowsFeature NET-Framework-45-ASPNET ; \ |