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`;
}