DUBBLES VUID API

00:00:00 --/--/----
Português
English
Español

BEM-VINDO AO PAINEL DUBBLES VUID API

Gerencie seus temas de conexão, injete APIs, autentique remotamente e envie notificações em tempo real. Sistema inteligente de injeção direta no código fonte do cliente.

1. TEMA HTML DO CLIENTE

O sistema já iniciou com um tema Base de Alta Conversão emulado no celular. Se preferir, importe outro.

2. INJETAR ENGINE (PHP)

Injeta a estrutura CSS/JS criptografada no HTML de forma invisível. Necessário para habilitar Notificações, Controles Remotos e Bloqueios.

3. BUILDER DE NOTIFICAÇÕES (AVANÇADO)

FUNDO
TEXTO
Fechar Automático (Timer)

4. TELA DE BLOQUEIO / SUSPENSÃO

A cor de fundo e opacidade herdam das configurações de notificação acima para manter o padrão do App.

ATIVAR BLOQUEIO TELA CHEIA

5. CONTROLES REMOTOS (AÇÃO)

Dispare ações remotas para os aplicativos conectados. Isso forçará os inputs do tema emulado no celular.

Selecione uma Ação (Status)

APIs Injetáveis de Alta Compatibilidade

COMPATIBILIDADE GARANTIDA COM OS MELHORES THEMAS

Nossa engine VUID API se adapta perfeitamente, sem quebrar o layout original dos aplicativos listados abaixo.

DT DTunnel Mod
VP Void Pro
HT HoxTunnel

Arquitetura de Endpoints (Protegido)

https://api.dubbles.void.html/v3/secure/api/bridge_system_master_v1
PHP Backend
<?php // Payload Encryption $iv = openssl_random_pseudo_bytes(16); $enc = openssl_encrypt( json_encode($data), 'AES-256-GCM', $secretKey, 0, $iv, $tag ); echo json_encode([ 'hash' => base64_encode($enc) ]); ?>
Client Inject
// Escuta de Notificação window.addEventListener( 'message', async (e) => { if(e.data.type === 'DT_PUSH'){ let payload = await crypto.subtle.decrypt( {name: "AES-GCM", iv: e.data.iv}, key, e.data.payload ); __DTRender(payload); } });
Live Socket (Typewriter)