Arie
Account Details
SteamID64 76561197960497430
SteamID3 [U:1:231702]
SteamID32 STEAM_0:0:115851
Country Netherlands
Signed Up October 13, 2012
Last Posted November 26, 2024 at 9:46 AM
Posts 723 (0.2 per day)
Game Settings
In-game Sensitivity
Windows Sensitivity
Raw Input  
DPI
 
Resolution
 
Refresh Rate
 
Hardware Peripherals
Mouse  
Keyboard  
Mousepad  
Headphones  
Monitor  
1 ⋅⋅ 6 7 8 9 10 11 12 ⋅⋅ 49
#23 twitch.tv hacked, change your passwords in Off Topic
negasoratwiikuuHashed passwords remain safe for a finite period of time after a compromise because the actual password isn't stored anywhere, and the only way to get in is to crack it using a large amount of computer power.
https://twitter.com/cybertillie/status/1445839064733790208
Show Content
lol

All this code shows is that all the passwords are stored with bcrypt now. Before using bcrypt they used SHA1 hashes with a salt pepper :(. Those are relatively easy to crack because SHA1 hashing is very very fast.

Sadly, they seemed to have used a single salt (so actually a pepper) for all passwords:

// SHA1Salt is the single salt used for all pre-BCrypt passwords
SHA1Salt = "theleakedcodecontainsthepepper"
// PasswordCutoffTime is the last time we reset passwords. Passwords older than this timestamp must be reset
PasswordCutoffTime = 1427025600 // March 22, 2015, never forget

If you logged in since March 2015, you'll have reset your password and it should no longer be stored as salted SHA1.

If a database ever leaks with the salted SHA1s still in them, it would be trivial to crack all those old passwords.

posted about 3 years ago
#7 More RGL is bad thread. in The Dumpster

Nothing wrong with the late payment arrangement, that way more teams can play and banny gets more money at the end of the season.

posted about 3 years ago
#6 tftrue caused my server to segfault, now its dead in Q/A Help
mane..although I had to keep the tftrue.vdf file in order to make it work.

The .vdf file makes your server load the plugin, so you'll need it to make it work.

posted about 3 years ago
#546 Formula 1 Megathread in Off Topic
albaCan someone explain why Bottas got a 10 place grid penalty for 5th engine while Verstappen starts last with his 4th engine? Is it a new spec engine Verstappen is gonna be running or something? Also Latifi starting 18th and he took the penalty quite late right?

FIA on VER
FIA on BOT

VER took 6 new elements, causing a grid drop of more than 15 places, which means you start at the back of the grid.
BOT took 3 new elements, causing a 15 place grid drop.

posted about 3 years ago
#543 Formula 1 Megathread in Off Topic

This was looking like the most boring qualifying this season, and then Russel put on the slicks

posted about 3 years ago
#108 MedicStats SourceMod plugin in Projects
AlexKikLinks is not working(

Update the links!

https://github.com/F2/F2s-sourcemod-plugins

All here, as a package or individually

posted about 3 years ago
#28 Thoughts on new RGL ping guidelines? in TF2 General Discussion
_flac(as any one persons poor connection can effect everyone elses experience)

I think this is a common misconception, the high ping of one (or even most) other players won't affect your experience by itself. John Carmack got it mostly right back in 1996.
The "teleporting timmy" example is way more annoying for other players, but a ping limit doesn't fix that.

posted about 3 years ago
#5 Thoughts on new RGL ping guidelines? in TF2 General Discussion

The rule shouldn't exist at all.

posted about 3 years ago
#3 Scheduled server restart in Q/A Help
hpqoeuif you're running a linux server just crontab it instead of something external. windows has something similar where you can schedule services

A linux-based TF2 server started with -autoupdate will auto-restart if you send a kill signal. So the simplest thing to make the above suggestion work is to add a crontab entry that runs:

killall srcds_linux
posted about 3 years ago
#314 Logs.tf match stats in Projects
maneI'm not surprised. From what I heard, tf2 logs are fist being locally saved in your server directory and then uploaded to logs.tf, right? Is the log file like in the root 'tf' folder or where should I find it?

In

tf/logs
posted about 3 years ago
#504 Formula 1 Megathread in Off Topic
S4mskiLMFAO
Valterri it's James please abort
Fuck you I'm taking this fastest lap

He backed out in S3 :( Sadly, couldn't do it despite being cut from the team

posted about 3 years ago
#6 does demos.tf always have ass download speeds? in TF2 General Discussion
justjazzand if so where can i donate for them to get better servers

https://demos.tf/about

I think most or even all of the demos are stored on Hetzner servers in Germany. Some ISPs love to fight with them over bandwidth and refuse to set up peerings, causing slow speeds for that ISP's customers.

posted about 3 years ago
#470 Formula 1 Megathread in Off Topic

He's a lucky boy

posted about 3 years ago
#448 Formula 1 Megathread in Off Topic
taviChampionship battle about to get more intense now isnt it. I dont think you can blame either of them for the collision though

I think you can blame the driver that was behind, on the dirty side of the track, missing the apex, understeering into his opponent.

posted about 3 years ago
#16 trends.tf - TF2 stats collected from logs.tf in Projects

Hehe, those are some cool queries, I was hoping you were just missing some indexes or something, but it looks like you got all that covered.

An on-the-fly aggregation like the peers is always going to be challenging, especially since you're trying to find the top 100 players most played with/against.
One thing I would consider, is to move "log_wlt" and "player_last" from views to materialized views (unlike a view these need their own indexes). You could update these materialized views (concurrently) after a new batch of log files is imported. This might improve part of the peers query.

posted about 3 years ago
1 ⋅⋅ 6 7 8 9 10 11 12 ⋅⋅ 49