Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
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 /
honeycomb /
src /
app /
Http /
Controllers /
[ HOME SHELL ]
Name
Size
Permission
Action
Auth
[ DIR ]
drwxrwxr-x
CategoryController.php
1.62
KB
-rwxrwxr-x
CmsController.php
930
B
-rwxrwxr-x
Controller.php
361
B
-rwxrwxr-x
MenuController.php
7.71
KB
-rwxrwxr-x
PageController.php
877
B
-rwxrwxr-x
PostController.php
4.2
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CategoryController.php
<?php namespace App\Http\Controllers; use App\Models\Category; use App\Models\Post; use Illuminate\Http\Request; use Illuminate\Support\Facades\Session; use Illuminate\Support\Facades\Storage; use Illuminate\Support\Str; class CategoryController extends Controller { public function index() { $data=Category::all(); $edit=[]; return view('backend.category.index',['category'=>$data, 'edit'=>$edit]); } public function save(Request $request) { $this->validate($request, [ 'title' => 'required', ]); $slug = $slug_from_title = Str::slug($request->title, '-'); $i = 1; while (Post::where('slug', $slug)->exists()) { $slug = $slug_from_title . '-' . $i; $i++; } if (isset($request->category_id) && $request->category_id != '' ) { $category = Category::find($request->category_id); } else { $category = new Category(); } $category->title = $request->title; $category->slug = $slug; $category->save(); Session::flash('message', 'Category added successfully.'); return redirect()->back(); } public function delete($category_id) { $category = Category::findOrFail($category_id); $category->delete(); return redirect()->back() ->with('message', 'Category has been deleted!'); } public function edit($category_id) { $category=Category::all(); $edit = Category::find($category_id); return view('backend.category.index', compact('edit','category')); } }
Close