So HAProxy is primalery a load balancer an proxy for TCP and HTTP. But it may act as a traffic regulator. It may also be used as a protection against DDoS and service abuse, by maintening a wide variety of statistics (IP, URL, cookie) and when abuse is happening, action as denying, redirecting to other backend may undertaken ([haproxy ddos config], [haproxy ddos])
2019-06-03
Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ensure the leaf corresponds to the private key and matches the certKey type | |
| func (v *validateCert) validateLeaf(hello *tls.ClientHelloInfo, leaf *x509.Certificate, key crypto.Signer) (*x509.Certificate, error) { | |
| isRSA := !v.supportsECDSA(hello) | |
| switch pub := leaf.PublicKey.(type) { | |
| case *rsa.PublicKey: | |
| prv, ok := key.(*rsa.PrivateKey) | |
| if !ok { | |
| return nil, errors.New("private key type does not match public key type") | |
| } | |
| if pub.N.Cmp(prv.N) != 0 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib2 | |
| import urllib | |
| import ConfigParser | |
| import sys | |
| def post_to_kippt(config_filename): | |
| config = ConfigParser.ConfigParser() | |
| link="https://techieb.tk" | |
| description="way too awesome" | |
| title="Awesome!" |