crabby-webshell-generator 2.0.0

Crabby is a tool developed to generate webshells written in - insert your desired webshell language -. It is designed to be used by red teams to aid in lateral movement, privilege escalation, and data exfiltration.
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
    /* width */
    ::-webkit-scrollbar {
        @apply w-2;
    }

    /* Track */
    ::-webkit-scrollbar-track {
        @apply dark:bg-zinc-800 bg-zinc-200 rounded-lg;
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
        @apply dark:bg-zinc-700 bg-zinc-400 rounded-lg;
    }

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        @apply dark:bg-zinc-600 bg-zinc-500;
    }

    a {
        text-decoration: none !important;
    }
}