shell bypass 403

GrazzMean Shell

: /home/gutlooks/www/instamojo/ [ drwxr-xr-x ]
Uname: Linux server.thebazaar99.com 5.14.0-687.17.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jun 22 07:21:26 EDT 2026 x86_64
Software: Apache
PHP version: 8.3.32 [ PHP INFO ] PHP os: Linux
Server Ip: 163.227.92.254
Your Ip: 216.73.217.24
User: gutlooks (1003) | Group: gutlooks (1005)
Safe Mode: OFF
Disable Function:
exec,passthru,shell_exec,system

name : main.php
<?php

require_once __DIR__ . '/vendor/autoload.php';

    $instaobj = Instamojo\Instamojo::init('app',[
        "client_id" =>  $_ENV["CLIENT_ID"],
        "client_secret" => $_ENV["CLIENT_SECRET"]
       
    ],true);
 
    
    // $transaction_id = "TEST_".time();
    // var_dump([
    //     "name" => "XYZ",
    //     "email" => "xyz@squareboat.com",
    //     "phone" => "9999999988",
    //     "amount" => 200,
    //     "transaction_id" => $transaction_id,
    //     "currency" => "INR"
    // ]);

    $payment_request = $instaobj->createPaymentRequest([
        'amount'=>10,
        'purpose'=>"Test script"
        ]);
        var_dump($payment_request['id']);
        try{
    $gateway_order = $instaobj->createGatewayOrderForPaymentRequest(
        "292e38e570794fa592ccf74cc84c8fda",
        [
        "name" => "XYZ",
        "email" => "xyz@squareboat.com",
        "phone" => "9999999988",
        // "amount" => 200,
        // "transaction_id" => $transaction_id,
        // "currency" => "INR"
    ]);
        
    var_dump(json_encode($gateway_order));
    }catch(Exception $e){
            print('Error: ' . $e->getMessage());
        }

?>
© 2026 GrazzMean