📜 Enterprise Certificates

Download and install certificates for app signing

📦 All Certificates (Bundle)

172 KB • 15 Certificates

Download all 15 enterprise certificates in one zip file. Install multiple certificates to your iPhone for easy recovery if one gets revoked.

Download All Certificates

📖 How to Install Certificates

  1. Download certificates.zip on your iPhone
  2. Open Files app → Go to Downloads
  3. Tap certificates.zip to extract
  4. Open ESign app → Certificates tab
  5. Import .p12 files (Password: WSF)
  6. Import corresponding .mobileprovision files

Certificate Recovery Method

How It Works: Install ONE certificate to your iPhone. Set it as "Currently Installed" in the Admin Panel. All apps will automatically sign with your selected certificate.

If DNS Leak: Download a different certificate, install to iPhone, update Admin Panel selection, and re-sign all apps with one click. Recovery in ~5 minutes.

Individual Certificates

Download certificates individually if needed • Password: WSF

Loading certificates...

Note: More certificates available in the bundle download. Password for all P12 files: WSF

// Sidebar Toggle function toggleSidebar() { const sidebar = document.getElementById('sidebar'); const overlay = document.getElementById('overlay'); sidebar.classList.toggle('active'); overlay.classList.toggle('active'); } // Theme Switching function toggleTheme() { const html = document.documentElement; const currentTheme = html.getAttribute('data-theme'); const newTheme = currentTheme === 'dark' ? 'light' : 'dark'; html.setAttribute('data-theme', newTheme); localStorage.setItem('theme', newTheme); } // Load saved theme window.addEventListener('DOMContentLoaded', () => { const savedTheme = localStorage.getItem('theme') || 'dark'; document.documentElement.setAttribute('data-theme', savedTheme); }); // Download individual certificate function downloadCert(certName) { // In production, this would download from VPS alert(`Download ${certName} certificate\n\nP12 & mobileprovision files will be downloaded.\nPassword: WSF`); // window.location.href = `/downloads/certificates/${certName}.zip`; }