Categories > WeAreDevs > Hangout >

Roblox down

Posts: 1008

Threads: 66

Joined: Sep, 2021

Reputation: 20

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

  • 0

"Building blocks of imagination, united in the virtual realm, where creativity thrives and friendships ignite. Welcome to the Roblox revolution!" - chatgpt

 

MainDab

Main_EX

Posts: 466

Threads: 39

Joined: Sep, 2020

Reputation: 11

Replied

Obviously it will eventually be fixed, Roblox isn't good at giving updates in a timely manner

 

The real question is what happened 

  • 0

Posts: 1008

Threads: 66

Joined: Sep, 2021

Reputation: 20

Replied

@MainDab, you're right

  • 0

"Building blocks of imagination, united in the virtual realm, where creativity thrives and friendships ignite. Welcome to the Roblox revolution!" - chatgpt

 

MainDab

Main_EX

Posts: 466

Threads: 39

Joined: Sep, 2020

Reputation: 11

Replied

@crazy_cat

 

Its so annoying, Roblox should give frequent updates and be more transparent than just say "internal server error"

 

 

  • 0

CJ99

CJ$

Posts: 197

Threads: 50

Joined: Sep, 2021

Reputation: -6

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.)

  • 0

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

 

 

  • 0

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."

Posts: 1008

Threads: 66

Joined: Sep, 2021

Reputation: 20

Replied

@CJ99 bruh, if its a ddos, they can just change the hostname or the url of the files being affected

  • 0

"Building blocks of imagination, united in the virtual realm, where creativity thrives and friendships ignite. Welcome to the Roblox revolution!" - chatgpt

 

CJ99

CJ$

Posts: 197

Threads: 50

Joined: Sep, 2021

Reputation: -6

Replied

@_realnickk True, But there are plenty of credible people posting about this.

  • 0

Added

@70052Not really sure tbh.

  • 0

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."

TERIHAX

i say im gay as a joke 🙀

Posts: 2243

Threads: 102

Joined: Jul, 2020

Reputation: 32

Replied

@CJ99 ive heard that their servers got the data leaked

  • 0

MainDab

Main_EX

Posts: 466

Threads: 39

Joined: Sep, 2020

Reputation: 11

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.

  • 0

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

  • 0

CJ99

CJ$

Posts: 197

Threads: 50

Joined: Sep, 2021

Reputation: -6

Replied

@59690Just shows how vulnerable they are, I hope a data leak doesn't happen later involving everyone's credentials.

 

prob rly unlikely

  • 0

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."

KenQuake

#Nihon4Life

vip

Posts: 394

Threads: 6

Joined: Sep, 2020

Reputation: 29

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.

  • 0

Corn is not a great source of nutrients 

MainDab

Main_EX

Posts: 466

Threads: 39

Joined: Sep, 2020

Reputation: 11

Replied

Update


Almost 24 hours into the situation, Roblox shut off their website. I'm pretty sure Roblox has some explaining to do later.

 

https://media.discordapp.net/attachments/768873214373658645/903749243964117002/6ef6e892aea640c3b1f79f0f820caca5.jpeg

  • 0

Next >>>

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )