TLS for OSDev Website?
-
- Posts: 2
- Joined: Thu Oct 06, 2016 10:08 am
- Libera.chat IRC: SenorContento
- Contact:
TLS for OSDev Website?
Hello, I am Brandon Gomez and I found a page that said don't contact people directly unless you are personally part of that project and I would like to request TLS for this site and its forum. I am into cybersecurity and I would think it would be great to have at least some form of encryption on the pages as they pass through the internet A suggestion I have if it helps is using Cloudflare to host the connections if you can't have it yourself, but to have full end to end encryption yourself would be a much better idea. Thanks!
-
- Member
- Posts: 501
- Joined: Wed Jun 17, 2015 9:40 am
- Libera.chat IRC: glauxosdever
- Location: Athens, Greece
Re: TLS for OSDev Website?
Hi,
Regards,
glauxosdever
I don't understand how the different things expressed in the above quote relate together. Maybe try to rephrase it?SenorContento wrote:Hello, I am Brandon Gomez and I found a page that said don't contact people directly unless you are personally part of that project and I would like to request TLS for this site and its forum.
I agree this site needs encryption.SenorContento wrote:I am into cybersecurity and I would think it would be great to have at least some form of encryption on the pages as they pass through the internet
Cloudflare has been faced against enough controversies, not sure why do you specifically suggest using it. Maybe try to elaborate a bit more?SenorContento wrote:A suggestion I have if it helps is using Cloudflare to host the connections if you can't have it yourself, but to have full end to end encryption yourself would be a much better idea.
Regards,
glauxosdever
- Kazinsal
- Member
- Posts: 559
- Joined: Wed Jul 13, 2011 7:38 pm
- Libera.chat IRC: Kazinsal
- Location: Vancouver
- Contact:
Re: TLS for OSDev Website?
The site admin is... mysterious. He shows up when things break, and disappears into the æther shortly thereafter.
Adding TLS to old non-TLS software such as phpBB is not as simple as flicking a magic switch even with things like Let's Encrypt. In the meantime, please continue to not use the OSDev forums and wiki for posting content that you direly need encrypted.
Adding TLS to old non-TLS software such as phpBB is not as simple as flicking a magic switch even with things like Let's Encrypt. In the meantime, please continue to not use the OSDev forums and wiki for posting content that you direly need encrypted.
-
- Member
- Posts: 501
- Joined: Wed Jun 17, 2015 9:40 am
- Libera.chat IRC: glauxosdever
- Location: Athens, Greece
Re: TLS for OSDev Website?
Hi,
Regards,
glauxosdever
So you now blame him for the site not being encrypted?Kazinsal wrote:In the meantime, please continue to not use the OSDev forums and wiki for posting content that you direly need encrypted.
Regards,
glauxosdever
Re: TLS for OSDev Website?
What? He have suggested not to transfer any private data to OSDev.org.glauxosdever wrote:Hi,
So you now blame him for the site not being encrypted?Kazinsal wrote:In the meantime, please continue to not use the OSDev forums and wiki for posting content that you direly need encrypted.
Regards,
glauxosdever
"If you don't fail at least 90 percent of the time, you're not aiming high enough."
- Alan Kay
- Alan Kay
-
- Member
- Posts: 501
- Joined: Wed Jun 17, 2015 9:40 am
- Libera.chat IRC: glauxosdever
- Location: Athens, Greece
Re: TLS for OSDev Website?
Hi,
Sorry Kazinsal.
Regards,
glauxosdever
Seems it was a misunderstanding from my part.Roman wrote:What? He have suggested not to transfer any private data to OSDev.org.
Sorry Kazinsal.
Regards,
glauxosdever
- Kazinsal
- Member
- Posts: 559
- Joined: Wed Jul 13, 2011 7:38 pm
- Libera.chat IRC: Kazinsal
- Location: Vancouver
- Contact:
Re: TLS for OSDev Website?
My point is that someone so deeply concerned about the privacy of their data on a public forum that they need end to end encryption between the forum and their web browser, they probably shouldn't be posting it on a public forum.
Encryption for encryption's sake is one of the things I just don't "get" about people who think they're security experts. Throwing TLS on everything doesn't solve any problems that didn't already exist.
Encryption for encryption's sake is one of the things I just don't "get" about people who think they're security experts. Throwing TLS on everything doesn't solve any problems that didn't already exist.
Re: TLS for OSDev Website?
Cryptography is not only about privacy, it's also about authentification. But it's small forum, though. Why would someone hijack our accounts here?
"If you don't fail at least 90 percent of the time, you're not aiming high enough."
- Alan Kay
- Alan Kay
-
- Member
- Posts: 116
- Joined: Thu May 06, 2010 4:34 am
- Libera.chat IRC: peterbjornx
- Location: Leiden, The Netherlands
- Contact:
Re: TLS for OSDev Website?
Because sending passwords and email addresses as plaintext is never a smart idea. Although I agree OSDev isn't much of a target, there's still plenty of people who use their passwords on multiple sites, and they are vulnerable thru the lack of encryption.
- Kazinsal
- Member
- Posts: 559
- Joined: Wed Jul 13, 2011 7:38 pm
- Libera.chat IRC: Kazinsal
- Location: Vancouver
- Contact:
Re: TLS for OSDev Website?
Personal computers are fast enough now to do challenge-response HMACs on the client end. IMO we shouldn't be sending cleartext passwords or hashes on an encrypted link, because that's just lazy.
HMAC/AES a short-lived session token with the hash of the password using the agreed-upon algorithm, send that back. Use something strong for password hashing to make brute forces a pain.
Unfortunately we can't implement that in the forums' ancient phpBB software.
HMAC/AES a short-lived session token with the hash of the password using the agreed-upon algorithm, send that back. Use something strong for password hashing to make brute forces a pain.
Unfortunately we can't implement that in the forums' ancient phpBB software.
-
- Member
- Posts: 1146
- Joined: Sat Mar 01, 2014 2:59 pm
Re: TLS for OSDev Website?
Kazinsal wrote:Personal computers are fast enough now to do challenge-response HMACs on the client end. IMO we shouldn't be sending cleartext passwords or hashes on an encrypted link, because that's just lazy.
Which is why we should just throw TLS on it and call it a day (even though it's "just lazy"). phpBB has no problem running over an HTTPS connection; as far as the PHP side of things goes, it doesn't see anything different.Kazinsal wrote:Unfortunately we can't implement that in the forums' ancient phpBB software.
When you start writing an OS you do the minimum possible to get the x86 processor in a usable state, then you try to get as far away from it as possible.
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
Re: TLS for OSDev Website?
Surely you'd just enable TLS on the web server and then just change the URL to the forums in the phpBB settings to use the https prefix?Kazinsal wrote:The site admin is... mysterious. He shows up when things break, and disappears into the æther shortly thereafter.
Adding TLS to old non-TLS software such as phpBB is not as simple as flicking a magic switch even with things like Let's Encrypt. In the meantime, please continue to not use the OSDev forums and wiki for posting content that you direly need encrypted.
com.sun.java.swing.plaf.nimbus.InternalFrameInternalFrameTitlePaneInternalFrameTitlePaneMaximizeButtonWindowNotFocusedState
Compiler Development Forum
Compiler Development Forum
Re: TLS for OSDev Website?
Google will start ranking web sites low on search results if they don't support HTTPS in the near future.
This could also be a good reason to do so.
Google anouncement:
https://webmasters.googleblog.com/2014/ ... ignal.html
This could also be a good reason to do so.
Google anouncement:
https://webmasters.googleblog.com/2014/ ... ignal.html
“Meaningless! Meaningless!”
says the Teacher.
“Utterly meaningless!
Everything is meaningless.” - Ecclesiastes 1, 2
Educational Purpose Operating System - EPOS
says the Teacher.
“Utterly meaningless!
Everything is meaningless.” - Ecclesiastes 1, 2
Educational Purpose Operating System - EPOS
Re: TLS for OSDev Website?
Isnt a forum a Threads Local Storage by definition ?
.. I'm out already
.. I'm out already
-
- Member
- Posts: 1146
- Joined: Sat Mar 01, 2014 2:59 pm
Re: TLS for OSDev Website?
Yes, you would. That's why Kazinsal clearly doesn't know what he's talking about. PHP doesn't know (read: see) the difference between HTTP and HTTPS beyond the URL scheme, and thus phpBB doesn't care whether you're running it over an HTTP or an HTTPS connection. Such is the beauty of the OSI model...zenzizenzicube wrote:Surely you'd just enable TLS on the web server and then just change the URL to the forums in the phpBB settings to use the https prefix?
When you start writing an OS you do the minimum possible to get the x86 processor in a usable state, then you try to get as far away from it as possible.
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing