• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 13:51
CEST 19:51
KST 02:51
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Team TLMC #5 - Finalists & Open Tournaments0[ASL20] Ro16 Preview Pt2: Turbulence7Classic Games #3: Rogue vs Serral at BlizzCon9[ASL20] Ro16 Preview Pt1: Ascent10Maestros of the Game: Week 1/Play-in Preview12
Community News
Weekly Cups (Sept 8-14): herO & MaxPax split cups3WardiTV TL Team Map Contest #5 Tournaments1SC4ALL $6,000 Open LAN in Philadelphia8Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues29LiuLi Cup - September 2025 Tournaments3
StarCraft 2
General
#1: Maru - Greatest Players of All Time Team Liquid Map Contest #21 - Presented by Monster Energy Weekly Cups (Sept 8-14): herO & MaxPax split cups SpeCial on The Tasteless Podcast Team TLMC #5 - Finalists & Open Tournaments
Tourneys
SC4ALL $6,000 Open LAN in Philadelphia Sparkling Tuna Cup - Weekly Open Tournament WardiTV TL Team Map Contest #5 Tournaments Maestros of The Game—$20k event w/ live finals in Paris RSL: Revival, a new crowdfunded tournament series
Strategy
Custom Maps
External Content
Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around
Brood War
General
[ASL20] Ro16 Preview Pt2: Turbulence Diplomacy, Cosmonarchy Edition BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion ASL20 General Discussion
Tourneys
[ASL20] Ro16 Group D [ASL20] Ro16 Group C [Megathread] Daily Proleagues SC4ALL $1,500 Open Bracket LAN
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile General RTS Discussion Thread Nintendo Switch Thread Borderlands 3
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread Russo-Ukrainian War Thread The Big Programming Thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
The Personality of a Spender…
TrAiDoS
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1822 users

[Patch 3.10: Yimake Patch] General Discussion - Page 317

Forum Index > LoL General
Post a Reply
Prev 1 315 316 317 318 319 331 Next
No more bad posting
SnK-Arcbound
Profile Joined March 2005
United States4423 Posts
August 21 2013 02:15 GMT
#6321
I actually used https://entima.net/random/ to make myself some relatively random passwords. The worst passwords are dictionary words with leet speek change characters, passwords cracking software does that now as a basis. Apparently the best passwords are created through Diceware, and a diceware dictionary.
nyxnyxnyx
Profile Joined April 2010
Indonesia2978 Posts
August 21 2013 02:19 GMT
#6322
On August 21 2013 10:02 thenexusp wrote:
Show nested quote +
On August 21 2013 09:16 obesechicken13 wrote:
I always lose respect for companies that don't have enough password security. Our only option now is to really have an application that saves all our passwords so we can remember complex passwords. Xkcd's password can be dictionary brute force broken. But Riot's database was hacked or sold away.

What lastpass does is shut down if the password server has too much bandwith in transactions and it hides all its passwords in tons of gigabytes of junk data. I wouldn't be surprised if someone had the passwords to 80% of Riot's base right now.

I'm not saying that's necessarily true, but from my novice perspective a database only needs 1 query to get all the users' data. It's not a likely hard query to run either. Before anyone realized what was going on you could have all the hashed passwords for riot's users and their emails and usernames in an excel spreadsheet.

Then you just have to look at some passwords that have been leaked in the past for other companies that were stored as plain text. Then you run these passwords through Riot's salt to hash them the same way that Riot did. Now you can compare hashes to hashes and figure out what the plain text passwords of Riot's users is.

There's some wrong information in here and I'll just go point by point:

- This is why you never, ever reuse the same password for multiple sites.

- xkcd's 4x dictionary words approach cannot be brute forced. The idea is that the combination of 4 (random, independent) dictionary words cannot be brute-forced, because each additional word multiplicatively increases the brute-force time.. Say the words are taken from the 10,000 most common words. A password containing a single dictionary word might be brute-forced in 0.01 second. But 4 dictionary words together exponentially increases the number of possible passwords. so instead of 10,000 things to search through you have 10,000,000,000,000,000. This takes 10,000,000,000 seconds, which is hundreds of years.

- You can get all the hashes and salts, but as long as your password is decently secure your password should still be safe. The whole point of salting & hashing your passwords is to mitigate the damage in the case of a database break-in.

- You misunderstand how password salts work. There isn't a single "Riot salt" that is applied to each password. Each user has his own salt, which is stored in the database in the same row as the user. The idea is to make it so that one can't create a comprehensive table of password->hash combinations to immediately break large sections of the database; you have to redo the work for each user because each user has a different salt.

- You should never use a password that's been leaked on one of the plaintext leaks. If you have an original, secure password, chances are you're fine.

- One way to check your password security is by asking "if the attacker knew what form my password took, how many other passwords are possible?" For example, if your password form was "common dictionary word followed by a number", there are about 10,000*10 = 100,000 possible passwords, which is horribly insecure. If you use "common dictionary word with some letters in leetspeak" you have 10,000*16ish (assuming 4 possible letters to substitute or not), which is still bad. You want something on the order of 10^14 at least, more if you're paranoid about future advances in technology.
- On the other hand, you don't need the most secure password; all you need to be is have a harder-to-crack password than the next guy. If someone were to comb through Riot's databases, and finds 100,000 people who have passwords that can be cracked in 3 minutes, he's not going to bother with yours if yours takes an hour to crack (even if it is theoretically doable). (Still, it's probably better to go with passwords that will take thousands of years)

And more stuff...

- A list of the 10,000 most common passwords: http://pastebin.com/Y1Tx2hA9
There are some interesting things on here. For example, "zaqxsw". If you think about it, you might see how someone would use this password...
Needless to say, if your password appears here you are very unsafe.


I'm not an expert or anything, just read this article a little. Wouldn't it be possible to do a combinator attack like here:
"The specific type of hybrid attack that cracked that password is known as a combinator attack. It combines each word in a dictionary with every other word in the dictionary. Because these attacks are capable of generating a huge number of guesses—the square of the number of words in the dict—crackers often work with smaller word lists or simply terminate a run in progress once things start slowing down. Other times, they combine words from one big dictionary with words from a smaller one. Steube was able to crack "momof3g8kids" because he had "momof3g" in his 111 million dict and "8kids" in a smaller dict.

"The combinator attack got it! It's cool," he said. Then referring to the oft-cited xkcd comic, he added: "This is an answer to the batteryhorsestaple thing.""
cool beans
MidnightGladius
Profile Blog Joined August 2007
China1214 Posts
August 21 2013 02:37 GMT
#6323
Continuing from the relative inefficiency of philo/gp10, I've recently had quite a bit of success going sightstone -> boots -> chalice -> ruby sightstone -> mobility boots -> philo -> mikaels -> indefinite wards on Sona. You more than make up for the lost regen from philo just from chalice/w spam, and it puts way more pressure on their bot lane. I hadn't played much with the (relatively) new mikaels, but I've been quite impressed with it so far. Having an additional cleanse helps prevent throws, and the burst heal from active+w is not insignificant.

Also, my password is pinyin, with numbers, of a random Chinese statement.
Trust in Bayes.
WiseBagus
Profile Joined September 2011
Canada452 Posts
August 21 2013 02:51 GMT
#6324
I have been getting Soulstealer in game where I play Lulu, Sona, Janna, and Soraka. I usually go SS> Boots> Chalice> Ruby SS> Mobi Boots> Philo > Mejai> Crucible> into a morello or something else we need.
"When you come at the King, you best not miss"
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
Last Edited: 2013-08-21 03:05:09
August 21 2013 03:04 GMT
#6325
On August 21 2013 11:19 nyxnyxnyx wrote:
Show nested quote +
On August 21 2013 10:02 thenexusp wrote:
On August 21 2013 09:16 obesechicken13 wrote:
I always lose respect for companies that don't have enough password security. Our only option now is to really have an application that saves all our passwords so we can remember complex passwords. Xkcd's password can be dictionary brute force broken. But Riot's database was hacked or sold away.

