💎 Full Source Code Access

Available exclusively for Enterprise license holders

Verify Your Access

Enter your Enterprise license key to access the complete VNCme source code.

🔧
Full Customization
Modify every aspect of VNCme to fit your needs. Change branding, add features, adjust performance.
🏗️
Build Your Own
Compile and distribute your own branded version. Create custom builds for different use cases.
🔍
Learn & Understand
Study the complete implementation. Understand how screen capture, WebSockets, and licensing work.
🚀
Deploy Anywhere
Host on your own infrastructure. No dependencies on external services or APIs.
🔐
Security Audit
Review the entire codebase for security. Meet compliance requirements with full transparency.
💼
Commercial Rights
Use in your commercial products. Build SaaS solutions or integrate into your software stack.

Want Source Code Access?

Upgrade to an Enterprise license today

Contact Sales
const verifyBtn = document.getElementById('verify-btn'); const licenseInput = document.getElementById('license-key-input'); const accessDenied = document.getElementById('access-denied'); const accessGranted = document.getElementById('access-granted'); const downloadSection = document.getElementById('download-section'); verifyBtn.addEventListener('click', async () => { const licenseKey = licenseInput.value.trim(); if (!licenseKey) { alert('Please enter a license key'); return; } verifyBtn.disabled = true; verifyBtn.textContent = 'Verifying...'; accessDenied.style.display = 'none'; accessGranted.style.display = 'none'; try { // Check if license exists and is enterprise const licenseDoc = await db.collection('licenses').doc(licenseKey).get(); if (!licenseDoc.exists) { accessDenied.style.display = 'block'; accessDenied.querySelector('p').textContent = 'License key not found. Please check your key and try again.'; } else { const license = licenseDoc.data(); if (license.type === 'enterprise') { // Access granted! accessGranted.style.display = 'block'; downloadSection.style.display = 'block'; // Log access await db.collection('sourceCodeAccess').add({ licenseKey: licenseKey, timestamp: firebase.firestore.FieldValue.serverTimestamp(), userAgent: navigator.userAgent }); // Scroll to download section setTimeout(() => { downloadSection.scrollIntoView({ behavior: 'smooth', block: 'start' }); }, 500); } else { accessDenied.style.display = 'block'; } } } catch (error) { console.error('Verification error:', error); alert('Error verifying license. Please try again.'); } finally { verifyBtn.disabled = false; verifyBtn.textContent = 'Verify License'; } }); // Allow Enter key to verify licenseInput.addEventListener('keypress', (e) => { if (e.key === 'Enter') { verifyBtn.click(); } });