Linux 5474007-topit 5.15.0-126-generic #136-Ubuntu SMP Wed Nov 6 10:38:22 UTC 2024 x86_64
Apache/2.4.52 (Ubuntu)
: 85.198.82.39 | : 216.73.216.129
Cant Read [ /etc/named.conf ]
8.3.30
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
back /
app /
Imports /
[ HOME SHELL ]
Name
Size
Permission
Action
AccountImport.php
972
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AccountImport.php
<?php namespace App\Imports; use App\Models\Account; use App\Models\Organization; use Carbon\Carbon; use Maatwebsite\Excel\Concerns\ToModel; use Maatwebsite\Excel\Concerns\WithStartRow; class AccountImport implements ToModel, WithStartRow { public function startRow(): int { return 2; } public function model(array $row) { if (isset($row[8])) { $organization = Organization::query()->firstOrCreate(['model_id' => 3, 'full_name' => $row[8]]); } if (isset($row[11]) == 'Да') { $archive = true; } return new Account([ 'model_id' => 3, 'name' => $row[0], 'number' => $row[1], 'balance_of_the_date' => $row[2], 'organization_id' => $organization->id ?? null, 'archived' => $archive ?? false, 'added' => Carbon::parse($row[3])->format('Y-m-d'), 'deposit' => 0 ]); } }
Close