- High level introductions:
- The three levels of confidential computing | Edgeless Systems
- Why Should I Trust Your Code? | annotated by JMP (readwise.io)
- Common-Terminology-for-Confidential-Computing | annotated by JMP (readwise.io)
- CCC-A-Technical-Analysis-of-Confidential-Computing-v1.3_unlocked | annotated by JMP (readwise.io)
- Video: Mark Russinovich's [Confidential Computing Elevating Cloud Security and Privacy](https://www.youtube.com/watch?app=desktop&v=H1TWoebepa
This file contains 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
#!/bin/sh | |
# See: https://hackmd.io/@aeva/draft-gitbom-spec | |
# Also see: https://gist.github.com/bureado/0e4b53e90ac1263b7c5ed908dbe2cb50 | |
# Today I would look at witness, tracee, and many others. | |
# TODO: make sure $BUILDDIR is a --git-dir | |
BUILDDIR=$1 | |
TIMEOUT=5 |
This file contains 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
#!/bin/sh | |
# Video: https://www.youtube.com/watch?v=Rv4ZlbMb1pE&list=PL9GzfK3UKP1vOcUkp3ayByoBY2pT641YN&index=3 | |
# Usage: ./hash-to-buildinfo.sh <.deb package> | |
# Works with deb packages obtained from a Debian archive | |
# Assumes rekor CLI is in ./ | |
# This all exists because https://unix.stackexchange.com/a/612931 | |
# https://unix.stackexchange.com/a/673157 |
This file contains 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
#!/bin/bash | |
# Also see: https://gist.github.com/bureado/16df777c1f9883ef919a5cc0c30eaba3 | |
case "$1" in | |
init) | |
# Install dependencies | |
sudo apt update && sudo apt install jq auditd -y | |
# Start auditd | |
sudo systemctl start auditd.service |
OlderNewer