| layout | title | published | tags | ||
|---|---|---|---|---|---|
post |
clamav - install and configure on mac osx |
true |
|
Install clamav via homebrew
Information in this Gist originally from this github issue, which is outdated.
As @RomanMinkin mentioned, you can also consider Casbin (https://github.com/casbin/casbin). It is the most starred authorization library in Golang. There are several differences between Casbin and OPA.
| Feature | Casbin | OPA |
|---|---|---|
| Library or service? | Library/Service | Library/Service |
| How to write policy? | Two parts: model and policy. Model is general authorization logic. Policy is concrete policy rule. | A single part: Rego |
| RBAC hierarchy | Casbin supports role hierarchy (a role can have a sub-role) | Role hierarchies can be encoded in data. Also with the new graph.reachable() built-in function queries over those hierarchies are much more feasible now. |
| RBAC separation of duties | Not supported | Supported: two roles cannot be assigned together |
https://github.com/wazuh/wazuh | wazuh/wazuh: Wazuh - The Open Source Security Platform. Unified XDR and SIEM protection for endpoints and cloud workloads.
https://github.com/nucleuscloud/neosync?rdt_cid=4751547372092561632 | nucleuscloud/neosync: Open source data anonymization and synthetic data orchestration for developers. Create high fidelity synthetic data and sync it across your environments.
https://github.com/in-toto/in-toto | in-toto/in-toto: in-toto is a framework to protect supply chain integrity.
https://github.com/kubescape/kubescape | kubescape/kubescape: Kubescape is an open-source Kubernetes security platform for your IDE, CI/CD pipelines, and clusters. It includes risk analysis, security, compliance, and misconfiguration scanning, saving Kubernetes users and administrators precious time, effort, and resources.
MVT is a tool from https://github.com/mvt-project/mvt
Create an encrypted backup [Cause that includes more stuff.] https://support.apple.com/en-us/HT205220
libimobiledevice looks to be needed only on linux, but what the heck
brew install --HEAD libimobiledevice
Might be already present!
brew install python3 libusb sqlite3
| #Random | |
| curl http://$boseip:8090/info | xmllint --format - | |
| curl http://$boseip:8090/presets | xmllint --format - | |
| #Whats playing | |
| curl "http://$boseip:8090/now_playing" | xmllint --format - | grep track | sed -e 's/<\/\{0,1\}track>//g' | |
| #Volume | |
| curl http://$boseip:8090/volume | xmllint --format - | grep actual | sed -e 's/<\/\{0,1\}actualvolume>//g' | |
| #Update Volume | |
| curl -H "Accept:application/json" -XPOST --data "<volume>40</volume>'" http://$boseip:8090/volume |
| env: | |
| TERM: xterm-256color | |
| window: | |
| dimensions: | |
| columns: 80 | |
| lines: 24 | |
| padding: | |
| x: 2 |
| From 2063aad860376419d899d1ae06ccb7daf56ef9ef Mon Sep 17 00:00:00 2001 | |
| From: Jaesup Kwak <[email protected]> | |
| Date: Mon, 4 Dec 2017 21:23:19 +0900 | |
| Subject: [PATCH] Support xwidget webkit for macOS X | |
| Add xwidget webkit support for macOS X / NS Cocoa and accompanying | |
| changes. | |
| Squash changes for comments from Alan Third in Bug#29565. |
| #!/usr/bin/env bash | |
| cd $CHEF_INFRA_HOME/infrastructure;knife search node -a ipaddress "name:*p-* and chef_environment:production" | sed -e ':a' -e 'N' -e '$!ba' -e "s/:\n ipaddress:/ /g" | sed -e '/^\s*$/d' | awk '{print $2" "$1}'> /usr/local/etc/chef_hosts | |
| cat /usr/local/etc/chef_hosts | awk '{print "host "$2"\n hostname " $1 "\n user ubuntu\n port 22\n IdentityFile ~/.ssh/id_rsa\n"}' > /usr/local/etc/ssh_config/chef |
| #!/usr/bin/env bash | |
| TOKEN=$(yubioath show $1 | sed "/$1/ s/[a-z ]*//g") | |
| read -r -d '' SCRIPT_TEMPLATE <<-'END' | |
| tell application "Tunnelblick"NL | |
| connect "$PROFILE"NL | |
| delay 1NL | |
| tell application "System Events"NL | |
| keystroke $TOKENNL | |
| delay 1NL |