Hub: credentials removed, NonReg v6 link, auth whitelist updated, test files cleaned
This commit is contained in:
@@ -34,11 +34,7 @@ a.link .tag{font-family:'JetBrains Mono',monospace;font-size:.55rem;padding:2px
|
||||
<h1>WEVAL HUB</h1>
|
||||
<div class="sub">All Servers • All Screens • All Access</div>
|
||||
</div>
|
||||
<div class="creds">
|
||||
🔑 ADX Login: <b>yacine@wevads.com</b> / <b>Weval@2026</b> |
|
||||
MailStream: <b>ymahboub</b> / <b>Weval@2026</b> |
|
||||
S88 Panel: <b>yacine</b> / <b>Yac1ne@Wev2026Sec</b>
|
||||
</div>
|
||||
<div style="text-align:center;padding:8px;color:#475569;font-size:12px">🔑 Credentials: See Vault | 4 Servers Active</div>
|
||||
|
||||
<!-- S95 (ex-S89) -->
|
||||
<div class="srv">
|
||||
@@ -59,7 +55,7 @@ S88 Panel: <b>yacine</b> / <b>Yac1ne@Wev2026Sec</b>
|
||||
<a class="link" href="http://<?=$S95?>:5821/tracking-dashboard.php" target="_blank"><span class="ico">📈</span><span class="nm">Tracking Dashboard</span><span class="tag track">track</span></a>
|
||||
<a class="link" href="http://<?=$S95?>:5821/tracking-system-standalone.php" target="_blank"><span class="ico">🎯</span><span class="nm">Tracking System</span><span class="tag track">track</span></a>
|
||||
<a class="link" href="http://<?=$S95?>:5821/tracking-deploy.php" target="_blank"><span class="ico">🚀</span><span class="nm">Tracking Deploy</span><span class="tag track">track</span></a>
|
||||
<a class="link" href="http://<?=$S95?>:5821/nonreg-master-v5.php" target="_blank"><span class="ico">🎯</span><span class="nm">NonReg Master v5</span><span class="tag sec">sec</span></a>
|
||||
<a class="link" href="http://<?=$S95?>:5821/nonreg-master-v6.php" target="_blank"><span class="ico">🎯</span><span class="nm">NonReg Master v6</span><span class="tag sec">sec</span></a>
|
||||
<a class="link" href="http://<?=$S95?>:5821/ultimate-dashboard.php" target="_blank"><span class="ico">📊</span><span class="nm">Ultimate Dashboard</span><span class="tag sec">sec</span></a>
|
||||
<a class="link" href="http://<?=$S95?>:5821/lookalike-engine.html" target="_blank"><span class="ico">🧬</span><span class="nm">Lookalike Engine</span><span class="tag db">db</span></a>
|
||||
<a class="link" href="http://<?=$S95?>:5821/scrapping-factory.html" target="_blank"><span class="ico">🕷️</span><span class="nm">Scrapping Factory</span><span class="tag db">db</span></a>
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
<?php
|
||||
error_reporting(-1);
|
||||
ini_set('display_errors', 1);
|
||||
set_time_limit(300);
|
||||
header('Content-Type: text/html; charset=utf-8');
|
||||
echo "<!--START-->";
|
||||
$tests = [];
|
||||
$pass = 0;
|
||||
$fail = 0;
|
||||
|
||||
function test($cat, $name, $ok, $detail = '') {
|
||||
global $tests, $pass, $fail;
|
||||
$ok = (bool)$ok;
|
||||
$tests[] = ['cat' => $cat, 'name' => $name, 'ok' => $ok, 'detail' => $detail];
|
||||
if ($ok) $pass++; else $fail++;
|
||||
}
|
||||
|
||||
function port($host, $port, $timeout = 5) {
|
||||
$c = @fsockopen($host, $port, $e, $es, $timeout);
|
||||
if ($c) { fclose($c); return true; }
|
||||
return false;
|
||||
}
|
||||
|
||||
test('S95', 'Apache 5821', port('127.0.0.1', 5821), '');
|
||||
test('S95', 'Apache 5890', port('127.0.0.1', 5890), '');
|
||||
test('S95', 'PG 5432', port('127.0.0.1', 5432), '');
|
||||
|
||||
echo "<pre>";
|
||||
echo "Tests: " . count($tests) . " Pass: $pass Fail: $fail\n";
|
||||
foreach ($tests as $t) {
|
||||
echo ($t['ok'] ? 'PASS' : 'FAIL') . " [{$t['cat']}] {$t['name']} {$t['detail']}\n";
|
||||
}
|
||||
echo "</pre>";
|
||||
@@ -1,9 +0,0 @@
|
||||
<?php
|
||||
echo "A";
|
||||
error_reporting(-1);
|
||||
ini_set('display_errors', 1);
|
||||
echo "B";
|
||||
$pg = @pg_connect("host=127.0.0.1 dbname=adx_system user=admin password=admin123");
|
||||
echo $pg ? "C" : "D";
|
||||
echo curl_init() ? "E" : "F";
|
||||
echo "G";
|
||||
@@ -1 +0,0 @@
|
||||
<?php error_reporting(-1); ini_set(display_errors,1); include /opt/wevads/public/nonreg-master-v6.php;
|
||||
Reference in New Issue
Block a user