Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
cqt /
src /
components /
ui /
[ HOME SHELL ]
Name
Size
Permission
Action
accordion.tsx
1.93
KB
-rw-r--r--
alert-dialog.tsx
4.21
KB
-rw-r--r--
alert.tsx
1.51
KB
-rw-r--r--
aspect-ratio.tsx
143
B
-rw-r--r--
avatar.tsx
1.33
KB
-rw-r--r--
badge.tsx
1.06
KB
-rw-r--r--
breadcrumb.tsx
2.62
KB
-rw-r--r--
button.tsx
1.8
KB
-rw-r--r--
calendar.tsx
2.5
KB
-rw-r--r--
card.tsx
1.74
KB
-rw-r--r--
carousel.tsx
6.1
KB
-rw-r--r--
chart.tsx
9.75
KB
-rw-r--r--
checkbox.tsx
1.03
KB
-rw-r--r--
collapsible.tsx
320
B
-rw-r--r--
command.tsx
4.71
KB
-rw-r--r--
context-menu.tsx
7.02
KB
-rw-r--r--
dialog.tsx
3.67
KB
-rw-r--r--
drawer.tsx
2.87
KB
-rw-r--r--
dropdown-menu.tsx
7.09
KB
-rw-r--r--
form.tsx
3.92
KB
-rw-r--r--
hover-card.tsx
1.17
KB
-rw-r--r--
input-otp.tsx
2.12
KB
-rw-r--r--
input.tsx
799
B
-rw-r--r--
label.tsx
696
B
-rw-r--r--
menubar.tsx
7.68
KB
-rw-r--r--
navigation-menu.tsx
4.91
KB
-rw-r--r--
pagination.tsx
2.62
KB
-rw-r--r--
popover.tsx
1.21
KB
-rw-r--r--
progress.tsx
765
B
-rw-r--r--
radio-group.tsx
1.41
KB
-rw-r--r--
resizable.tsx
1.66
KB
-rw-r--r--
scroll-area.tsx
1.57
KB
-rw-r--r--
select.tsx
5.44
KB
-rw-r--r--
separator.tsx
698
B
-rw-r--r--
sheet.tsx
4.1
KB
-rw-r--r--
sidebar.tsx
22.3
KB
-rw-r--r--
skeleton.tsx
234
B
-rw-r--r--
slider.tsx
1.04
KB
-rw-r--r--
sonner.tsx
877
B
-rw-r--r--
switch.tsx
1.12
KB
-rw-r--r--
table.tsx
2.63
KB
-rw-r--r--
tabs.tsx
1.85
KB
-rw-r--r--
textarea.tsx
751
B
-rw-r--r--
toast.tsx
4.69
KB
-rw-r--r--
toaster.tsx
730
B
-rw-r--r--
toggle-group.tsx
1.67
KB
-rw-r--r--
toggle.tsx
1.38
KB
-rw-r--r--
tooltip.tsx
1.13
KB
-rw-r--r--
use-toast.ts
82
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : command.tsx
import * as React from "react"; import { type DialogProps } from "@radix-ui/react-dialog"; import { Command as CommandPrimitive } from "cmdk"; import { Search } from "lucide-react"; import { cn } from "@/lib/utils"; import { Dialog, DialogContent } from "@/components/ui/dialog"; const Command = React.forwardRef< React.ElementRef<typeof CommandPrimitive>, React.ComponentPropsWithoutRef<typeof CommandPrimitive> >(({ className, ...props }, ref) => ( <CommandPrimitive ref={ref} className={cn( "flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground", className, )} {...props} /> )); Command.displayName = CommandPrimitive.displayName; interface CommandDialogProps extends DialogProps {} const CommandDialog = ({ children, ...props }: CommandDialogProps) => { return ( <Dialog {...props}> <DialogContent className="overflow-hidden p-0 shadow-lg"> <Command className="[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5"> {children} </Command> </DialogContent> </Dialog> ); }; const CommandInput = React.forwardRef< React.ElementRef<typeof CommandPrimitive.Input>, React.ComponentPropsWithoutRef<typeof CommandPrimitive.Input> >(({ className, ...props }, ref) => ( <div className="flex items-center border-b px-3" cmdk-input-wrapper=""> <Search className="mr-2 h-4 w-4 shrink-0 opacity-50" /> <CommandPrimitive.Input ref={ref} className={cn( "flex h-11 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50", className, )} {...props} /> </div> )); CommandInput.displayName = CommandPrimitive.Input.displayName; const CommandList = React.forwardRef< React.ElementRef<typeof CommandPrimitive.List>, React.ComponentPropsWithoutRef<typeof CommandPrimitive.List> >(({ className, ...props }, ref) => ( <CommandPrimitive.List ref={ref} className={cn("max-h-[300px] overflow-y-auto overflow-x-hidden", className)} {...props} /> )); CommandList.displayName = CommandPrimitive.List.displayName; const CommandEmpty = React.forwardRef< React.ElementRef<typeof CommandPrimitive.Empty>, React.ComponentPropsWithoutRef<typeof CommandPrimitive.Empty> >((props, ref) => <CommandPrimitive.Empty ref={ref} className="py-6 text-center text-sm" {...props} />); CommandEmpty.displayName = CommandPrimitive.Empty.displayName; const CommandGroup = React.forwardRef< React.ElementRef<typeof CommandPrimitive.Group>, React.ComponentPropsWithoutRef<typeof CommandPrimitive.Group> >(({ className, ...props }, ref) => ( <CommandPrimitive.Group ref={ref} className={cn( "overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground", className, )} {...props} /> )); CommandGroup.displayName = CommandPrimitive.Group.displayName; const CommandSeparator = React.forwardRef< React.ElementRef<typeof CommandPrimitive.Separator>, React.ComponentPropsWithoutRef<typeof CommandPrimitive.Separator> >(({ className, ...props }, ref) => ( <CommandPrimitive.Separator ref={ref} className={cn("-mx-1 h-px bg-border", className)} {...props} /> )); CommandSeparator.displayName = CommandPrimitive.Separator.displayName; const CommandItem = React.forwardRef< React.ElementRef<typeof CommandPrimitive.Item>, React.ComponentPropsWithoutRef<typeof CommandPrimitive.Item> >(({ className, ...props }, ref) => ( <CommandPrimitive.Item ref={ref} className={cn( "relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled=true]:pointer-events-none data-[selected='true']:bg-accent data-[selected=true]:text-accent-foreground data-[disabled=true]:opacity-50", className, )} {...props} /> )); CommandItem.displayName = CommandPrimitive.Item.displayName; const CommandShortcut = ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>) => { return <span className={cn("ml-auto text-xs tracking-widest text-muted-foreground", className)} {...props} />; }; CommandShortcut.displayName = "CommandShortcut"; export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, };
Close