One Hat Cyber Team
Your IP :
3.23.129.146
Server IP :
87.118.122.21
Server :
Linux svdm-server5.de 6.1.0-17-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.69-1 (2023-12-30) x86_64
Server Software :
Apache
PHP Version :
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
users
/
svd-saarleute
/
www
/
_go_biz
/
app
/
Classes
/
View File Name :
GoBizUpdater800.php
<?php namespace App\Classes; use Illuminate\Support\Facades\DB; class GoBizUpdater800 { public function runUpdate() { DB::statement("UPDATE `business_cards` SET `cover_type` = 'photo' WHERE `cover_type` IS NULL"); DB::statement("INSERT INTO `config` (`config_key`, `config_value`) VALUES ('show_whatsapp_chatbot', '0'), ('whatsapp_chatbot_mobile_number', '919876543210')"); DB::statement("INSERT INTO `config` (`config_key`, `config_value`) VALUES ('whatsapp_chatbot_message', 'Hello, I need some information ')"); DB::statement("INSERT INTO `config` (`config_key`, `config_value`) VALUES ('disable_user_email_verification', '0')"); DB::statement("INSERT INTO `config` (`config_key`, `config_value`) VALUES ('merchantId', 'YOUR_PHONEPE_MERCHANT_ID'), ('saltKey', 'YOUR_PHONEPE_SALT_KEY')"); DB::statement("INSERT INTO `gateways` (`payment_gateway_id`, `payment_gateway_logo`, `payment_gateway_name`, `display_name`, `client_id`, `secret_key`) VALUES ('19065566166715', '/backend/img/payment-method/phonepe.png', 'PhonePe', 'PhonePe', '18', '19')"); } }