What lastpass does is shut down if the password server has too much bandwith in transactions and it hides all its passwords in tons of gigabytes of junk data. I wouldn't be surprised if someone had the passwords to 80% of Riot's base right now.

I'm not saying that's necessarily true, but from my novice perspective a database only needs 1 query to get all the users' data. It's not a likely hard query to run either. Before anyone realized what was going on you could have all the hashed passwords for riot's users and their emails and usernames in an excel spreadsheet.

Then you just have to look at some passwords that have been leaked in the past for other companies that were stored as plain text. Then you run these passwords through Riot's salt to hash them the same way that Riot did. Now you can compare hashes to hashes and figure out what the plain text passwords of Riot's users is.

There's some wrong information in here and I'll just go point by point:

- This is why you never, ever reuse the same password for multiple sites.

- xkcd's 4x dictionary words approach cannot be brute forced. The idea is that the combination of 4 (random, independent) dictionary words cannot be brute-forced, because each additional word multiplicatively increases the brute-force time.. Say the words are taken from the 10,000 most common words. A password containing a single dictionary word might be brute-forced in 0.01 second. But 4 dictionary words together exponentially increases the number of possible passwords. so instead of 10,000 things to search through you have 10,000,000,000,000,000. This takes 10,000,000,000 seconds, which is hundreds of years.

- You can get all the hashes and salts, but as long as your password is decently secure your password should still be safe. The whole point of salting & hashing your passwords is to mitigate the damage in the case of a database break-in.

- You misunderstand how password salts work. There isn't a single "Riot salt" that is applied to each password. Each user has his own salt, which is stored in the database in the same row as the user. The idea is to make it so that one can't create a comprehensive table of password->hash combinations to immediately break large sections of the database; you have to redo the work for each user because each user has a different salt.

- You should never use a password that's been leaked on one of the plaintext leaks. If you have an original, secure password, chances are you're fine.

- One way to check your password security is by asking "if the attacker knew what form my password took, how many other passwords are possible?" For example, if your password form was "common dictionary word followed by a number", there are about 10,000*10 = 100,000 possible passwords, which is horribly insecure. If you use "common dictionary word with some letters in leetspeak" you have 10,000*16ish (assuming 4 possible letters to substitute or not), which is still bad. You want something on the order of 10^14 at least, more if you're paranoid about future advances in technology.
- On the other hand, you don't need the most secure password; all you need to be is have a harder-to-crack password than the next guy. If someone were to comb through Riot's databases, and finds 100,000 people who have passwords that can be cracked in 3 minutes, he's not going to bother with yours if yours takes an hour to crack (even if it is theoretically doable). (Still, it's probably better to go with passwords that will take thousands of years)

And more stuff...

- A list of the 10,000 most common passwords: http://pastebin.com/Y1Tx2hA9
There are some interesting things on here. For example, "zaqxsw". If you think about it, you might see how someone would use this password...
Needless to say, if your password appears here you are very unsafe.


I'm not an expert or anything, just read this article a little. Wouldn't it be possible to do a combinator attack like here:
"The specific type of hybrid attack that cracked that password is known as a combinator attack. It combines each word in a dictionary with every other word in the dictionary. Because these attacks are capable of generating a huge number of guesses—the square of the number of words in the dict—crackers often work with smaller word lists or simply terminate a run in progress once things start slowing down. Other times, they combine words from one big dictionary with words from a smaller one. Steube was able to crack "momof3g8kids" because he had "momof3g" in his 111 million dict and "8kids" in a smaller dict.

"The combinator attack got it! It's cool," he said. Then referring to the oft-cited xkcd comic, he added: "This is an answer to the batteryhorsestaple thing.""

Thanks for the long reply nexus.

I'm not sure if a combinator attack would work. The article says they use two dictionaries, whereas correctBatteryHorseStaple requires 4 in a row, greatly increasing the complexity.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
Koenig99
Profile Joined July 2011
Canada904 Posts
August 21 2013 03:07 GMT
#6326
[image loading]

Goddamn...
Zess
Profile Joined July 2012
Adun Toridas!9144 Posts
August 21 2013 03:08 GMT
#6327
On August 21 2013 11:19 nyxnyxnyx wrote:
"The combinator attack got it! It's cool," he said. Then referring to the oft-cited xkcd comic, he added: "This is an answer to the batteryhorsestaple thing.""


Yes and no. It is a big disingenuous to suggest that 4 dictionary words are "super secure" since you can still brute force them much easier than unpatterned passwords.

It is far more secure than doing something that is shorter letters and has numbers and stuff though, just because anything under 6 characters can be purely brute forced in the order of minutes.

And even with pattern rules using existing word list profiles, "batteryhorsestaplecorrect" is going to be pretty hard to crack because it has complexity N^4, N being the word list you are using. Appending some random characters into the middle of a word "batteryho#4x3rsestablecorrect" makes it pretty much as secure as "E88xn8YJMX0m|YVJNSk$4`Zt^[U.>J|0" from the perspective of automated brute force. Basically trying to crack either of those is in the "not gonna bother" area of diminishing returns because hackers always go for the low hanging fruit.

So don't be the guy with "h4h4mordekaiser" and you should be safe.

P.s. keepass is amazing and you should all use it.
Administrator@TL_Zess
| (• ◡•)|八 (❍ᴥ❍ʋ)
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
Last Edited: 2013-08-21 04:05:44
August 21 2013 03:17 GMT
#6328
On August 21 2013 12:07 Koenig99 wrote:
[image loading]

Goddamn...

Oh man. That is hot.

Something something sun don't shine.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
FinestHour
Profile Joined August 2010
United States18466 Posts
August 21 2013 03:19 GMT
#6329
i dont know who that is supposed to be
thug life.                                                       MVP/ex-
justiceknight
Profile Blog Joined May 2008
Singapore5741 Posts
August 21 2013 03:24 GMT
#6330
the shield doesnt have teemo face anymore sad
Alaric
Profile Joined November 2009
France45622 Posts
Last Edited: 2013-08-21 03:32:22
August 21 2013 03:28 GMT
#6331
Nami, Ezreal... is that Taric running after Lux?

Also maybe Leona would see more play if people realised she's a redhead?
Her posture on the splash makes me wonder what it'd look like in the loading screen. Pretty different from the rest of her skins.

Graves' W pretty good.
Cant take LMS hipsters serious.
Celial
Profile Blog Joined June 2006
2602 Posts
August 21 2013 03:30 GMT
#6332
YAY for playing with streamers :D

