Help
RSS
API
Feed
Maltego
Contact
Domain > bvault.brmm.ovh
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2026-02-11
104.21.64.17
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Wed, 11 Feb 2026 01:09:28 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveAccept-Ranges: bytesaccess-control-allow-origin: *Cache-Control: public, max-age0Report-To: {group:cf-nel,max_age:604800,endpoints:{url:https://a.nel.cloudflare.com/report/v4?sw93%2FeBb%2FsyN0QC58PKbwjkvt1Ze5V6MfQ905v6AYeutXK0mzr0%2BIX9gENHlWmky7Y8zOov0qjI%2FbSUKWkdLht9x%2BmzDSwRCT1Sp2FTiOmA%3D%3D}}last-modified: Sun, 24 Nov 2024 23:16:20 GMTx-powered-by: Expresscf-cache-status: DYNAMICNel: {report_to:cf-nel,success_fraction:0.0,max_age:604800}Server: cloudflareCF-RAY: 9cbff6047cb53d49-PDXalt-svc: h3:443; ma86400 !DOCTYPE html>html langen>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> link relicon hrefhttps://bvault.brmm.ovh/icons/ico.png typeimage/x-icon> meta contentWelcome To BVault propertyog:title /> meta contentThe place where you can upload and watch videos! propertyog:description /> meta content#110C15 data-react-helmettrue nametheme-color /> title>BVAULT/title>/head>body> div classHolderMain> div classNavBar> a hrefhttps://bvault.brmm.ovh> img styleheight: 45px; margin-left: 5px; srchttps://bvault.brmm.ovh/logo.png altLogo> /a> div classSearchBar> input typetext idsearch placeholderSearch onkeyupsearchVideos()> button>svg xmlnshttp://www.w3.org/2000/svg height24px viewBox0 -960 960 960 width24px fill#e8eaed>path dM784-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l252 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z/>/svg>/button> /div> div styledisplay: flex; idnavbar_right> a hrefhttps://bvault.brmm.ovh/upload stylebackground-color: transparent; border: none; outline: none; height: 45px; display: flex; justify-content: center; align-items: center;> svg xmlnshttp://www.w3.org/2000/svg height30px viewBox0 -960 960 960 width30px fill#e8eaed>path dM440-320v-326L336-542l-56-58 200-200 200 200-56 58-104-104v326h-80ZM240-160q-33 0-56.5-23.5T160-240v-120h80v120h480v-120h80v120q0 33-23.5 56.5T720-160H240Z/>/svg> /a> div stylemargin-right: 5px; margin-left: 5px; height: 45px; width: 45px; border-radius: 5px; idchannel_visual> img idChannelImg stylewidth: 45px; height: 45px; border-radius: 5px;> /div> /div> /div> div styledisplay: flex; height: calc(100% - 80px); width: 100%;> div classSideBar> a idAHerfChannel> div classSideBarCard idChannelButton> img srchttps://bvault.brmm.ovh/icons/person_28dp_E8EAED_FILL0_wght400_GRAD0_opsz24.svg> p>Channel/p> /div> /a> a hrefhttps://bvault.brmm.ovh/shorts> div classSideBarCard idShortsButton> img srchttps://bvault.brmm.ovh/icons/blur_short_28dp_E8EAED_FILL1_wght400_GRAD0_opsz24.png> p>Shorts/p> /div> /a> /div> div classMain idMain> /div> /div> /div>/body>/html>script>window.onload async function () { const urlParams new URLSearchParams(window.location.search); const searchreq urlParams.get(search); document.getElementById(search).value searchreq; try { const response await fetch(/vids); if (!response.ok) { throw new Error(Failed to fetch video); } const videos await response.json(); console.log(videos); videos.forEach(video > { if(video.short 0){ createVideoCard(video); } }); } catch (error) { console.error(Error fetching video:, error); } if(localStorage.getItem(Token) null){ document.getElementById(channel_visual).remove(); const logininbutton document.createElement(a); logininbutton.textContent Login; logininbutton.style display: flex; align-items: center; margin: 10px; text-decoration: none; color: white;; logininbutton.href https://discord.com/oauth2/authorize?client_id1296557535209193634&response_typetoken&redirect_urihttps%3A%2F%2Fbvault.brmm.ovh%2Fauth&scopeidentify; document.getElementById(navbar_right).appendChild(logininbutton); document.getElementById(AHerfChannel).href https://bvault.brmm.ovh/channel?id1; } else{ try { const response await fetch(`https://bvault.brmm.ovh/api/v1/get-user?token${localStorage.getItem(Token)}`); if (!response.ok) { console.log(`Error: ${response.status} - ${response.statusText}`); return; } const data await response.json(); document.getElementById(AHerfChannel).href https://bvault.brmm.ovh/channel?id + data.channelid; document.getElementById(ChannelImg).src data.channelprofile; //document.getElementById(ChannelName).textContent data.channelname; } catch (error) { console.error(Błąd podczas pobierania danych kanału:, error); } } searchVideos();};function searchVideos() { const input document.getElementById(search); const filter input.value.toLowerCase(); const videos document.getElementsByClassName(Video); for (let i 0; i videos.length; i++) { const title videosi.getElementsByTagName(h2)0.innerText.toLowerCase(); if (title.includes(filter)) { videosi.classList.remove(hidden); } else { videosi.classList.add(hidden); } } }function timeAgo(createdDate) { const now new Date(); const publishedDate new Date(createdDate); const diffInSeconds Math.floor((now - publishedDate) / 1000); // Różnica w sekundach const minutes Math.floor(diffInSeconds / 60); const hours Math.floor(minutes / 60); const days Math.floor(hours / 24); const weeks Math.floor(days / 7); const months Math.floor(weeks / 4); const years Math.floor(months / 12); if (minutes 1) { return Just now; } else if (minutes 60) { return `${minutes} minute${minutes 1 ? : s} ago`; } else if (hours 24) { return `${hours} hour${hours 1 ? : s} ago`; } else if (days 7) { return `${days} day${days 1 ? : s} ago`; } else if (weeks 4) { return `${weeks} week${weeks 1 ? : s} ago`; } else if (months 12) { return `${months} month${months 1 ? : s} ago`; } else { return `${years} year${years 1 ? : s} ago`; }}function createVideoCard(video) { const videoDiv document.createElement(div); videoDiv.className Video; videoDiv.addEventListener(click, () > { window.location.href `https://bvault.brmm.ovh/watch?id${video.video_id}`; }); const videoImg document.createElement(img); videoImg.className VideoImg; videoImg.src https://bvault.brmm.ovh/get-thumbnail?imagePath + video.thumbnail_link; const extraDataDiv document.createElement(div); extraDataDiv.className ExtradDataVideo; const holderDiv document.createElement(div); holderDiv.className Holder_ExtradDataVideo; const leftSideDiv document.createElement(div); leftSideDiv.className LeftSideVideo; const leftImg document.createElement(img); const rightSideDiv document.createElement(div); rightSideDiv.className RightSideVideo; const title document.createElement(h2); let titleText video.title; if (titleText.length > 16) { titleText titleText.substring(0, 16) + ...; } title.textContent titleText; const channel document.createElement(h5); if(video.owner_id 1){ leftImg.src https://bvault.brmm.ovh/icons/ico_Channel.png; channel.textContent `BVault`; } else{ const url `https://bvault.brmm.ovh/api/v1/get-channel?id${video.owner_id}`; fetch(url) .then(response > response.json()) .then(data > { console.log(data.message); leftImg.src data.channelprofile; channel.textContent data.channelname; }) .catch(error > { console.error(Error:, error); //document.getElementById(response).textContent Error reacting to video; }); } leftSideDiv.appendChild(leftImg); rightSideDiv.appendChild(title); rightSideDiv.appendChild(channel); holderDiv.appendChild(leftSideDiv); holderDiv.appendChild(rightSideDiv); extraDataDiv.appendChild(holderDiv); const extraInfo document.createElement(h5); extraInfo.className ExtradDataVideo_h5; const views video.views > 0 ? `${video.views} views` : No views; const publishedTime timeAgo(video.created_at); extraInfo.textContent `${views} • ${publishedTime}`; extraDataDiv.appendChild(extraInfo); videoDiv.appendChild(videoImg); videoDiv.appendChild(extraDataDiv); document.getElementById(Main).appendChild(videoDiv);}/script>style> body, html { background-color: #110C15; margin: 0; width: 100%; height: 100%; overflow-x: hidden; color: white; font-family: Poppins, sans-serif; font-weight: 500; font-style: normal; text-align: center; display: flex; } ::-webkit-scrollbar { width: 2px; height: 0px; } ::-webkit-scrollbar-track { background-color: #110C15; height: 98%; } ::-webkit-scrollbar-thumb { background: #B993DC; } ::-webkit-scrollbar-thumb:hover { background: #B993DC; } .hidden{ visibility: hidden; display: none; pointer-events: none; opacity: 0; position: absolute; left: 1000%; } .Holder_ExtradDataVideo{ width: 100%; display: flex; } .Holder_ExtradDataVideo h5{ color: #CCC; padding: 0px; margin: 0px; text-align: left; margin-top: 4px; pointer-events: none; } .LeftSideVideo{ height: 100%; width: 70px; } .LeftSideVideo img{ border-radius: 5px; width: 50px; height: 50px; margin-top: 5px; } .RightSideVideo{ height: 70px; width: calc(100% - 70px); } .RightSideVideo h2{ padding: 0px; margin: 0px; text-align: left; pointer-events: none; } .ExtradDataVideo_h5{ color: #CCC; padding: 0px; margin: 0px; text-align: left; pointer-events: none; margin-left: 10px; } .ExtradDataVideo{ width: 100%; height: calc(100% - 130px); display: flex; flex-direction: column; } .Video{ margin: 5px; width: 350px; height: 225px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid transparent; transition: all 1s; } .Video:hover{ border: 1px solid #B993DC; border-radius: 5px; } .VideoImg{ width: 350px; height: 130px; } .SideBar{ width: 60px; height: 100%; background-color: #110C15; display: flex; flex-direction: column; align-items: center; } .SideBar a{ text-decoration: none; color: white; display: flex; justify-content: center; align-items: center; } .SideBarCard{ height: 60px; width: 70%; margin-top: 5px; padding: 5px; display: flex; flex-direction: column; justify-content: center; align-items: center; background-color: #110C15; pointer-events: none; } .SideBarCard p { margin: 0px; padding: 0px; font-size: 13px; } .SideBarCard img{ margin: 0px; padding: 0px; width: 40px; height: 40px; } .HolderMain{ width: 100%; height: 100%; } .NavBar{ width: 100%; height: 60px; background-color: #110C15; display: flex; justify-content: space-between; align-items: center; } .Main{ height: 100%; width: 100%; overflow-y: scroll; display: flex; align-items: flex-start; flex-direction: row; flex-wrap: wrap; } .SearchBar{ display: flex; justify-content: center; align-items: center; width: 40%; height: 30px; border-radius: 5px; overflow: hidden; border: 1px solid #B993DC; } .SearchBar button{ outline: none; border: none; height: 100%; background-color: transparent; font-family: poppins; display: flex; justify-content: center; align-items: center; } .SearchBar input{ padding: 0px; padding-left: 20px; width: 95%; height: 100%; outline: none; border: none; background-color: transparent; color: white; font-family: poppins; } input::placeholder { color: white; font-family: poppins; }/style>
Port 443
HTTP/1.1 200 OKDate: Wed, 11 Feb 2026 01:09:29 GMTContent-Type: text/html; charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveAccept-Ranges: bytesaccess-control-allow-origin: *Cache-Control: public, max-age0Report-To: {group:cf-nel,max_age:604800,endpoints:{url:https://a.nel.cloudflare.com/report/v4?sJmUAl1VApr0%2BO8o%2F4wajAygoISLwrz%2BxFh0k%2F%2FztX%2BO5QrNfet0i6rCPSBb4BqTkebbPkZGVfQ2lpk70fN8%2B2h7qP6rnMMz%2BFUW%2BIMGjLQ%3D%3D}}last-modified: Sun, 24 Nov 2024 23:16:20 GMTx-powered-by: Expresscf-cache-status: DYNAMICNel: {report_to:cf-nel,success_fraction:0.0,max_age:604800}Server: cloudflareCF-RAY: 9cbff6086c50613d-PDXalt-svc: h3:443; ma86400 !DOCTYPE html>html langen>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> link relicon hrefhttps://bvault.brmm.ovh/icons/ico.png typeimage/x-icon> meta contentWelcome To BVault propertyog:title /> meta contentThe place where you can upload and watch videos! propertyog:description /> meta content#110C15 data-react-helmettrue nametheme-color /> title>BVAULT/title>/head>body> div classHolderMain> div classNavBar> a hrefhttps://bvault.brmm.ovh> img styleheight: 45px; margin-left: 5px; srchttps://bvault.brmm.ovh/logo.png altLogo> /a> div classSearchBar> input typetext idsearch placeholderSearch onkeyupsearchVideos()> button>svg xmlnshttp://www.w3.org/2000/svg height24px viewBox0 -960 960 960 width24px fill#e8eaed>path dM784-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l252 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z/>/svg>/button> /div> div styledisplay: flex; idnavbar_right> a hrefhttps://bvault.brmm.ovh/upload stylebackground-color: transparent; border: none; outline: none; height: 45px; display: flex; justify-content: center; align-items: center;> svg xmlnshttp://www.w3.org/2000/svg height30px viewBox0 -960 960 960 width30px fill#e8eaed>path dM440-320v-326L336-542l-56-58 200-200 200 200-56 58-104-104v326h-80ZM240-160q-33 0-56.5-23.5T160-240v-120h80v120h480v-120h80v120q0 33-23.5 56.5T720-160H240Z/>/svg> /a> div stylemargin-right: 5px; margin-left: 5px; height: 45px; width: 45px; border-radius: 5px; idchannel_visual> img idChannelImg stylewidth: 45px; height: 45px; border-radius: 5px;> /div> /div> /div> div styledisplay: flex; height: calc(100% - 80px); width: 100%;> div classSideBar> a idAHerfChannel> div classSideBarCard idChannelButton> img srchttps://bvault.brmm.ovh/icons/person_28dp_E8EAED_FILL0_wght400_GRAD0_opsz24.svg> p>Channel/p> /div> /a> a hrefhttps://bvault.brmm.ovh/shorts> div classSideBarCard idShortsButton> img srchttps://bvault.brmm.ovh/icons/blur_short_28dp_E8EAED_FILL1_wght400_GRAD0_opsz24.png> p>Shorts/p> /div> /a> /div> div classMain idMain> /div> /div> /div>/body>/html>script>window.onload async function () { const urlParams new URLSearchParams(window.location.search); const searchreq urlParams.get(search); document.getElementById(search).value searchreq; try { const response await fetch(/vids); if (!response.ok) { throw new Error(Failed to fetch video); } const videos await response.json(); console.log(videos); videos.forEach(video > { if(video.short 0){ createVideoCard(video); } }); } catch (error) { console.error(Error fetching video:, error); } if(localStorage.getItem(Token) null){ document.getElementById(channel_visual).remove(); const logininbutton document.createElement(a); logininbutton.textContent Login; logininbutton.style display: flex; align-items: center; margin: 10px; text-decoration: none; color: white;; logininbutton.href https://discord.com/oauth2/authorize?client_id1296557535209193634&response_typetoken&redirect_urihttps%3A%2F%2Fbvault.brmm.ovh%2Fauth&scopeidentify; document.getElementById(navbar_right).appendChild(logininbutton); document.getElementById(AHerfChannel).href https://bvault.brmm.ovh/channel?id1; } else{ try { const response await fetch(`https://bvault.brmm.ovh/api/v1/get-user?token${localStorage.getItem(Token)}`); if (!response.ok) { console.log(`Error: ${response.status} - ${response.statusText}`); return; } const data await response.json(); document.getElementById(AHerfChannel).href https://bvault.brmm.ovh/channel?id + data.channelid; document.getElementById(ChannelImg).src data.channelprofile; //document.getElementById(ChannelName).textContent data.channelname; } catch (error) { console.error(Błąd podczas pobierania danych kanału:, error); } } searchVideos();};function searchVideos() { const input document.getElementById(search); const filter input.value.toLowerCase(); const videos document.getElementsByClassName(Video); for (let i 0; i videos.length; i++) { const title videosi.getElementsByTagName(h2)0.innerText.toLowerCase(); if (title.includes(filter)) { videosi.classList.remove(hidden); } else { videosi.classList.add(hidden); } } }function timeAgo(createdDate) { const now new Date(); const publishedDate new Date(createdDate); const diffInSeconds Math.floor((now - publishedDate) / 1000); // Różnica w sekundach const minutes Math.floor(diffInSeconds / 60); const hours Math.floor(minutes / 60); const days Math.floor(hours / 24); const weeks Math.floor(days / 7); const months Math.floor(weeks / 4); const years Math.floor(months / 12); if (minutes 1) { return Just now; } else if (minutes 60) { return `${minutes} minute${minutes 1 ? : s} ago`; } else if (hours 24) { return `${hours} hour${hours 1 ? : s} ago`; } else if (days 7) { return `${days} day${days 1 ? : s} ago`; } else if (weeks 4) { return `${weeks} week${weeks 1 ? : s} ago`; } else if (months 12) { return `${months} month${months 1 ? : s} ago`; } else { return `${years} year${years 1 ? : s} ago`; }}function createVideoCard(video) { const videoDiv document.createElement(div); videoDiv.className Video; videoDiv.addEventListener(click, () > { window.location.href `https://bvault.brmm.ovh/watch?id${video.video_id}`; }); const videoImg document.createElement(img); videoImg.className VideoImg; videoImg.src https://bvault.brmm.ovh/get-thumbnail?imagePath + video.thumbnail_link; const extraDataDiv document.createElement(div); extraDataDiv.className ExtradDataVideo; const holderDiv document.createElement(div); holderDiv.className Holder_ExtradDataVideo; const leftSideDiv document.createElement(div); leftSideDiv.className LeftSideVideo; const leftImg document.createElement(img); const rightSideDiv document.createElement(div); rightSideDiv.className RightSideVideo; const title document.createElement(h2); let titleText video.title; if (titleText.length > 16) { titleText titleText.substring(0, 16) + ...; } title.textContent titleText; const channel document.createElement(h5); if(video.owner_id 1){ leftImg.src https://bvault.brmm.ovh/icons/ico_Channel.png; channel.textContent `BVault`; } else{ const url `https://bvault.brmm.ovh/api/v1/get-channel?id${video.owner_id}`; fetch(url) .then(response > response.json()) .then(data > { console.log(data.message); leftImg.src data.channelprofile; channel.textContent data.channelname; }) .catch(error > { console.error(Error:, error); //document.getElementById(response).textContent Error reacting to video; }); } leftSideDiv.appendChild(leftImg); rightSideDiv.appendChild(title); rightSideDiv.appendChild(channel); holderDiv.appendChild(leftSideDiv); holderDiv.appendChild(rightSideDiv); extraDataDiv.appendChild(holderDiv); const extraInfo document.createElement(h5); extraInfo.className ExtradDataVideo_h5; const views video.views > 0 ? `${video.views} views` : No views; const publishedTime timeAgo(video.created_at); extraInfo.textContent `${views} • ${publishedTime}`; extraDataDiv.appendChild(extraInfo); videoDiv.appendChild(videoImg); videoDiv.appendChild(extraDataDiv); document.getElementById(Main).appendChild(videoDiv);}/script>style> body, html { background-color: #110C15; margin: 0; width: 100%; height: 100%; overflow-x: hidden; color: white; font-family: Poppins, sans-serif; font-weight: 500; font-style: normal; text-align: center; display: flex; } ::-webkit-scrollbar { width: 2px; height: 0px; } ::-webkit-scrollbar-track { background-color: #110C15; height: 98%; } ::-webkit-scrollbar-thumb { background: #B993DC; } ::-webkit-scrollbar-thumb:hover { background: #B993DC; } .hidden{ visibility: hidden; display: none; pointer-events: none; opacity: 0; position: absolute; left: 1000%; } .Holder_ExtradDataVideo{ width: 100%; display: flex; } .Holder_ExtradDataVideo h5{ color: #CCC; padding: 0px; margin: 0px; text-align: left; margin-top: 4px; pointer-events: none; } .LeftSideVideo{ height: 100%; width: 70px; } .LeftSideVideo img{ border-radius: 5px; width: 50px; height: 50px; margin-top: 5px; } .RightSideVideo{ height: 70px; width: calc(100% - 70px); } .RightSideVideo h2{ padding: 0px; margin: 0px; text-align: left; pointer-events: none; } .ExtradDataVideo_h5{ color: #CCC; padding: 0px; margin: 0px; text-align: left; pointer-events: none; margin-left: 10px; } .ExtradDataVideo{ width: 100%; height: calc(100% - 130px); display: flex; flex-direction: column; } .Video{ margin: 5px; width: 350px; height: 225px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid transparent; transition: all 1s; } .Video:hover{ border: 1px solid #B993DC; border-radius: 5px; } .VideoImg{ width: 350px; height: 130px; } .SideBar{ width: 60px; height: 100%; background-color: #110C15; display: flex; flex-direction: column; align-items: center; } .SideBar a{ text-decoration: none; color: white; display: flex; justify-content: center; align-items: center; } .SideBarCard{ height: 60px; width: 70%; margin-top: 5px; padding: 5px; display: flex; flex-direction: column; justify-content: center; align-items: center; background-color: #110C15; pointer-events: none; } .SideBarCard p { margin: 0px; padding: 0px; font-size: 13px; } .SideBarCard img{ margin: 0px; padding: 0px; width: 40px; height: 40px; } .HolderMain{ width: 100%; height: 100%; } .NavBar{ width: 100%; height: 60px; background-color: #110C15; display: flex; justify-content: space-between; align-items: center; } .Main{ height: 100%; width: 100%; overflow-y: scroll; display: flex; align-items: flex-start; flex-direction: row; flex-wrap: wrap; } .SearchBar{ display: flex; justify-content: center; align-items: center; width: 40%; height: 30px; border-radius: 5px; overflow: hidden; border: 1px solid #B993DC; } .SearchBar button{ outline: none; border: none; height: 100%; background-color: transparent; font-family: poppins; display: flex; justify-content: center; align-items: center; } .SearchBar input{ padding: 0px; padding-left: 20px; width: 95%; height: 100%; outline: none; border: none; background-color: transparent; color: white; font-family: poppins; } input::placeholder { color: white; font-family: poppins; }/style>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]