Server Location: /mnt/projects/repos/securevault-browser/
Developer: Barrer Software
Last Updated: 2025-10-29
SecureVault Browser is a privacy and security-focused web browser based on Chromium. It removes all Google services, telemetry, and tracking while adding enhanced security features. The browser is designed for users who want the performance of Chromium without compromising their privacy.
Status: Early Development
Target Audience: Privacy-conscious users, security professionals, organizations
- Product Page: https://barrersoftware.com/securevault
- GitHub Repository: https://github.com/barrersoftware/securevault-browser
- Releases: https://github.com/barrersoftware/securevault-browser/releases
- Documentation: See docs/ folder in repository
- No Telemetry: Complete removal of all telemetry code
- No Crash Reporting: Your browser activity stays private
- No Usage Statistics: No metrics collection
- No Account Sync: No data sent to any cloud service
- Google API keys removed
- Google DNS removed
- Google search defaults removed
- Google services integration stripped out
- Google Safe Browsing replaced with alternatives
- DNS-over-HTTPS: Encrypted DNS by default (Cloudflare 1.1.1.1)
- WebRTC IP Leak Protection: Prevents real IP exposure
- Third-Party Cookie Blocking: Blocks tracking cookies by default
- Referrer Policy: Limits referrer information
- User Agent: Configurable user agent strings
- Built-in ad blocking capabilities
- Tracking script blocking
- Fingerprinting protection
- Canvas fingerprinting defense
- WebGL fingerprinting protection
- Site Isolation: Each website runs in separate process
- Enhanced Sandboxing: Stronger process sandbox
- Renderer Process Isolation: Better renderer containment
- HTTPS-Only Mode: Prefer secure connections
- Certificate Pinning: Protect against MITM attacks
- Strict Transport Security: Force HTTPS on known sites
- Mixed Content Blocking: Block insecure content on HTTPS pages
- Safe Browsing: Malware and phishing protection (privacy-respecting)
- Download Protection: Scan downloads for threats
- Extension Security: Verify extension integrity
- Automatic security patch delivery
- Background update system
- Quick security response time
- Custom Icon: Shield with vault lock design
- Brand Colors: Blue/cyan theme (trust and technology)
- Professional Look: Clean, modern interface
- Unique Identity: Distinguishable from other Chromium browsers
- Fast page loading
- Efficient memory usage
- Hardware acceleration
- V8 JavaScript engine performance
- Extensions: Full Chrome Web Store compatibility
- Websites: Works with all standard web technologies
- Progressive Web Apps: PWA support included
- Standards Compliant: Latest web standards
- Clean, minimal design
- Familiar Chromium interface
- Customizable toolbar
- Dark mode support
- Tab management features
- Debian/Ubuntu: .deb package
- Fedora/RHEL: .rpm package
- Universal: AppImage (all distributions)
- Snap: (planned)
- Flatpak: (planned)
- Installer: MSI package
- Portable: Standalone executable (planned)
- System Requirements: Windows 10/11 64-bit
- Disk Image: .dmg package
- System Requirements: macOS 11+ (Big Sur or later)
- Apple Silicon: Universal binary (planned)
1. build-chromium.sh
- Builds from official Chromium source
- Downloads latest Chromium release
- Applies SecureVault patches
- Compiles for current platform
2. build-ungoogled.sh
- Builds from Ungoogled Chromium base
- More aggressive Google removal
- Additional privacy patches
- Community-maintained patches
3. build-branded.sh
- Applies SecureVault branding
- Replaces icons and assets
- Updates product strings
- Modifies UI elements
Debian/Ubuntu:
build-debian-package.sh- Standard buildbuild-debian-branded.sh- Branded version- Creates .deb with proper dependencies
RPM (Fedora/RHEL):
build-rpm-package.sh- Standard buildbuild-rpm-branded.sh- Branded version- Creates .rpm with spec file
AppImage:
build-appimage.sh- Universal Linux package- Single file executable
- No installation required
Windows:
build-windows.sh- Windows buildbuild-windows-msi.sh- MSI installercreate-windows-package.sh- Package creation- Cross-compilation or Windows build environment
macOS:
build-macos.sh- macOS build- Creates .dmg disk image
- Code signing (if configured)
5. build-all-packages.sh
- Builds for current platform
- Creates all package formats
- One script for complete build
6. build-all-platforms.sh
- Cross-platform building
- All operating systems
- Requires build environments
7. build-all-for-release.sh
- Complete release build
- All platforms and formats
- Quality checks
- Ready for distribution
build.sh- Quick standard buildbuild-secure.sh- Security-focused buildbuild-with-ungoogled.sh- Ungoogled basepackage-linux.sh- Linux packagingpackage-windows.sh- Windows packagingpackage-macos.sh- macOS packagingsetup.sh- Environment setuprun.sh- Test built browsergenerate-icons.sh- Icon generation
# Minimum requirements
- 100GB+ free disk space
- 32GB+ RAM recommended
- 8-12 hours build time (first build)
- Linux: Ubuntu 22.04+ or similar
- Python 3.8+
- Git
- Build tools (gcc, make, etc.)cd /mnt/projects/repos/securevault-browser
bash setup.shOption 1: Web Interface
URL: http://dev.barrersoftware.com
Login: ssfdre38 / Fairfield866
Select: Chromium or Ungoogled base
Click: "Start SecureVault Build"
Option 2: API
# Chromium base
curl -X POST http://dev.barrersoftware.com/api/build/securevault \
-H "Content-Type: application/json" \
-u ssfdre38:Fairfield866 \
-d '{"baseCode":"chromium"}'
# Ungoogled base
curl -X POST http://dev.barrersoftware.com/api/build/securevault \
-H "Content-Type: application/json" \
-u ssfdre38:Fairfield866 \
-d '{"baseCode":"ungoogled"}'Option 3: Direct Build
# Standard Chromium build
cd /mnt/projects/repos/securevault-browser
bash build-chromium.sh
# Ungoogled Chromium build
bash build-ungoogled.sh
# Build all packages
bash build-all-packages.sh# Watch build log
tail -f /mnt/projects/repos/securevault-browser/build.log
# Or via web terminal
# http://dev.barrersoftware.com/terminal/Browser Builds:
/mnt/projects/builds/chromium/
- Source code
- Compiled binaries
- Intermediate artifacts
Packages:
/mnt/projects/builds/packages/
securevault-browser_*.deb- Debian packagesecurevault-browser-*.rpm- RPM packageSecureVault-Browser-*.AppImage- AppImageSecureVault-Browser-Setup-*.msi- Windows installerSecureVault-Browser-*.dmg- macOS disk image
/mnt/projects/repos/securevault-browser/
├── README.md # Main documentation
├── PROJECT_SUMMARY.md # Project details
├── BUILD_STATUS.md # Build system status
├── QUICKSTART.md # Quick start guide
├── LICENSE # License file
├── .gitignore # Git ignore rules
├── .github/ # GitHub Actions CI/CD
│ └── workflows/
├── branding/ # SecureVault branding
│ ├── icons/ # Brand icons
│ ├── logos/ # Logos
│ └── assets/ # Other assets
├── patches/ # Chromium patches
│ ├── privacy/ # Privacy patches
│ ├── security/ # Security patches
│ └── branding/ # Branding patches
├── icons/ # Application icons
│ ├── 16x16/
│ ├── 32x32/
│ ├── 48x48/
│ ├── 128x128/
│ └── 256x256/
├── builds/ # Local build output
├── docs/ # Documentation
│ ├── BRANDING.md
│ ├── BUILDING.md
│ └── CONTRIBUTING.md
├── arch/ # Architecture-specific
├── build-*.sh # Build scripts (20+)
├── package-*.sh # Packaging scripts
├── setup.sh # Setup script
├── run.sh # Test runner
├── generate-icons.sh # Icon generator
├── setup-secureos-repo.sh # Repo setup
├── CREATED_FILES.txt # File inventory
└── ICON_REFERENCE.txt # Icon documentation
Shield with Vault Lock Icon
- 🛡️ Shield: Security and protection
- 🔐 Vault Lock: Privacy and data security
- Modern, professional appearance
- Primary: Blue (#0066CC)
- Secondary: Cyan (#00A4D3)
- Accent: Dark Blue (#003366)
- Text: White on dark, dark on light
- 16x16 - Taskbar/tabs
- 32x32 - Small icons
- 48x48 - Standard size
- 128x128 - Large icons
- 256x256 - High resolution
- SVG - Scalable vector
SecureVault Browser
- Emphasis on security (Secure)
- Emphasis on privacy (Vault)
- Clear product type (Browser)
Debian/Ubuntu (.deb):
# Download package
wget https://github.com/barrersoftware/securevault-browser/releases/latest/download/securevault-browser_amd64.deb
# Install
sudo dpkg -i securevault-browser_amd64.deb
sudo apt-get install -f # Fix dependencies
# Launch
securevault-browserFedora/RHEL (.rpm):
# Download package
wget https://github.com/barrersoftware/securevault-browser/releases/latest/download/securevault-browser.x86_64.rpm
# Install
sudo dnf install securevault-browser.x86_64.rpm
# Launch
securevault-browserAppImage (Universal):
# Download
wget https://github.com/barrersoftware/securevault-browser/releases/latest/download/SecureVault-Browser.AppImage
# Make executable
chmod +x SecureVault-Browser.AppImage
# Run
./SecureVault-Browser.AppImage# Download MSI installer from releases page
# Run installer
# Accept defaults or customize install location
# Launch from Start Menu or Desktop# Download DMG from releases page
# Open DMG
# Drag SecureVault Browser to Applications
# Launch from Applications folderRecommended Settings:
Settings → Privacy and Security
✓ Send "Do Not Track" request
✓ Block third-party cookies
✓ Use DNS-over-HTTPS
✓ WebRTC IP leak protection
✗ Disable telemetry (already disabled)
Settings → Security
✓ Safe Browsing enabled
✓ Warn about dangerous downloads
✓ HTTPS-Only mode
✓ Certificate transparency
User Preferences (chrome://settings):
- Default search engine
- Homepage and startup
- Downloads location
- Appearance theme
- Extensions management
Flags (chrome://flags):
- Enable experimental features
- Privacy enhancements
- Performance options
# Unit tests
cd /mnt/projects/repos/securevault-browser
bash run-tests.sh
# Manual testing
bash run.sh# Launch with debugging
securevault-browser --enable-logging --v=1- F12 or Ctrl+Shift+I
- Network inspector
- JavaScript console
- Performance profiler
- Engine: Chromium (Blink + V8)
- Version: Latest stable Chromium
- Update Cycle: Monthly security updates
Minimum:
- CPU: 1 GHz processor
- RAM: 2 GB
- Disk: 500 MB
- OS: Linux (2.6.32+), Windows 10, macOS 11
Recommended:
- CPU: 2 GHz dual-core
- RAM: 4 GB
- Disk: 1 GB
- OS: Latest stable OS version
- Repository structure
- Custom branding and icons
- GitHub Actions CI/CD
- Build scripts for all platforms
- Basic privacy patches
- Binary-based build system
- Complete privacy patch set
- Automated testing
- Package signing
- Auto-update mechanism
- Extension marketplace
- Mobile versions (Android/iOS)
- Version 1.0.0 release
- Fork the repository
- Create feature branch
- Make changes
- Test thoroughly
- Submit pull request
- Privacy patches
- Security enhancements
- UI improvements
- Documentation
- Testing
- Translations
- Email: privacy@barrersoftware.com
- GitHub Issues: https://github.com/barrersoftware/securevault-browser/issues
- Website: https://barrersoftware.com
- Documentation: See docs/ folder
SecureVault Browser is licensed under the BSD 3-Clause License.
Copyright © 2025 Barrer Software
Chromium is licensed under the BSD license and other licenses. See LICENSE file for complete license information.
- SecureOS: Privacy-focused Linux distribution
- VelocityPanel: Web hosting control panel
- AI Security Scanner: Automated security scanning
- QUICKSTART.md - Quick start guide
- BUILD_STATUS.md - Build system details
- PROJECT_SUMMARY.md - Complete project info
- docs/BRANDING.md - Branding guidelines
- docs/BUILDING.md - Build instructions
- docs/CONTRIBUTING.md - Contribution guide
Project maintained by Barrer Software
For more information visit: https://barrersoftware.com