Categories > WeAreDevs > Hangout >
Roblox down
Posted
Yeah, today i went to exploit on roblox and saw it didnt load.
Then i go to status.roblox.com and i see service disruption everywhere from 4:00 PM PDT to 8:44 PM PDT.
Anyone know when it will be fixed?
EDIT: Here's a yt video with updating info: https://www.youtube.com/watch?v=_j0uIBOGN68
UPDATE: thumbnails.roblox.com , ads.roblox.com , https://images.roblox.com/ and voice.roblox.com apis are up again
UPDATE: known downed apis are: lms.roblox.com , chat.roblox.com , auth.roblox.com , apis.roblox.com , accountservice.roblox.com and ecsv2.roblox.com
UPDATE: Roblox.com has a count-down in their css, here's the source to their index.html:
<!DOCTYPE html>
<html>
<head>
<title>Roblox Maintenance</title>
<style type="text/css">
html {
height: 100%;
}
body {
background-color: #000;
color: #fff;
font-family: 'Source Sans Pro', sans-serif;
font-size: 24px;
font-weight: 300;
height: auto;
line-height: 24px;
margin: 0;
min-width: 320px;
text-align: center;
overflow: hidden;
}
.header {
padding: 50px 0 20px;
}
.header img {
width: auto;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.header img {
width: 100%;
height: auto;
}
}
.content {
text-align: center;
}
.notification {
width: auto;
height: auto;
padding: 12px 20px;
margin: 0 auto;
line-height: 36px;
font-style: normal;
font-weight: 300;
color: #fff;
}
.count-down {
color: #f68802;
font-weight: 300;
}
.count-down h1 {
font-weight: 300;
}
.count-down h1.timer {
font-weight: 600;
}
</style>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,regular,600">
</head>
<body>
<div class="header">
<img src="https://images.rbxcdn.com/6ef6e892aea640c3b1f79f0f820caca5" alt="We're making things more awesome. Be back soon." />
</div>
<div class="content">
<div id="countDown" class="count-down">
</div>
</div>
<script type="text/javascript">
function countdownLayout(isVisiable) {
var countdownElm = document.getElementById("countDown");
var countDownTimeHtml = "<h1>Down time: </h1><h1 id='timer' class='timer'></h1>";
if (isVisiable) {
countdownElm.innerHTML = countDownTimeHtml;
} else {
countdownElm.innerHTML = "";
}
}
function formatCountDown(time) {
var _second = 1000;
var _minute = _second * 60;
var _hour = _minute * 60;
var _day = _hour * 24;
var days = Math.floor(time / _day);
var hours = Math.floor((time % _day) / _hour);
var minutes = Math.floor((time % _hour) / _minute);
var countdownString = "";
if (days) {
countdownString = (days == 1) ? days + " day " : days + " days ";
}
if (hours == 1 || hours == 0) {
countdownString += "0" + hours + " hr ";
} else {
if (hours < 10) {
hours = "0" + hours;
}
countdownString += hours + " hrs ";
}
if (minutes == 1 || minutes == 0) {
countdownString += "0" + minutes + " min ";
} else {
if (minutes < 10) {
minutes = "0" + minutes;
}
countdownString += minutes + " mins ";
}
if (time <= _minute) {
var seconds = Math.floor((time % _minute) / _second);
countdownString += seconds + " secs ";
}
return countdownString;
}
function getQuery() {
var query = location.search;
var result = { isQuerySet: false, params: {} };
if (query.length > 0 && query.slice(1).length > 0) {
var queries = query.slice(1).split("&");
result.isQuerySet = true;
for (var i = 0; i < queries.length; i++) {
var tmp = queries[i].split("=");
result.params[tmp[0]] = tmp[1];
}
}
return result;
}
function timer(params) {
var refreshIntervalId;
var endTimeString = params['month'] + "/" + params['day'] + "/" + params['year'] + " " + params['hour'] + ":" + params['min'] + " UTC";
function setTime() {
var end = new Date(endTimeString);
var now = new Date();
var remaining = end - now;
if (remaining > 0) {
var countdownString = formatCountDown(remaining);
if (document.getElementById("countDown").children.length === 0) {
countdownLayout(true);
}
var countdownElm = document.getElementById("timer");
countdownElm.innerHTML = countdownString;
} else {
clearInterval(refreshIntervalId);
countdownLayout(false);
return;
}
}
refreshIntervalId = setInterval(setTime, 1000);
}
window.onload = function () {
// We use a form post to get around browsers caching repeated 302s on GETs
window.setTimeout("document.forms[0].submit();", 30000);
var result = getQuery();
if (result.isQuerySet) {
timer(result.params);
}
};
</script>
<form method="POST" action="https://www.roblox.com/"></form>
</body>
</html>
Search it for the count-down
"Building blocks of imagination, united in the virtual realm, where creativity thrives and friendships ignite. Welcome to the Roblox revolution!" - chatgpt
Replied
Obviously it will eventually be fixed, Roblox isn't good at giving updates in a timely manner
The real question is what happened
Cancel
Post
Top 10 Poop Positions | Beginner's tutorial in making exploits
Xi Jinping Winnie the Pooh
"Building blocks of imagination, united in the virtual realm, where creativity thrives and friendships ignite. Welcome to the Roblox revolution!" - chatgpt
Replied
Its so annoying, Roblox should give frequent updates and be more transparent than just say "internal server error"
Cancel
Post
Top 10 Poop Positions | Beginner's tutorial in making exploits
Xi Jinping Winnie the Pooh
Replied
Someone's DDosing the website/api.
Funni hackerman.
(He probably bought the DDos considering how powerful it is, Close to impossible that he made it.)
Cancel
Post
Added
@57333The site itself is up, I suspect the DDos can't be powerful enough to bring down the website itself, If it was that powerful 100% you would be shown "This site can't be reached". The problem is with the site's working.
https://media.discordapp.net/attachments/902152851608961057/903606091869466665/unknown.png
https://media.discordapp.net/attachments/902152851608961057/903606435550744576/unknown.png
https://media.discordapp.net/attachments/902152851608961057/903606648923385956/unknown.png
Cancel
Post
https://gyazo.com/9e36f19dea3a77fbcdc641f0276c4cd8
"I'll have two number 9s, a number 9 large, a number 6 with extra dip, a number 7, two number 45s, one with cheese, and a large soda."
Replied
@CJ99 bruh, if its a ddos, they can just change the hostname or the url of the files being affected
Cancel
Post
"Building blocks of imagination, united in the virtual realm, where creativity thrives and friendships ignite. Welcome to the Roblox revolution!" - chatgpt
Added
@70052Not really sure tbh.
Cancel
Post
https://gyazo.com/9e36f19dea3a77fbcdc641f0276c4cd8
"I'll have two number 9s, a number 9 large, a number 6 with extra dip, a number 7, two number 45s, one with cheese, and a large soda."
Replied
Update
Games are becoming available to players now according to Roblox's Status Page. It really took them this long, not the first time Roblox been this irresponsible.
Cancel
Post
Added
Update
Roblox is partially working for me.
Game - Stepford County Railways, everything seems to be almost working
https://media.discordapp.net/attachments/768873214373658645/903665232461848576/unknown.png
Cancel
Post
Top 10 Poop Positions | Beginner's tutorial in making exploits
Xi Jinping Winnie the Pooh
Replied
@59690Just shows how vulnerable they are, I hope a data leak doesn't happen later involving everyone's credentials.
prob rly unlikely
Cancel
Post
https://gyazo.com/9e36f19dea3a77fbcdc641f0276c4cd8
"I'll have two number 9s, a number 9 large, a number 6 with extra dip, a number 7, two number 45s, one with cheese, and a large soda."
Replied
@CJ99 You would think that it's unlikely for an attack to make it unplayable as well. At this point if that happens I wouldn't be surprised.
Cancel
Post
Corn is not a great source of nutrients
Replied
Update
Almost 24 hours into the situation, Roblox shut off their website. I'm pretty sure Roblox has some explaining to do later.
Cancel
Post
Top 10 Poop Positions | Beginner's tutorial in making exploits
Xi Jinping Winnie the Pooh
Users viewing this thread:
( Members: 0, Guests: 2, Total: 2 )
Cancel
Post