Hearthstone though =(

Tore Salce a new one as Hunter vs Mage, didn't even take one point of damage^^
Do not regret. Always forward, never back.
onlywonderboy
Profile Joined August 2012
United States23745 Posts
August 21 2013 03:46 GMT
#6333
All these summer skins are pretty great. Probably gonna pick up the Graves one.
RIP Ryan Davis / TL or Die / @onlywonderboy
wei2coolman
Profile Joined November 2010
United States60033 Posts
Last Edited: 2013-08-21 03:58:26
August 21 2013 03:53 GMT
#6334
Summer skin leona too sexualized. Someone cover her up!

On August 21 2013 11:51 WiseBagus wrote:
I have been getting Soulstealer in game where I play Lulu, Sona, Janna, and Soraka. I usually go SS> Boots> Chalice> Ruby SS> Mobi Boots> Philo > Mejai> Crucible> into a morello or something else we need.

I wish I was this rich when I play support. But I gotta buy wards and stuff.
liftlift > tsm
Ryuu314
Profile Joined October 2009
United States12679 Posts
August 21 2013 04:06 GMT
#6335
On August 21 2013 08:56 AsianEcksDragon wrote:
Show nested quote +
On August 21 2013 07:25 Ryuu314 wrote:
On August 21 2013 07:16 onlywonderboy wrote:
On August 21 2013 07:11 Ryuu314 wrote:
On August 21 2013 07:01 clickrush wrote:
On August 21 2013 06:24 TheYango wrote:
In retrospect I would have liked Riot nerfing Aegis simply by making it a dead-end item with an appropriate slot/cost-efficiency tradeoff again (while keeping the item decent), but god forbid, Riot considers that sinful or something.

So instead of doing that, Riot gutted Aegis and made it's upgrade really efficient.


riot has that weird item desing principle where cheap and basic slot inefficient items should have less stats/gold so ppl dont stack them or go for early strategic spikes with them. It is counterintuitive and doesnt feel as epic according to riot. I'am pretty sure this is a case of them underestimating the players. Also this principle keeps on biting them in the ass especially because they can't fix support and partly also jungle itemization with that principle except maybe if they do something drastic somewhere else like removing ratios on supports or making farm meaningless.

the way they could fix all of this is by making all the typical support items stronger/cost and cheaper, but emphasizing non scaling benefits at the same time. For example by decreasing the active cooldown, the base health and the cost on shureilas and increasing the manaregen. Basicly make support items cheaper and more epic but lower scaling stats. Also when farmers incorporate 1 or mb 2 support items into their builds like in s2 then whats the big deal?

The big deal was more around when literally every single champion went HoG->Philo regardless of role or item build path. That was kinda dumb in that there was no variety. Similar to how when everyone opened Dorans+2 in S1 or Boots+3 in S2. If nothing else, nerfing gp/10 items increased item variety in build paths.

I agree with mostly everything else you said though. I think Riot needs to buff Doran ring and shield, personally. Doran items are already notorious for non-scaling benefits but can give you a nice early power spike. Itemization is the one area I always though Dota did well in that since more expensive items are stronger, but actually less cost-effective, supports have more meaningful item choices since they can actually afford items that don't suck. On top of that, there are a ton of reasonably priced/powered mid-game item options, whereas in LoL, every single one of those options have been nerfed so that they're so incredibly situational.

I don't think DRing and DShield are in that bad of a spot...

I think DRing is in an okay spot. I personally miss the 475 gold DRing though. The stats were better, but now the lower cost is nice in that it impacts your overall build path less.

DShield is decent right now, but I think it's really awkward in that you will honestly never really buy it unless you're ahead on a reasonably tanky champion. In top lane, it's simply too risky to walk into lane with only 1 potion with no offensive, all-in stats (like red elixer/pot/ward start). Then if you get ahead, you generally want to snowball your lane, which means getting offensive stats and/or starting your real items. As a result, you really only buy DShield in very niche situations. In my hundreds of S3 games, I’ve honestly only seen DShield bought with success, where I could reasonably say no or very few other items would’ve been better, in like >10~15 games.


I'd say DShield is a much more attractive buy than before now that they lowered the price and removed the armor component. Are you going mid with Zed against someone like Ori, Lux, or TF? Well now that DShield only grants health and helps you against ranged autoattack, your level 1-3 is way smoother with the unique passive compared to the longsword + 2pot opening.

The other example I already gave in an earlier post is Alistar vs. Lulu/Ez or any other strong kiting ranged duo at bot lane. You want to negate as much poke damage as possible as you are an all-in champion so you need to keep your health before finding a good opportunity to go deep. I wouldn't open with it unless the enemy jungler has no early gank potential but it's something you might want to consider buying on the first or second trip back.

Really late to this reply but w/e

First off, no one really goes longsword +2pot. If you're playing an AD assassin mid, you go red elixir for all-in potential or you open with a sustain-heavy opening. DShield is not a good starting item in almost any situation. The regen on the item itself is pithy and you only get 1 potion, which is almost never enough especially if they're harass heavy, and have no possibility to get a ward unless you go deep into utility. After you recall, you'd much rather buy items like DBlades, Cutlass, Bruta to help you actually kill the other guy.

On supports it's a reasonably good buy, but even then it's suspect since sightstone and wards are just so strong you're probably better off just getting a ruby crystal and turning it into a sightstone asap.
Frudgey
Profile Joined September 2012
Canada3367 Posts
August 21 2013 04:08 GMT
#6336
On August 21 2013 12:53 wei2coolman wrote:
Summer skin leona too sexualized. Someone cover her up!

Honestly I think she could have been a lot worse. I think she's pretty decent as is.
It is better to die for The Emperor than live for yourself.
Ryuu314
Profile Joined October 2009
United States12679 Posts
August 21 2013 04:09 GMT
#6337
On August 21 2013 13:08 Frudgey wrote:
Show nested quote +
On August 21 2013 12:53 wei2coolman wrote:
Summer skin leona too sexualized. Someone cover her up!

Honestly I think she could have been a lot worse. I think she's pretty decent as is.

I'm honestly quite surprised at how not sexualized it is. I mean come on, the midriff isn't even showing. Not that much boobage in the splash art either.
wei2coolman
Profile Joined November 2010
United States60033 Posts
August 21 2013 04:11 GMT
#6338
On August 21 2013 13:08 Frudgey wrote:
Show nested quote +
On August 21 2013 12:53 wei2coolman wrote:
Summer skin leona too sexualized. Someone cover her up!

Honestly I think she could have been a lot worse. I think she's pretty decent as is.

It was sarcasm....
liftlift > tsm
onlywonderboy
Profile Joined August 2012
United States23745 Posts
August 21 2013 04:12 GMT
#6339
LOL I just realized that was Taric running in the background of the Leona splash art.
RIP Ryan Davis / TL or Die / @onlywonderboy
Frudgey
Profile Joined September 2012
Canada3367 Posts
August 21 2013 04:16 GMT
#6340
On August 21 2013 13:11 wei2coolman wrote:
It was sarcasm....

Oh.... That's cool.... I guess.....

I think my favorite thing about the summer skins is all the different champions that you can see in the backgrounds of their splash arts.
It is better to die for The Emperor than live for yourself.
Prev 1 315 316 317 318 319 331 Next
Please log in or register to reply.
Live Events Refresh
Next event in 5h 9m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 564
ProTech89
UpATreeSC 77
JuggernautJason24
StarCraft: Brood War
Calm 4496
Bisu 2578
Flash 2373
EffOrt 691
Shuttle 610
PianO 498
Mini 463
BeSt 341
ZerO 226
Soulkey 188
[ Show more ]
hero 126
Dewaltoss 115
Backho 85
Rush 78
soO 35
sorry 26
Aegong 20
Noble 12
Terrorterran 10
Sacsri 9
Hm[arnc] 4
SilentControl 4
Dota 2
Gorgc7533
qojqva3449
Fuzer 298
XcaliburYe136
capcasts38
Counter-Strike
fl0m759
Stewie2K227
oskar102
Other Games
ceh9628
FrodaN621
Beastyqt465
Hui .346
Lowko325
QueenE95
Trikslyr59
FunKaTv 53
NeuroSwarm42
MindelVK25
ZerO(Twitch)16
fpsfer 2
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• Reevou 1
• intothetv
• sooper7s
• Migwel
• AfreecaTV YouTube
• LaughNgamezSOOP
• IndyKCrew
• Kozan
StarCraft: Brood War
• FirePhoenix9
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 4222
• masondota2776
• WagamamaTV556
League of Legends
• Nemesis4397
• TFBlade761
Other Games
• imaqtpie612
• Shiphtur255
Upcoming Events
OSC
5h 9m
PiGosaur Monday
6h 9m
LiuLi Cup
17h 9m
OSC
1d 1h
RSL Revival
1d 16h
Maru vs Reynor
Cure vs TriGGeR
The PondCast
1d 19h
RSL Revival
2 days
Zoun vs Classic
Korean StarCraft League
3 days
BSL Open LAN 2025 - War…
3 days
RSL Revival
3 days
[ Show More ]
BSL Open LAN 2025 - War…
4 days
RSL Revival
4 days
Online Event
4 days
Wardi Open
5 days
Sparkling Tuna Cup
6 days
Liquipedia Results

Completed

Proleague 2025-09-10
Chzzk MurlocKing SC1 vs SC2 Cup #2
HCC Europe

Ongoing

BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

2025 Chongqing Offline CUP
BSL World Championship of Poland 2025
IPSL Winter 2025-26
BSL Season 21
SC4ALL: Brood War
BSL 21 Team A
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
MESA Nomadic Masters Fall
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.