!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/tests/Feature/   drwxr-xr-x
Free 28.25 GB of 117.98 GB (23.95%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

use App\Models\AdReportCategory;
use 
App\Models\User;
use 
Illuminate\Foundation\Testing\RefreshDatabase;

uses(RefreshDatabase::class);

test('user can report an ad', function () {
    
// Create a user
    
$user User::factory()->create();

    
// Get the first AdReportCategory
    
$category AdReportCategory::first();

    
// Authenticate the user
    
$this->actingAs($user'user');

    
// Define the request data
    
$data = [
        
'report_type' => $category->id,
        
'report_description' => 'This is a test report',
        
'ad_id' => 1// replace with an actual ad id
    
];

    
// Send the post request
    
$response $this->post(route('frontend.adReport'), $data);

    
// Assert it was successful
    
$response->assertStatus(200);

    
// Assert the report was created in the database
    
$this->assertDatabaseHas('report_ads', [
        
'report_from_id' => $user->id,
        
'report_to_id' => $data['ad_id'],
        
'ad_report_category_id' => $data['report_type'],
        
'report_description' => $data['report_description'],
    ]);
});

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