diff --git a/app/Http/Controllers/VulnerabilityController.php b/app/Http/Controllers/VulnerabilityController.php index 120842d..c90fe20 100644 --- a/app/Http/Controllers/VulnerabilityController.php +++ b/app/Http/Controllers/VulnerabilityController.php @@ -44,8 +44,8 @@ public function logStolenData(Request $request) // متد برای مشاهده لاگ‌ها (پنل هکر) public function viewLogs() { - $logs = \Illuminate\Support\Facades\Storage::exists('stolen_cookies.log') - ? \Illuminate\Support\Facades\Storage::get('stolen_cookies.log') + $logs = Storage::exists('stolen_cookies.log') + ? Storage::get('stolen_cookies.log') : 'هیچ دیتایی سرقت نشده است.'; return view('vulnerabilities.logs', compact('logs')); diff --git a/resources/views/hacker/drive-by.blade.php b/resources/views/hacker/drive-by.blade.php new file mode 100644 index 0000000..f4634a8 --- /dev/null +++ b/resources/views/hacker/drive-by.blade.php @@ -0,0 +1,65 @@ + + + + + + Top 10 AI Tools in 2026 + + + + + + + +
+

Top 10 AI Tools That Will Revolutionize 2026

+

Published on October 15, 2025 by John Doe

+ +
+

Artificial Intelligence is moving at a breakneck pace. By 2026, the landscape of AI tools has shifted entirely, integrating seamlessly into our daily workflows. In this article, we explore the top 10 tools that are reshaping industries.

+ +

1. NeuralSync

+

NeuralSync offers unparalleled brain-to-text capabilities, allowing users to draft emails and documents simply by thinking about them. Early adopters are reporting a 300% increase in productivity.

+ +

2. QuantumCode

+

Forget Copilot; QuantumCode writes entire applications based on a single paragraph of prompt, deploying them instantly across multiple cloud providers securely.

+ +

(Click anywhere to continue reading...)

+
+
+ + +
+

🧑‍💻 Developer / Researcher Notes: Drive-by Download Lab

+

This page is simulating a Drive-by Download attack to test browser security mechanisms. It employs two techniques:

+ +
+ + + + + + + + \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 844c85f..2c59404 100644 --- a/routes/web.php +++ b/routes/web.php @@ -32,6 +32,20 @@ return view('hacker.clickjacking'); })->name('hacker.clickjacking'); + // Drive-by Download: Fake Malware Payload + Route::get('/payload.exe', function () { + $content = "This is a harmless dummy payload simulating malware for the Browser Security Lab."; + return response($content, 200, [ + 'Content-Type' => 'application/x-msdownload', + 'Content-Disposition' => 'attachment; filename="update_installer.exe"', + ]); + })->name('hacker.payload'); + + // Drive-by Download Exploit Page + Route::get('/drive-by', function () { + return view('hacker.drive-by'); + })->name('hacker.driveby'); + }); /*