🎯 For a live USB Linux distribution designed for the National Child Protection Task Force (NCPTF), whose primary goal is to operate entirely in memory (RAM) to prevent any child sexual abuse material (CSAM) from being written to disk, and which includes tools to help interact with images for law enforcement.
- 🛒 Purchase a USB drive of at least 8GB.
- ⬇️ Download RAMSAFE from Not Downloadable yet, 🔐 SHA256 hash of .iso is
2d2348d3aeca13fa4741e708ba80a31bcde58417683af945aa6da3d38e0bdb02(This build guide works but there is not a site for storage. Contact NCPTF for a copy) - 🔐 Check the hash of the .iso to make sure it matches the expected value:
For Linux/macOS (bash):
Option 1 - Use the verification script:
# Run the verification script (replace with your actual ISO path)
./bin/verify_iso.sh ~/Downloads/ramsafe.isoOption 2 - Manual verification:
echo "Expected: 2d2348d3aeca13fa4741e708ba80a31bcde58417683af945aa6da3d38e0bdb02"
CALCULATED=$(sha256sum ramsafe.iso | cut -d' ' -f1)
echo "Calculated: $CALCULATED"
if [ "$CALCULATED" = "2d2348d3aeca13fa4741e708ba80a31bcde58417683af945aa6da3d38e0bdb02" ]; then
echo "✅ VERIFICATION PASSED - ISO is authentic"
else
echo "❌ VERIFICATION FAILED - DO NOT USE THIS ISO"
fiFor Windows (PowerShell):
Option 1 - Use the verification script:
# Run the verification script (replace with your actual ISO path)
.\bin\verify_iso.ps1 "C:\Downloads\ramsafe.iso"N.B. You might need to run the following to run a powershell script
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUserOption 2 - Manual verification:
$expected = "2d2348d3aeca13fa4741e708ba80a31bcde58417683af945aa6da3d38e0bdb02"
$calculated = (Get-FileHash "ramsafe.iso").Hash.ToLower()
Write-Host "Expected: $expected"
Write-Host "Calculated: $calculated"
if ($calculated -eq $expected) {
Write-Host "✅ VERIFICATION PASSED - ISO is authentic" -ForegroundColor Green
} else {
Write-Host "❌ VERIFICATION FAILED - DO NOT USE THIS ISO" -ForegroundColor Red
}- 🔌 Plug in USB drive.
- 🔥 Use a tool like RUFUS if you are in Windows or Startup Disk Creator for Linux (this may require an install of new software in Ubuntu) to load the RAMSAFE.iso to USB.
- 🔄 Reboot machine.
- ⌨️ While rebooting press the Boot time menu (F12 for Dell)
- 🖥️ Follow Prompts for keyboard and network.
- ❌ No need to update installer as you are not installing this os. WARNING if you select install and follow though it will erase your hard-drive
- ✅ Select try (no need to select install)
- 💻 This loads a whole new Operating system
- 🕵️ Help investigate CSAM perpetrators
- 📧 Send tips to law enforcement
- 🧠 While you work, all work is in memory so it is not kept and it does not write anything to disk
- 🔄 Reboot machine.
- 🔌 Remove USB.
- ✅ Original operating system is untouched.
📝 Note: This will boot on most machines. It will not work on the newer Mac Machines that use the M series chips as they are ARM based.
Please go to the User Guide 🛠️
Please go to the Build Guide 📋
Encountering issues? Check our comprehensive Troubleshooting Guide for:
- Common error solutions
- Input validation problems
- Network and download issues
- Dependency problems
- Performance optimization
- Error code reference
Run the test suite to verify RAMSAFE functionality:
# Run all tests
./tests/run_tests.sh
# Install bats testing framework if needed
./tests/run_tests.sh --install-bats
# Run tests with verbose output
./tests/run_tests.sh --verbose