logo
How we found TeaOnHer spilling users' driver's licenses in less than 10 minutes

How we found TeaOnHer spilling users' driver's licenses in less than 10 minutes

TechCrunch19 hours ago
For an app all about spilling the beans on who you're allegedly dating, it's ironic that TeaOnHer was spilling the personal information of thousands of its users to the open web.
TeaOnHer was designed for men to share photos and information about women they claim to have been dating. But much like Tea, the dating-gossip app for women it was trying to replicate, TeaOnHer had gaping holes in its security that exposed its users' personal information, including photos of their driver's licenses and other government-issued identity documents, as TechCrunch reported last week.
These gated community-like apps were created ostensibly to let users share information about their relationships under the guise of personal safety. However, shoddy coding and security flaws highlight the ongoing privacy risks inherent in requiring users to submit sensitive information to use apps and websites.
Such risks are only going to worsen; popular apps and web services are already having to comply with age verification laws that require people to submit their identity documents before they can be granted access to adult-themed content, despite the privacy and security risks associated with storing databases of people's personal information.
When TechCrunch published our story last week, we did not publish specific details of the bugs we discovered in TeaOnHer, erring on the side of caution so as to not help bad actors exploit the bug. Instead, we decided to publish a limited disclosure, because of the app's rising popularity and the immediate risks that users faced when using the app.
As of the time of disclosure, TeaOnHer was #2 in the free app charts on the Apple App Store, a position still held by the app today.
The flaws we found appear to be resolved. TechCrunch can now share how we were able to find users' driver's licenses within 10 minutes of being sent a link to the app in the App Store, thanks to easy to find flaws in the app's public-facing backend system, or API.
The app's developer, Xavier Lampkin, did not respond to multiple requests for comment after we submitted details of the security flaws, nor would Lampkin commit to notifying affected TeaOnHer users or state regulators of the security lapse.
We also asked Lampkin if any security reviews were carried out before the TeaOnHer app was launched, but we got no reply. (We have more on disclosure later on.)
Alright, start the clock.
TeaOnHer exposed 'admin panel' credentials
Before we even downloaded the app, we first wanted to find out where TeaOnHer was hosted on the internet by looking at its public-facing infrastructure, such as its website and anything hosted on its domain.
This is usually a good place to start as it helps understand what other services the domain is connected to on the internet.
To find the domain name, we first looked (by chance) at the app's listing on the Apple App Store to find the app's website. This can usually be found in its privacy policy, which apps must include before Apple will list them. (The app listing also claims the developer 'does not collect any data from this app,' which is demonstrably false, so take that as you will.)
TeaOnHer's privacy policy was in the form of a published Google Doc, which included an email address with a teaonher.com domain, but no website.
The website wasn't public at the time, so with no website loading, we looked at the domain's public-facing DNS records, which can help to identify what else is hosted on the domain, such as the type of email servers or web hosting. We also wanted to look for any public subdomains that the developer might use to host functionality for the app (or host other resources that should probably not be public), such as admin dashboards, databases, or other web-facing services.
But when we looked at the TeaOnHer's public internet records, it had no meaningful information other than a single subdomain, appserver.teaonher.com .
When we opened this page in our browser, what loaded was the landing page for TeaOnHer's API (for the curious, we uploaded a copy here). An API simply allows things on the internet to communicate with each other, such as linking an app to its central database.
It was on this landing page that we found the exposed email address and plaintext password (which wasn't that far off 'password') for Lampkin's account to access the TeaOnHer 'admin panel.'
The API page showed that the admin panel, used for the document verification system and user management, was located at 'localhost,' which simply refers to the physical computer running the server and may not have been directly accessible from the internet. It's unclear if anyone could have used the credentials to access the admin panel, but this was in itself a sufficiently alarming finding.
At this point, we were only about two minutes in.
Otherwise, the API landing page didn't do much other than offer some indication as to what the API can do. The page listed several API endpoints, which the app needs to access in order to function, such as retrieving user records from TeaOnHer's database, for users to leave reviews, and sending notifications.
With knowledge of these endpoints, it can be easier to interact with the API directly, as if we were imitating the app itself. Every API is different, so learning how an API works and how to communicate with one can take time to figure out, such as which endpoints to use and the parameters needed to effectively speak its language. Apps like Postman can be helpful for accessing and interacting directly with APIs, but this requires time and a certain degree of trial and error (and patience) to make APIs spit out data when they shouldn't.
But in this case, there was an even easier way.
TeaOnHer API allowed unauthenticated access to user data
This API landing page included an endpoint called /docs , which contained the API's auto-generated documentation (powered by a product called Swagger UI) that contained the full list of commands that can be performed on the API.
This documentation page was effectively a master sheet of all the actions you can perform on the TeaOnHer API as a regular app user, and more importantly, as the app's administrator, such as creating new users, verifying users' identity documents, moderating comments, and more.
The API documentation also featured the ability to query the TeaOnHer API and return user data, essentially letting us retrieve data from the app's backend server and display it in our browser.
While it's not uncommon for developers to publish their API documentation, the problem here was that some API requests could be made without any authentication — no passwords or credentials were needed to return information from the TeaOnHer database. In other words, you could run commands on the API to access users' private data that should not have been accessible to a user of the app, let alone anyone on the internet.
All of this was conveniently and publicly documented for anyone to see.
Requesting a list of users currently in the TeaOnHer identity verification queue, for example — no more than pressing a button on the API page, nothing fancy here — would return dozens of account records on people who had recently signed up to TeaOnHer.
The records returned from TeaOnHer's server contained users' unique identifiers within the app (essentially a string of random letters and numbers), their public profile screen name, and self-reported age and location, along with their private email address. The records also included web address links containing photos of the users' driver's licenses and corresponding selfies.
Worse, these photos of driver's licenses, government-issued IDs, and selfies were stored in an Amazon-hosted S3 cloud server set as publicly accessible to anyone with their web addresses. This public setting lets anyone with a link to someone's identity documents open the files from anywhere with no restrictions.
Two driver's licenses (redacted by TechCrunch) exposed by the flaws in the TeaOnHer app.
Image Credits:TechCrunch (screenshot)
With that unique user identifier, we could also use the API page to directly look up individual users' records, which would return their account data and any of their associated identity documents. With uninhibited access to the API, a malicious user could have scraped huge amounts of user data from the app, much like what happened with the Tea app to begin with.
From bean to cup, that was about 10 minutes, and we hadn't even logged-in to the app yet. The bugs were so easy to find that it would be sheer luck if nobody malicious found them before we did.
We asked, but Lampkin would not say if he has the technical ability, such as logs, to determine if anyone had used (or misused) the API at any time to gain access to users' verification documents, such as by scraping web addresses from the API.
In the days since our report to Lampkin, the API landing page has been taken down, along with its documentation page, and it now displays only the state of the server that the TeaOnHer API is running on as 'healthy.' At least on cursory tests, the API now appears to rely on authentication, and the previous calls made using the API no longer work.
The web addresses containing users' uploaded identity documents have also been restricted from public view.
TeaOnHer developer dismissed efforts to disclose flaws
Given that TeaOnHer had no official website at the time of our findings, TechCrunch contacted the email address listed on the privacy policy in an effort to disclose the security lapses.
But the email bounced back with an error saying the email address couldn't be found. We also tried contacting Lampkin through the email address on his website, Newville Media, but our email bounced back with the same error message.
TechCrunch reached Lampkin via LinkedIn message, asking him to provide an email address where we could send details of the security flaws. Lampkin responded with a general 'support' email address in response.
When TechCrunch discloses a security flaw, we reach out to confirm first that a person or company is the correct recipient. Otherwise, blindly sending details of a security bug to the wrong person could create a risk. Before sharing specific details of the flaws, we asked the recipient of the 'support' email address if this was the correct address to disclose a security exposure involving TeaOnHer user data.
'You must have us confused with 'the Tea app',' Lampkin replied by email. (We hadn't.) 'We don't have a security breach or data leak,' he said. (It did.) 'We have some bots at most but we haven't scaled big enough to be in that conversation yet, sorry you were misinformed.' (We weren't)
Satisfied that we had established contact with the correct person (albeit not with the response we received), TechCrunch shared details of the security flaws, as well as several links to exposed driver's licenses, and a copy of Lampkin's own data to underscore the severity of the security issues.
'Thank you for this information. This is very concerning. We are going to jump on this right now,' said Lampkin.
Despite several follow-up emails, we have not heard from Lampkin since we disclosed the security flaws.
It doesn't matter if you're a one-person software shop or a billionaire vibe coding through a weekend: Developers still have a responsibility to keep their users' data safe. If you can't keep your users' private data safe, don't build it to begin with.
If you have evidence of a popular app or service leaking or exposing information, get in touch. You can securely contact this reporter via encrypted message at zackwhittaker.1337 on Signal.
Orange background

Try Our AI Features

Explore what Daily8 AI can do for you:

Comments

No comments yet...

Related Articles

YouTube Music gets another music discovery tool that Spotify doesn't have
YouTube Music gets another music discovery tool that Spotify doesn't have

Android Authority

time4 minutes ago

  • Android Authority

YouTube Music gets another music discovery tool that Spotify doesn't have

Edgar Cervantes / Android Authority TL;DR Google is testing a new Daily Discover feed in YouTube Music. Like the existing weekly discover, the daily discover aims to help you find artists or music similar to what you already listen. Google only appears to be testing it at the moment, as the feature hasn't rolled out widely. Although its supremacy is contentious, YouTube Music is easily among the top five music and podcast streaming services globally. Its popularity naturally stems from the fact that it automatically sorts music (or other audio-based media) uploaded to YouTube. While the automatic sourcing already allows you to discover more tracks, including renditions, covers, audiobooks, etc., YouTube Music is adding a new Daily Discover feed to make the process much easier. We recently learned that Google is testing a new Daily Discover option to recommend new tracks every day based on your preferences. The feature, as spotted by Reddit user One_Flow_8127, is positioned somewhere on the homepage. It appears on top of the 'Trending songs for you' section, which appears after several scrolls on YouTube Music's homepage on the Android app. Based on the screenshots shared, we can see these recommendations show up in a carousel format, and people can scroll left or right to explore multiple recommendations. The feature shows recommendations for particular soundtracks instead of entire playlists, and also tells you the reason why it is being suggested. However, if you prefer, the suggestions also come with a 'Play All' button that should combine all tracks into a new playlist. The primary motive behind this feature is to learn about new artists and their music, which may be loosely based on your interests and listening habits. While its biggest competitor, Spotify, also offers discovery features, it primarily focuses on familiar artists and dispenses these recommendations in playlists instead of regular tracks. Don't want to miss the best from Android Authority? Set us as a preferred source in Google Search to support us and make sure you never miss our latest exclusive reports, expert analysis, and much more. The daily discover option itself isn't new and was previously spotted by another Reddit user, BarisberatWNR, about a month ago. However, for them, the recommendations appeared in a different location on the homepage, suggesting YouTube may be testing varied placements to see what is likely to get the most attention. Last month, another user posted in Google's Community forums about the feature appearing and then being removed from their account. From what we expect, the daily discover feature could complement or substitute YouTube's Discover mix, a playlist refreshed weekly instead of daily. To be able to access this weekly discover playlist, you must scroll down on YouTube Music's homepage and spot it under the 'Mixed for you' tab. This appears to be a limited test for certain users, as many others on the original Reddit post have commented about not receiving it. We can't access the feature either, and it isn't easy to ascertain whether this is meant to be an A/B test or a rollout. Further, it appears to have turned it on from the server-side, so updating the app to a newer version will not achieve positive results, though there is no harm in doing so. Follow

The Narwal Flow is the closest I've seen a robot vacuum get to being perfect
The Narwal Flow is the closest I've seen a robot vacuum get to being perfect

Android Authority

time4 minutes ago

  • Android Authority

The Narwal Flow is the closest I've seen a robot vacuum get to being perfect

Narwal Flow If you're considering a robot vacuum purchase purely based on its ability to leave floors of all types as clean as possible, the Narwal Flow is the best bot you can get. AI-powered navigation, EdgeReach Technology, and anti-tangle brushes clean carpets and hard floors all the way to the edges and into the corners with zero fuss. The multi-function base station, with self-cleaning and drying functions, also makes it a breeze to use. Today, I looked at my floor and noticed it looked exceptionally good. I have been reviewing the very best robot vacuums for quite some time now, so they are constantly running in my home. What bot made me take notice? That would be the Narwal Flow. Not only does the floor look great, but the edges and corners are super clean, and my rugs are clean and have not moved from where I placed them. A number of vacuums can accomplish all of these things, but this is the first time they have all happened at the same time. And after testing it for a month, running it for well over 1,000 hours and 7,500 sqft of floor cleaning tasks, I'm pretty happy to declare that this is one of the best robot vacuums you can buy. What's the Narwal Flow all about? Paul Jones / Android Authority Back at CES 2025 we awarded the Narwal Flow a CES 2025 Breakthrough award for its various innovations. The multi-function base station, and the new FlowWash System with EdgeReach Technology were top factors in that decision. It was obvious from those early demos that this was going to be the bot to beat for floor mopping in 2025, so I'm super pleased to have now had the bot in-house for live testing. Traditionally, Narwal deploys dual spinning mop pads on its bots. With the Narwal Flow, the FlowWash Mopping System is an elongated roller system. This creates a full-width flat surface that can polish a lot of surfaces at once. The Flow also adds EdgeReach, which allows the roller to push out to the side so that the bot can clean completely to the edge of your room and into corners. Jonathan Feist / Android Authority The Flow is equipped with familiar folding front brushes and a zero-tangling main roller, powered by 20,000 Pa of suction pressure for all of your vacuuming needs. Though Narwal has been a leader in terms of mapping and navigation in the past, the Flow steps that up, too. Combining powerful AI computing in their Twin-AI Dodge with the reliability of 3D modeling from LiDAR sensors, the Flow navigates my home better than any Narwal bot before it. Plus, the LiDAR sensor is now situated in the rear casing, making this one of the shortest Narwal bots as well, perfect for getting under furniture. Jonathan Feist / Android Authority The 8-in-1 multi-function base station houses clean and dirty water canisters, a large dry debris collection bag, and an assortment of self-cleaning and automation features. These features promise many weeks of maintenance-free and stress-free operation. Many promises, but how does the Narwal Flow stack up in the real world? Jonathan Feist / Android Authority Let's start with the basics. The Flow is proving to be a very reliable vacuum, and that all starts with mapping and navigation. After setup, the Flow mapped my floors just as well as previous Narwal units did, and it continues to navigate with precision. It accurately identifies cords, shoes, furniture, and carpets that it should avoid running over. This includes my extra-thick bath mats that I always talk about; the Flow is the first bot to identify the mats as being too tall for it, avoiding them instead of getting stuck on them. Jonathan Feist / Android Authority Narwal vacuum suction systems were enough to pick up metal marbles, Lego, and other heavy debris back when the bots were around 8,000 Pa; now that the Flow offers 20,000 Pa, picking up debris and pulling things out of deeper carpets is better than ever. The Flow successfully gets those pesky pine needles from all the cracks and crevices. Edge-to-edge, there are few bots as thorough as the Narwal Flow The navigation and reach systems effectively clean the edges and corners of the room. These systems also ensure coverage around furniture legs, which is great. The Narwal Flow continues the tradition of Narwal bots successfully cleaning all the way under my kitchen table, navigating the chair legs and other obstacles. It helps that the bot is shorter than most, so it has no issue at all getting under the low bars and my other low furniture. Jonathan Feist / Android Authority Dry debris is cleanly pulled from the bot after each session, storing the dust and leaves in the 2.5L vacuum bag in the base station. That multi-function base station also does a great job at cleaning the mop pad, using heat and air. For my wood floors, this is the best clean I've seen from any robot vacuum to date. In terms of mopping, the roller pad presses into the floor with 12N of downward force to buff away any dirt and grime that might have still existed on my floors. My hardwoods and tile are looking fantastic. The cleaning solution that Narwal creates has always worked well with my floors, which might change your results, but this is, without question, the best result from a Narwal bot that I've seen to date, and, in fact, the best I've seen from any robot vacuum, period. Jonathan Feist / Android Authority Sadly, the base station does not have automatic detergent addition. You have to manually add the solution to the clean water canister each time you fill it. Speaking of, I'm having to refill the bucket (and empty and clean the used water bucket) for every 900 sqft of mopping. That's just over two full cleanings of my space. Of course, the Flow has plenty of AI smarts baked in, too. I've been using the Freo Mind mode, which has been adjusting the cleaning strategy as it goes. The bot spends more or less time in certain areas based on previous cleaning needs, and may change up its flow, starting in one room or another, or cleaning edges first, then the middle. Narwal is still using its DirtSense technology, which very accurately detects the cleanliness of the water coming off the mop roller. The system overall knows how clean or dirty your space is by tracking the cleanliness of the roller at the time of cleaning in the base station. If the roller is too dirty, then the bot may go back out to clean again. Jonathan Feist / Android Authority What matters most to me is that I cannot see any spots on my floor that the Flow has missed, and I do not have to go around after it to put things back in place that it's run into or pushed around. Most modern high-end robot vacuums are really good at navigation, but the Narwal Flow stands out for precision. In terms of navigation, the absolute only thing I've seen that the Flow could improve on is how it handles closed doors. If the bot knows there's a room behind that door, it's a little pushy at trying to get in there. It does not run into the door if it's completely closed, but if the door is just barely open, the Flow may try to push in. That was a startling experience when I was in the shower once, but it was worth the laugh. Narwal Flow specifications Narwal Flow Expand Robot Dimensions: 368 x 330 x 95 mm Functions ✔ Sweeps ✔ Vacuums ✔ Mops Expand Narwal Flow review verdict: Is it worth it? Jonathan Feist / Android Authority At $1,499 MSRP, the Flow is definitely on the premium end of robot vacuum cleaners, but if I had the cash, I'd buy one as a gift for all of my family and friends. In particular, I know someone with three big dogs who is struggling to keep their floors clean. The Narwal Flow is the first bot I think can keep up with those slobbery beasts and their shedding hair. For the overall cleaning experience, I am reminded of the Narwal Freo Z Ultra ($1499.99 at Amazon) and the Roborock Saros 10R ($1599.99 at Amazon). The Freo Z Ultra is from an older generation of Narwal bots, which helped pave the way for what we get today. It included superb, LiDAR-driven mapping and navigation, and also produced a very pleasant polished clean on my hard floors. Automation and AI-smarts made the Freo Z Ultra a fantastic choice, but it only has 12,000 Pa of suction pressure, and the LiDAR turret on top made it fairly tall. The Narwal Flow feels better to me in almost every way. The Flow is a no-fuss floor cleaner with great navigation. The next best option in its price tier is the Roborock Saros 10R, which excels at navigation, even if the Narwal has it beat in terms of mopping. If you really want to have fun, the Saros Z70 ($2599 at Amazon) is also available, but most people won't want to pay an extra $1,000 for that bot's party trick: a robotic arm. If you want something below the $1,000 price threshold, the Eureka J15 Pro Ultra ($799.99 at Amazon) is also a great choice. Jonathan Feist / Android Authority I try not to get attached to review units I get sent to test, but I'm going to be sad when this bot moves on. That's about the best recommendation I think I can give. Narwal Flow Reliable, powerful vacuuming • Great mopping capabilities • Great hair anti-tangle • Precision navigation MSRP: $1,499.99 Narwal's best in 2025 is a superb floor cleaner The Narwal Flow is a robot vacuum with powerful mopping tools for a full-home clean. The tank-tread style mop roller has EdgeReach Technology to clean from edge-to-edge in your home, including into the corners and around tight furniture legs. With 22,000 Pa of suction pressure, 12N of mopping force, and AI-driven navigation, the Flow lacks for little. See price at NarwalSee price at Amazon Positives Reliable, powerful vacuuming Reliable, powerful vacuuming Great mopping capabilities Great mopping capabilities Impressive hair anti-tangle rollers Impressive hair anti-tangle rollers Precision navigation Precision navigation Reliable mapping and navigation Reliable mapping and navigation Self-cleaning and drying multi-function base station Cons Consume water very quickly Consume water very quickly Doesn't play nicely with doors sometimes Follow

RBLX Q2 Deep Dive: Viral Hits Drive User Growth, Guidance Highlights Monetization Shift
RBLX Q2 Deep Dive: Viral Hits Drive User Growth, Guidance Highlights Monetization Shift

Yahoo

time29 minutes ago

  • Yahoo

RBLX Q2 Deep Dive: Viral Hits Drive User Growth, Guidance Highlights Monetization Shift

Gaming metaverse operator Roblox (NYSE:RBLX) missed Wall Street's revenue expectations in Q2 CY2025, but sales rose 20.9% year on year to $1.08 billion. Next quarter's revenue guidance of $1.14 billion underwhelmed, coming in 3.5% below analysts' estimates. Its non-GAAP loss of $0.41 per share was 7% below analysts' consensus estimates. Is now the time to buy RBLX? Find out in our full research report (it's free). Roblox (RBLX) Q2 CY2025 Highlights: Revenue: $1.08 billion vs analyst estimates of $1.10 billion (20.9% year-on-year growth, 2% miss) Adjusted EPS: -$0.41 vs analyst expectations of -$0.38 (7% miss) Adjusted EBITDA: $320.3 million vs analyst estimates of $220.3 million (29.6% margin, 45.4% beat) The company lifted its revenue guidance for the full year to $4.44 billion at the midpoint from $4.33 billion, a 2.6% increase Operating Margin: -29.8%, down from -26.6% in the same quarter last year Daily Active Users: 111.8 million, up 32.3 million year on year Market Capitalization: $89.8 billion StockStory's Take Roblox's second quarter results reflected strong user and engagement growth, as management emphasized the impact of several viral experiences and ongoing investments in platform quality, developer tools, and global infrastructure. CEO David Baszucki attributed the performance to robust creator activity and highlighted the emergence of new experiences such as Grow a Garden, which contributed to a broad-based lift in engagement and monetization across the platform. Baszucki noted, 'Our strength in Q2 was broad-based across the platform,' and pointed to record levels of both daily active users and monthly unique payers as evidence of this momentum. Looking ahead, Roblox's updated guidance is shaped by its belief in continued expansion of the creator ecosystem, AI-powered platform enhancements, and monetization diversification. CFO Naveen Chopra cautioned that guidance for the next two quarters reflects conservative assumptions around the sustainability of recent viral hits, as well as tougher year-over-year comparisons. Chopra stated, 'It's just too early to extrapolate Q2's extraordinary trends over a prolonged period of time,' but outlined confidence in the company's strategy to capture a larger share of the global gaming content market through technology investments and new monetization channels. Key Insights from Management's Remarks Management pointed to a combination of viral content, improved platform infrastructure, and expansion into new demographics and geographies as key drivers for the quarter and areas of focus for future growth. Viral content drives engagement: Experiences like Grow a Garden and 99 Nights in the Forest contributed to a surge in daily active users, with Baszucki noting that four out of the platform's five top hits launched within the last year. These titles not only attracted new players but also encouraged cross-engagement with other games, highlighting a healthy ecosystem. Developer ecosystem broadening: Chopra emphasized that more than half of the experience spending growth came from titles outside the top ten, signaling a wider distribution of earnings and opportunity for smaller creators. The new Creator Rewards program shifts incentives to reward developers who bring organic traffic and new users, aiming to further diversify and strengthen the content pipeline. AI and infrastructure investments: The company rolled out enhancements such as Cube 3D, a generative AI model for in-game assets, and continued to improve global server performance. These investments are intended to accelerate content creation and support rapid scaling as user numbers climb. International expansion gains traction: Management cited particularly strong growth in the Asia-Pacific region, attributing success to improved translation, localized infrastructure, and targeted content. Countries like Indonesia and Korea saw year-over-year bookings growth exceeding 100%. Shift in monetization models: Roblox is experimenting with new monetization tools, such as Rewarded Video ads (including through a partnership with Google), dynamic pricing, and IP licensing. The company sees these as critical to increasing revenue per user, especially among older demographics. Drivers of Future Performance Roblox expects continued user growth and content diversity to underpin its outlook, with a focus on expanding monetization and sustaining engagement as key priorities. Sustaining viral hit momentum: Management is cautious about projecting ongoing success from recent viral titles, assuming normalization in engagement and spending. However, they believe investments in discovery algorithms and creator incentives could foster repeatable viral content that drives further platform growth. Monetization diversification: The rollout of new ad formats, partnerships for IP licensing, and expanded creator monetization tools are expected to gradually increase revenue per user. Management highlighted opportunities to capture higher monetization rates among older users and through non-traditional gaming genres. Headwinds from tougher comparisons and uncertainty: Chopra referenced difficult year-over-year comps in the second half of the year and the unpredictability of viral trends. The company's conservative guidance reflects these risks, particularly regarding the durability of user engagement and the timing of new monetization initiatives. Catalysts in Upcoming Quarters In the coming quarters, the StockStory team will closely monitor (1) the sustainability of viral hit engagement and whether new experiences can replicate recent success, (2) incremental monetization from new ad formats and IP licensing, and (3) continued expansion into key international markets, especially in Asia-Pacific. Execution on AI-powered platform upgrades and creator incentive programs will also be critical signposts. Roblox currently trades at $129.50, up from $124.90 just before the earnings. Is there an opportunity in the stock?See for yourself in our full research report (it's free). Now Could Be The Perfect Time To Invest In These Stocks When Trump unveiled his aggressive tariff plan in April 2025, markets tanked as investors feared a full-blown trade war. But those who panicked and sold missed the subsequent rebound that's already erased most losses. Don't let fear keep you from great opportunities and take a look at Top 9 Market-Beating Stocks. This is a curated list of our High Quality stocks that have generated a market-beating return of 183% over the last five years (as of March 31st 2025). Stocks that made our list in 2020 include now familiar names such as Nvidia (+1,545% between March 2020 and March 2025) as well as under-the-radar businesses like the once-micro-cap company Kadant (+351% five-year return). Find your next big winner with StockStory today. StockStory is growing and hiring equity analyst and marketing roles. Are you a 0 to 1 builder passionate about the markets and AI? See the open roles here. Sign in to access your portfolio

DOWNLOAD THE APP

Get Started Now: Download the App

Ready to dive into a world of global content with local flavor? Download Daily8 app today from your preferred app store and start exploring.
app-storeplay-store