(draft; work in progress)
See also:
- Compilers
- Program analysis:
- Dynamic analysis - instrumentation, translation, sanitizers
(draft; work in progress)
See also:
| # MacOS related | |
| .DS_Store | |
| # These files can contain private keys and/or public keys. | |
| # If you are certain that files with these extensions in your repository does not contain any private keys, | |
| # but only public keys, you can comment the rules out. | |
| *.cer | |
| *.der | |
| *.pem | |
| *.key |
https://alvinsmith.gitbook.io/progressive-oscp/untitled/vulnversity-privilege-escalation
[Unit]
Description=roooooooooot
[Service]
Type=simple
| FROM ubuntu:jammy | |
| ARG DEBIAN_FRONTEND=noninteractive | |
| ENV PATH="${PATH}:/usr/local/go/bin:/root/go/bin" | |
| WORKDIR /root | |
| RUN apt-get update -y && \ | |
| apt-get autoremove -y && \ | |
| apt-get install -y \ | |
| build-essential \ |