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.189
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 /
reducers /
[ HOME SHELL ]
Name
Size
Permission
Action
chat.js
629
B
-rw-r--r--
consumers.js
2.58
KB
-rw-r--r--
files.js
1.7
KB
-rw-r--r--
helper.js
156
B
-rw-r--r--
lobbyPeers.js
1.25
KB
-rw-r--r--
me.js
3.14
KB
-rw-r--r--
notifications.js
479
B
-rw-r--r--
peerVolumes.js
729
B
-rw-r--r--
peers.js
3.32
KB
-rw-r--r--
producers.js
1.59
KB
-rw-r--r--
room.js
6.66
KB
-rw-r--r--
rootReducer.js
672
B
-rw-r--r--
settings.js
4.77
KB
-rw-r--r--
toolarea.js
1.67
KB
-rw-r--r--
transports.js
301
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lobbyPeers.js
const lobbyPeer = (state = {}, action) => { switch (action.type) { case 'ADD_LOBBY_PEER': return { id: action.payload.peerId }; case 'SET_LOBBY_PEER_DISPLAY_NAME': return { ...state, displayName: action.payload.displayName }; case 'SET_LOBBY_PEER_PICTURE': return { ...state, picture: action.payload.picture }; case 'SET_LOBBY_PEER_PROMOTION_IN_PROGRESS': return { ...state, promotionInProgress: action.payload.flag }; default: return state; } }; const lobbyPeers = (state = {}, action) => { switch (action.type) { case 'ADD_LOBBY_PEER': { return { ...state, [action.payload.peerId]: lobbyPeer(undefined, action) }; } case 'REMOVE_LOBBY_PEER': { const { peerId } = action.payload; const newState = { ...state }; delete newState[peerId]; return newState; } case 'SET_LOBBY_PEER_DISPLAY_NAME': case 'SET_LOBBY_PEER_PICTURE': case 'SET_LOBBY_PEER_PROMOTION_IN_PROGRESS': { const oldLobbyPeer = state[action.payload.peerId]; if (!oldLobbyPeer) { // Tried to update non-existent lobbyPeer. Has probably been promoted, or left. return state; } return { ...state, [oldLobbyPeer.id]: lobbyPeer(oldLobbyPeer, action) }; } default: return state; } }; export default lobbyPeers;
Close