ForgeRock is a continuation of Sun Microsystems’ OpenSSO Enterprise (containing technologies from iPlanet/Sun ONE/DSEE, Glassfish AS, etc.). Open source components are available as OpenAM (https://github.com/OpenIdentityPlatform/OpenAM/releases). SentinelOne is a security platform supporting SAML SSO.

podman run -v /tmp:/tmp -it docker.io/gentoo/stage3:musl /bin/bashwget https://www.netfilter.org/projects/libnftnl/files/libnftnl-1.2.1.tar.bz2wget https://www.netfilter.org/projects/libmnl/files/libmnl-1.0.4.tar.bz2wget https://www.netfilter.org/projects/iptables/files/iptables-1.8.7.tar.bz2for f in $(ls *.tar.bz2); do tar -xvf $f; donecd libmnl-1.0.4
./configure --enable-static --disable-shared --prefix=/usr
make LDFLAGS="--static"
make install
cd ..cd libnftnl-1.2.1
./configure --enable-static --disable-shared --prefix=/usr
make LDFLAGS="--static"
make install
cd ..cd iptables-1.8.7
./configure --enable-static --disable-shared
make LDFLAGS="--static"
make install
cd ..cp /usr/local/sbin/xtables* /tmp/
Sometimes you need to run forensic tools in the cloud, but you can’t just use ISO. Caine Linux used to be a first choice tool, however to boot it in the cloud we need a bare metal EC2 instance or a nested virtualization on an Azure VM. The easiest solution may be converting the Caine ISO image to a docker image.
mkdir /tmp/iso
mkdir /tmp/caine
mount -o loop /home/user/Downloads/caine12.0_beta02.iso /tmp/iso/
mount -t squashfs /tmp/iso/casper/filesystem.squashfs /tmp/caine/
cd /tmp
tar -C caine/ -c . | docker import - digitalforensic/caine12b2
docker push digitalforensic/caine12b2Using default tag: latestThe push refers to repository [docker.io/digitalforensic/caine12b2]a167fb3aa5b0: Pushing [====================================] 13.85GB
a167fb3aa5b0: Pushedlatest: digest: sha256:97b2387451227ad25667ff52f4b6ec61c614a860f64bbe22e083a5090a1280a3 size: 530docker run — name caine -it digitalforensic/caine12b2 /bin/bash