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.2
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 /
sms-core-ui-code /
app /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
app.api.tsx
500
B
-rw-rw-r--
app.dev.tsx
64
B
-rwxrwxr-x
app.github.tsx
1.01
KB
-rwxrwxr-x
app.mock.tsx
353
B
-rwxrwxr-x
app.oauth-code.tsx
1.41
KB
-rwxrwxr-x
app.oauth-password.tsx
837
B
-rwxrwxr-x
app.prod.tsx
64
B
-rwxrwxr-x
common.tsx
442
B
-rw-rw-r--
index.tsx
1.61
KB
-rwxrwxr-x
routes.tsx
1.37
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.tsx
import _merge from 'lodash-es/merge'; import { AuthState, UserInfo } from 'containers/auth/store/constant'; // Uncomment or define it in index.html to specify your environment. // window.__APP_ENV__ = 'github'; export enum AuthType { OAuth, // alias for OAuthCode OAuthCode, OAuthPassword, Custom, Mock, } export interface Config { resourceBaseUri?: string; defaultLocale?: string; locales?: { name: string; value: string; messages?: any }[]; authType?: AuthType; authConfig?: OAuthConfig; userConverter?: (backendUser: any) => UserInfo; logoutHandler?: (url: string, authState: AuthState) => void; } export interface OAuthConfig { clientId: string; clientSecret: string; authorizationUri: string; accessTokenUri?: string; userProfileUri: string; logoutUri: string; callbackUri?: string; scope?: string; } const getConfig = (): Config => { const env = window.__APP_ENV__ || process.env.NODE_ENV; // eslint-disable-next-line no-console console.info(`Application is running in '${env}' mode.`); switch (env) { case 'production': return (window.__APP_CONF__ = _merge( require('./app.dev'), require('./app.prod'), )); case 'development': return (window.__APP_CONF__ = _merge(require('./app.dev'))); default: return (window.__APP_CONF__ = _merge(require(`./app.${env}`))); } }; export const config = getConfig(); export { default as routes } from './routes'; export { default as authorizedRoutes } from 'containers/dashboard/config/routes.authorized'; export { default as authorizedMenus } from 'containers/dashboard/config/menus.authorized';
Close