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
FROM scratch | |
COPY --from=alpine:latest /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ | |
COPY --from=builder /your/binary /somewhere/binary |
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
# System-wide .bashrc file for interactive bash(1) shells. | |
if [ -z "$PS1" ]; then | |
return | |
fi | |
PS1='\h:\W \u\$ ' | |
# Make bash check its window size after a process completes | |
shopt -s checkwinsize | |
[ -r "/etc/bashrc_$TERM_PROGRAM" ] && . "/etc/bashrc_$TERM_PROGRAM" |
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
Original story: https://www.phoronix.com/scan.php?page=news_item&px=Clang-Linux-RandStruct | |
LLVM/Clang | |
https://github.com/llvm/llvm-project/commit/3f0587d0c668202bb89d29a25432aa290e551a31 | |
https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git/log/?h=for-next/randstruct | |
https://lists.llvm.org/pipermail/cfe-dev/2019-March/061607.html | |
GCC: | |
https://www.openwall.com/lists/kernel-hardening/2017/04/06/14 | |
https://hardenedlinux.github.io/system-security/2016/08/01/reproducbile-builds-for-pax-grsecurity.html |
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
C:\>robocopy /? | |
------------------------------------------------------------------------------- | |
ROBOCOPY :: Robust File Copy for Windows | |
------------------------------------------------------------------------------- | |
Started : Tuesday, April 5, 2022 17:35:18 | |
Usage :: ROBOCOPY source destination [file [file]...] [options] | |
source :: Source Directory (drive:\path or \\server\share\path). |
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
S. Korean cryptocurrency exchange Klayswap was attacked and had cryptocurrency stolen. | |
The attackers compromised a third-party customer service messaging tool developers.kakao.com via BGP hijack, after taking control | |
over the IP address block, the attacker used domain validation to acquire a TLS certificate from a public issuer, ZeroSSL. The target | |
did not have a Certificate Authorization Authority DNS record, which may have mitigated this attack. | |
The fraudulent certificates can be seen here: | |
https://crt.sh/?q=developers.kakao.com | |
Sources: |
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
Following the instructions on https://github.com/PintaProject/Pinta | |
On ChromeOS the default LXC container Penguin is a very minimal install of | |
Debian 11 Bullseye. It is a good practice to start by doing an apt update and | |
upgrade, also you may be missing some basic build software, so we will install | |
several basic software packages to get started: | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install -y autotools-dev autoconf-archive build-essential gcc gettext |