UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_afe5a0d40148
/
config
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
embed.php
<?php return [ /* |-------------------------------------------------------------------------- | SSL |-------------------------------------------------------------------------- | | By default (false), Embed will use SSL (https) based on specific | provider support for SSL and input URL. Input URL must explicitly | use "https" to enable SSL for resulting embed element. | | If ssl is set to true, then Embed will try to use SSL on any provider | that supports it no matter what url has been provided. | */ 'ssl' => false, /* |-------------------------------------------------------------------------- | Google API Key. |-------------------------------------------------------------------------- | | Ensure you have enabled YouTube Data API v3. | */ 'google_api_key' => 'YOUR API KEY HERE', /* |-------------------------------------------------------------------------- | Media Providers |-------------------------------------------------------------------------- | | List of media providers used to construct embed elements. | */ 'providers' => [ 'youtubePlaylistVideo' => [ 'name' => 'YouTube Playlist', 'type' => 'video', 'website' => 'http://youtube.com', 'ssl' => true, 'url' => '^(https?://)?(?:www\.)?(?:youtu\.be/|youtube\.com/watch\?v=)([0-9a-zA-Z-_]{11})(?:\S*list=)([0-9a-zA-Z-_]+)', 'info' => [ 'id' => '{1}', 'url' => '{protocol}://youtube.com/watch?v={1}&list={2}', ], 'render' => [ // iframe attributes 'sizeRatio' => 1.77, 'iframe' => [ 'src' => '{protocol}://www.youtube.com/embed/{1}?list={2}&rel=0&wmode=transparent', 'width' => 560, 'height' => 315, 'allowfullscreen' => null, 'frameborder' => 0, ], ], 'data' => null, 'dataCallback' => null, ], 'youtubePlaylist' => [ 'name' => 'YouTube Playlist', 'type' => 'video', 'website' => 'http://youtube.com', 'ssl' => true, 'url' => [ '^(https?://)?(?:www\.)?youtube\.com/playlist\?list=([0-9a-zA-Z-_]+)', ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://youtube.com/playlist?list={1}', ], 'render' => [ // iframe attributes 'sizeRatio' => 1.77, 'iframe' => [ 'src' => '{protocol}://www.youtube.com/embed/videoseries?list={1}&rel=0&wmode=transparent', 'width' => 560, 'height' => 315, 'allowfullscreen' => null, 'frameborder' => 0, ], ], 'data' => null, 'dataCallback' => null, ], 'youtube' => [ 'name' => 'YouTube', 'type' => 'video', 'website' => 'http://youtube.com', 'ssl' => true, 'url' => [ '^(https?://)?(?:www\.)?youtu\.be/([0-9a-zA-Z-_]{11})', '^(https?://)?(?:www\.)?(?:youtu\.be/|youtube\.com/(?:embed/|v/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$' ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://youtu.be/{1}', 'dataUrl' => '{protocol}://www.googleapis.com/youtube/v3/videos?part=snippet&id={1}', 'imageRoot' => '{protocol}://img.youtube.com/vi/{1}/', ], 'render' => [ // iframe attributes 'sizeRatio' => 1.77, 'iframe' => [ 'src' => '{protocol}://www.youtube.com/embed/{1}?rel=0&wmode=transparent&autoplay=1', 'width' => 560, 'height' => 315, 'allowfullscreen' => null, 'frameborder' => 0, ], 'object' => [ 'attributes' => [ 'width' => 560, 'height' => 315, ], 'params' => [ 'movie' => '{protocol}://youtube.com/v/{1}?version=3&rel=0&wmode=transparent', 'wMode' => 'transparent', 'allowFullScreen' => 'true', 'allowscriptaccess' => 'always', ], // embed shares same attributes as object iteslf, but may have some of it's own attributes 'embed' => [ 'src' => '{protocol}://youtube.com/v/{1}?version=3&rel=0&wmode=transparent', 'width' => 560, 'height' => 315, 'type' => 'application/x-shockwave-flash', 'allowFullScreen' => 'true', 'allowscriptaccess' => 'always', ], ], ], 'data' => null, 'dataCallback' => function($embed) { $provider = $embed->getProvider(); $url = $provider->info->dataUrl . '&key=' . config('embed.google_api_key'); $response = json_decode(file_get_contents($url))->items[0]; return [ 'title' => $response->snippet->title, 'description' => $response->snippet->description, 'created_at' => $response->snippet->publishedAt, 'image' => [ 'small' => $response->snippet->thumbnails->default->url, 'medium' => $response->snippet->thumbnails->medium->url, 'large' => $response->snippet->thumbnails->high->url, 'max' => $response->snippet->thumbnails->maxres->url, ], 'full' => $response, ]; }, ], 'liveleak' => [ 'name' => 'LiveLeak', 'type' => 'video', 'website' => 'http://liveleak.com', 'ssl' => false, 'url' => '(https?://)?(?:www\.)?liveleak\.com/ll_embed\?f=([0-9a-z]+)', 'info' => [ 'id' => '{1}', 'url' => '{protocol}://liveleak.com/ll_embed?f={1}', ], 'render' => [ 'sizeRatio' => 1.77, 'iframe' => [ 'src' => '{protocol}://liveleak.com/ll_embed?f={1}', 'width' => 640, 'height' => 360, ], ], 'data' => null, 'dataCallback' => null, ], 'vimeo' => [ 'name' => 'Vimeo', 'type' => 'video', 'website' => 'http://vimeo.com', 'ssl' => false, 'url' => [ '(https?://)?(?:www\.)?vimeo\.com/([0-9]+)', '(https?://)?(?:www\.)?vimeo\.com/m/([0-9]+)' ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://vimeo.com/{1}', 'dataUrl' => '{protocol}://vimeo.com/api/v2/video/{1}.json', ], 'render' => [ 'sizeRatio' => 1.77, 'iframe' => [ 'src' => '{protocol}://player.vimeo.com/video/{1}?autoplay=1&portrait=1', 'width' => 500, 'height' => 281, 'allowfullscreen' => null, 'frameborder' => 0, ], ], 'data' => null, 'dataCallback' => function($embed) { $url = $embed->getProvider()->info->dataUrl; $response = json_decode(file_get_contents($url))[0]; return [ 'title' => $response->title, 'description' => $response->description, 'created_at' => $response->upload_date, 'image' => [ 'small' => $response->thumbnail_small, 'medium' => $response->thumbnail_medium, 'large' => $response->thumbnail_large, 'max' => $response->thumbnail_large, ], 'full' => $response, ]; }, ], 'dailymotion' => [ 'name' => 'Dailymotion', 'type' => 'video', 'website' => 'http://dailymotion.com', 'ssl' => true, 'url' => '(https?://)?(?:www\.)?dailymotion\.com/video/([^_]+)', 'info' => [ 'id' => '{1}', 'url' => '{protocol}://dailymotion.com/video/{1}', ], 'render' => [ 'sizeRatio' => 1.77, 'iframe' => [ 'src' => '{protocol}://www.dailymotion.com/embed/video/{1}', 'width' => 520, 'height' => 420, ], ], 'data' => null, 'dataCallback' => null, ], 'gametrailers' => [ 'name' => 'GameTrailers', 'type' => 'video', 'website' => 'http://gametrailers.com', 'ssl' => false, 'url' => '^(https?://)?media\.mtvnservices\.com/embed/([^"]+:)([0-9a-z-_]+)', 'info' => [ 'id' => '{1}{2}', 'url' => '{protocol}://media.mtvnservices.com/embed/{1}{2}', ], 'render' => [ 'sizeRatio' => 1.77, 'iframe' => [ 'src' => '{protocol}://media.mtvnservices.com/embed/{1}{2}', 'width' => 560, 'height' => 315, ], ], 'data' => null, 'dataCallback' => null, ], 'ign' => [ 'name' => 'IGN', 'type' => 'video', 'website' => 'http://ign.com', 'ssl' => false, 'url' => '^(https?://)?(?:www\.)?ign\.com/videos/([0-9a-zA-Z-_/]+)', 'info' => [ 'id' => '{1}', 'url' => '{protocol}://ign.com/videos/{1}', ], 'render' => [ 'sizeRatio' => 1.77, 'iframe' => [ 'src' => '{protocol}://widgets.ign.com/video/embed/content.html?url={1}', 'width' => 560, 'height' => 315, ], ], 'data' => null, 'dataCallback' => null, ], 'vine' => [ 'name' => 'Vine', 'type' => 'video', 'website' => 'http://vine.co', 'ssl' => true, 'url' => [ '^(https?://)?(?:www\.)?vine\.co/v/([0-9a-zA-Z]+)' ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://vine.co/v/{1}', ], 'render' => [ 'sizeRatio' => 0.864, 'iframe' => [ 'src' => '{protocol}://vine.co/v/{1}/embed/postcard', 'width' => 600, 'height' => 600, ], ], 'data' => null, 'dataCallback' => null, ], 'coub' => [ 'name' => 'Coub', 'type' => 'video', 'website' => 'http://coub.com', 'ssl' => true, 'url' => '(https?://)?(?:www\.)?coub\.com/view/([^_]+)', 'info' => [ 'id' => '{1}', 'url' => '{protocol}://coub.com/view/{1}', ], 'render' => [ 'sizeRatio' => 1.77, 'iframe' => [ 'src' => '{protocol}://coub.com/embed/{1}?muted=false&autostart=false&originalSize=false&hideTopBar=false', 'width' => 640, 'height' => 360, ], ], 'data' => null, 'dataCallback' => null, ], 'kickstarter' => [ 'name' => 'Kickstarter', 'type' => 'video', 'website' => 'http://kickstarter.com', 'ssl' => true, 'url' => [ '^(https?://)?(?:www\.)?kickstarter\.com/projects/([0-9a-zA-Z-_]+)/([0-9a-zA-Z-_]+)' ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://kickstarter.com/projects/{1}/{2}' ], 'render' => [ 'sizeRatio' => 1.33, 'iframe' => [ 'src' => '{protocol}://kickstarter.com/projects/{1}/{2}/widget/video.html', 'scrolling' => 'no', 'width' => 640, 'height' => 480, ], ], 'data' => null, 'dataCallback' => null, ], 'ustream' => [ 'name' => 'Ustream', 'type' => 'video', 'website' => 'http://ustream.tv', 'ssl' => true, 'url' => [ '^(https?://)?(?:www\.)?ustream\.tv/channel/([0-9]+)' ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://ustream.tv/channel/{1}' ], 'render' => [ 'sizeRatio' => 1.64, 'iframe' => [ 'src' => '{protocol}://ustream.tv/embed/{1}?v3&wmode=direct', 'scrolling' => 'no', 'width' => 670, 'height' => 390, ], ], 'data' => null, 'dataCallback' => null, ], 'ustreamArchive' => [ 'name' => 'Ustream Recorded', 'type' => 'video', 'website' => 'http://ustream.tv', 'ssl' => true, 'url' => [ '^(https?://)?(?:www\.)?ustream\.tv/recorded/([0-9]+)' ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://ustream.tv/recorded/{1}' ], 'render' => [ 'sizeRatio' => 1.64, 'iframe' => [ 'src' => '{protocol}://ustream.tv/embed/recorded/{1}?v3&wmode=direct', 'scrolling' => 'no', 'width' => 670, 'height' => 390, ], ], 'data' => null, 'dataCallback' => null, ], 'twitchArchive' => [ 'name' => 'Twitch Archive', 'type' => 'video', 'website' => 'http://twitch.tv', 'ssl' => false, 'url' => [ '^(https?://)?(?:www\.)?twitch\.tv/([^"]+)/b/([0-9]+)' ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://twitch.tv/{1}/b/{2}' ], 'render' => [ 'sizeRatio' => 1.64, 'object' => [ 'attributes' => [ 'type' => 'application/x-shockwave-flash', 'data' => '{protocol}://twitch.tv/widgets/archive_embed_player.swf', 'wmode' => 'transparent', 'id' => 'clip_embed_player_flash', 'width' => 500, 'height' => 350, ], 'params' => [ 'wMode' => 'transparent', 'allowFullScreen' => 'true', 'allowScriptAccess' => 'always', 'allowNetworking' => 'all', 'flashvars' => 'archive_id={2}&channel={1}&hostname=www.twitch.tv&auto_play=false&start_volume=25', 'movie' => '{protocol}://www.twitch.tv/widgets/archive_embed_player.swf' ], ], ], 'data' => null, 'dataCallback' => null, ], 'twitchArchiveChapter' => [ 'name' => 'Twitch Archive', 'type' => 'video', 'website' => 'http://twitch.tv', 'ssl' => false, 'url' => [ '^(https?://)?(?:www\.)?twitch\.tv/([^"]+)/c/([0-9]+)' ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://twitch.tv/{1}/c/{2}' ], 'render' => [ 'sizeRatio' => 1.64, 'object' => [ 'attributes' => [ 'type' => 'application/x-shockwave-flash', 'data' => '{protocol}://twitch.tv/widgets/archive_embed_player.swf', 'wmode' => 'transparent', 'id' => 'clip_embed_player_flash', 'width' => 500, 'height' => 350, ], 'params' => [ 'wMode' => 'transparent', 'allowFullScreen' => 'true', 'allowScriptAccess' => 'always', 'allowNetworking' => 'all', 'flashvars' => 'chapter_id={2}&channel={1}&hostname=www.twitch.tv&auto_play=false&start_volume=25', 'movie' => '{protocol}://www.twitch.tv/widgets/archive_embed_player.swf' ], ], ], 'data' => null, 'dataCallback' => null, ], 'twitch' => [ 'name' => 'Twitch', 'type' => 'video', 'website' => 'http://twitch.tv', 'ssl' => false, 'url' => [ '^(https?://)?(?:www\.)?twitch\.tv/([0-9a-zA-Z-_]+)' ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://twitch.tv/{1}' ], 'render' => [ 'sizeRatio' => 1.64, 'object' => [ 'attributes' => [ 'type' => 'application/x-shockwave-flash', 'data' => '{protocol}://twitch.tv/widgets/live_embed_player.swf?channel={1}', 'wmode' => 'transparent', 'id' => 'live_embed_player_flash', 'width' => 500, 'height' => 350, ], 'params' => [ 'allowFullScreen' => 'true', 'allowScriptAccess' => 'always', 'allowNetworking' => 'all', 'flashvars' => 'hostname=www.twitch.tv&channel={1}&auto_play=false&start_volume=25', 'movie' => '{protocol}://www.twitch.tv/widgets/live_embed_player.swf' ], ], ], 'data' => null, 'dataCallback' => null, ], 'html5video' => [ 'name' => 'HTML5 video', 'type' => 'video', 'website' => '', 'ssl' => true, 'url' => [ '^(https?://)?(.*).(mp4|ogg|webm)$' ], 'info' => [ 'id' => '{1}.{2}', 'url' => '{1}.{2}' ], 'render' => [ 'sizeRatio' => 1.77, 'video' => [ 'source' => [ [ 'type' => 'video/webm', 'src' => '{protocol}://{1}.webm', ], [ 'type' => 'video/ogg', 'src' => '{protocol}://{1}.ogg', ], [ 'type' => 'video/mp4', 'src' => '{protocol}://{1}.mp4', ] ], 'width' => 560, 'height' => 315, 'controls' => 'controls', ], ], 'data' => null, 'dataCallback' => null, ], 'gfycat' => [ 'name' => 'gfycat', 'type' => 'video', 'website' => 'http://gfycat.com', 'ssl' => false, 'url' => [ '^(https?://)?(?:www\.)?gfycat\.com/([a-zA-Z]+)' ], 'info' => [ 'id' => '{1}', 'url' => '{protocol}://gfycat.com/{1}' ], 'render' => [ 'sizeRatio' => 1.64, 'iframe' => [ 'src' => '{protocol}://gfycat.com/ifr/{1}', 'scrolling' => 'no', 'width' => 670, 'height' => 390, ], ], 'data' => null, 'dataCallback' => null, ], 'web.tv' => [ 'name' => 'web.tv', 'type' => 'video', 'website' => 'http://web.tv', 'ssl' => false, 'url' => [ '^(https?://)?(\w+\.?)?web\.tv/.*__([a-zA-Z0-9]+)$' ], 'info' => [ 'id' => '{2}', 'url' => '{protocol}://{1}web.tv/embed/{2}' ], 'render' => [ 'sizeRatio' => 1.64, 'iframe' => [ 'src' => '{protocol}://{1}web.tv/embed/{2}', 'scrolling' => 'no', 'width' => 670, 'height' => 390, ], ], 'data' => null, 'dataCallback' => null, ], ] ];
Copyright © 2026 - UnknownSec