• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 13:00
CET 19:00
KST 03:00
  • 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
TL.net Map Contest #21: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win10
StarCraft 2
General
SC: Evo Complete - Ranked Ladder OPEN ALPHA Mech is the composition that needs teleportation t TL.net Map Contest #21: Winners StarCraft, SC2, HotS, WC3, Returning to Blizzcon! RotterdaM "Serral is the GOAT, and it's not close"
Tourneys
Constellation Cup - Main Event - Stellar Fest Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
FlaSh on: Biggest Problem With SnOw's Playstyle BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions BW General Discussion Where's CardinalAllin/Jukado the mapmaker?
Tourneys
[Megathread] Daily Proleagues [ASL20] Grand Finals [BSL21] RO32 Group A - Saturday 21:00 CET [BSL21] RO32 Group B - Sunday 21:00 CET
Strategy
PvZ map balance Current Meta How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Nintendo Switch Thread Path of Exile Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread US Politics Mega-thread The Games Industry And ATVI
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Learning my new SC2 hotkey…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1538 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
Wardi Open
12:00
#60
WardiTV1940
IndyStarCraft 237
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
IndyStarCraft 237
UpATreeSC 72
StarCraft: Brood War
Rain 3577
Horang2 1481
Shuttle 839
firebathero 163
scan(afreeca) 45
Mong 31
sSak 30
Rock 27
Aegong 22
JulyZerg 15
[ Show more ]
SilentControl 7
ivOry 6
Dota 2
Gorgc5432
qojqva3389
420jenkins278
BananaSlamJamma162
XcaliburYe147
Counter-Strike
byalli464
fl0m435
oskar101
Other Games
FrodaN1145
ceh9634
Beastyqt568
KnowMe295
Lowko289
Sick228
Hui .205
Liquid`VortiX151
Mew2King114
ArmadaUGS80
Trikslyr49
QueenE42
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• kabyraGe 40
• Reevou 2
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• intothetv
• Kozan
• Migwel
• LaughNgamezSOOP
StarCraft: Brood War
• Michael_bg 9
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV108
League of Legends
• Nemesis3667
• TFBlade922
Other Games
• Shiphtur286
Upcoming Events
Replay Cast
5h
WardiTV Korean Royale
18h
OSC
23h
Replay Cast
1d 5h
Replay Cast
1d 15h
Kung Fu Cup
1d 18h
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
2 days
The PondCast
2 days
RSL Revival
2 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
2 days
[ Show More ]
WardiTV Korean Royale
2 days
PiGosaur Monday
3 days
RSL Revival
3 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
3 days
CranKy Ducklings
4 days
RSL Revival
4 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
4 days
BSL 21
5 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
5 days
RSL Revival
5 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
5 days
WardiTV Korean Royale
5 days
BSL 21
6 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
Wardi Open
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals 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.