# Process packets despite bad checksums.
redef ignore_checksums = T;
This will change significantly with Bro 2.2 when we have the file analysis
| #include <assert.h> | |
| #include <errno.h> | |
| #include <fstab.h> | |
| #include <inttypes.h> | |
| #include <malloc.h> | |
| #include <mntent.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <sys/quota.h> |
| #!/bin/bash | |
| # WebSocket shell, start & browse to http://<Host>:6655/ | |
| # Requires bash 4.x, openssl. | |
| # Author: [email protected] (which isn't me, apk) | |
| coproc d { nc -l -p 6656 -q 0; } | |
| nc -l -p 6655 -q 1 > /dev/null <<-ENDOFPAGE | |
| HTTP/1.1 200 OK | |
| <html><head><script language="javascript"> | |
| var url = location.hostname + ':' + (parseInt(location.port) + 1); |
| This configuration is a working copy which I have tested on Apache 2.2.x and 2.4.x | |
| I highly recommend you use this version of mod_fastcgi as it works with Apache 2.4.x, fastcgi.com version does not! | |
| https://github.com/ByteInternet/libapache-mod-fastcgi | |
| The fastcgi.com version is 2.4.6, the version I am recommending registers as 2.4.7 | |
| To patch mod_fastcgi for use with Apache 2.4.x look at the debian/patches folder. It's not specific to Debian OS so don't let that fool you. I personally use Archlinux. | |
| Of course to compile mod_fastcgi: |
| #!/bin/bash | |
| #shows traffic on the specified device | |
| function human_readable { | |
| VALUE=$1 | |
| BIGGIFIERS=( B K M G ) | |
| CURRENT_BIGGIFIER=0 | |
| while [ $VALUE -gt 10000 ] ;do | |
| VALUE=$(($VALUE/1000)) |
| location / { | |
| add_header X-Cached $upstream_cache_status; | |
| .... | |
| proxy_cache_bypass $http_cache_purge; | |
| .... | |
| proxy_pass ... ; | |
| } |
Unionize lets you connect together docker containers in arbitrarily complex scenarios.
Note: I recommend to use https://github.com/jpetazzo/pipework instead.
Now if you want Unionize, it's still here. Just check those examples.
| From 83f0062d385fd4f111b31c1f26b571cabd7e0e4c Mon Sep 17 00:00:00 2001 | |
| From: Vincent Bernat <[email protected]> | |
| Date: Thu, 5 Sep 2013 16:52:45 +0200 | |
| Subject: [PATCH] EDNS0 client subnet support. | |
| --- | |
| bin/named/client.c | 227 +++++++++++++++++++++++++++++++-------- | |
| bin/named/include/named/client.h | 4 + | |
| bin/named/include/named/server.h | 81 +++++++------- | |
| bin/named/sortlist.c | 4 +- |
Graphite does two things:
What Graphite does not do is collect data for you, however there are some tools out there that know
| #!/bin/bash | |
| # You must accept the Oracle JDK License Update | |
| # https://www.oracle.com/java/technologies/javase-downloads.html | |
| # usage: get_oracle_jdk_x64.sh <jdk_version> <platform> <ext> | |
| # jdk_version: 14 | |
| # platform: linux or osx or windows | |
| # ext: rpm or dmg or tar.gz or exec | |
| jdk_version=${1:-14} |