Files
html/an.dat
2026-04-12 22:57:03 +02:00

10 lines
453 B
Plaintext

<?php
$f="/opt/wevads-arsenal/public/ethica-app-v3.html";
$c=file_get_contents($f);
$target='onclick="go('.chr(39).'consent'.chr(39).')">';
$insert='<div class="nav-item" onclick="go('.chr(39).'send'.chr(39).')">&#9889; <span>Send Engine</span><span class="badge badge-new">NEW</span></div>'."\n";
if(strpos($c,"Send Engine")===false){
$c=str_replace($target,$insert.$target,$c);
file_put_contents($f,$c);echo "ADDED ".strlen($c);
}else{echo "EXISTS";}