Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

  1. Home
  2. Uncategorized
  3. So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it.

So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it.

Scheduled Pinned Locked Moved Uncategorized
95 Posts 57 Posters 15 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • david_chisnall@infosec.exchangeD This user is from outside of this forum
    david_chisnall@infosec.exchangeD This user is from outside of this forum
    david_chisnall@infosec.exchange
    wrote last edited by
    #1

    So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

    • Remote attestation.
    • Tamper-proof storage of the age.
    • Any validation in the age.

    In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

    In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

    • Define four groups for the four age ranges (ideally, standardise their names!).
    • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
    • Add a daily cron job that checks the above file and updates group membership.
    • Modify user-add scripts / GUIs to create an entry in the above file.
    • Add a tool to create an entry in the above file for existing user accounts.

    This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

    If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

    I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

    lerxst@az.socialL katzenberger@tldr.nettime.orgK avuko@infosec.exchangeA gsuberland@chaos.socialG drahardja@sfba.socialD 39 Replies Last reply
    1
    0
    • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

      So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

      • Remote attestation.
      • Tamper-proof storage of the age.
      • Any validation in the age.

      In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

      In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

      • Define four groups for the four age ranges (ideally, standardise their names!).
      • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
      • Add a daily cron job that checks the above file and updates group membership.
      • Modify user-add scripts / GUIs to create an entry in the above file.
      • Add a tool to create an entry in the above file for existing user accounts.

      This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

      If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

      I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

      lerxst@az.socialL This user is from outside of this forum
      lerxst@az.socialL This user is from outside of this forum
      lerxst@az.social
      wrote last edited by
      #2

      @david_chisnall And then another state or country passes a law that requires four age ranges, or another one that requires two, but they do not map nicely to the three CA requires.

      You have now replicated another timezone mess.

      arcaik@hachyderm.ioA 1 Reply Last reply
      0
      • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

        So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

        • Remote attestation.
        • Tamper-proof storage of the age.
        • Any validation in the age.

        In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

        In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

        • Define four groups for the four age ranges (ideally, standardise their names!).
        • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
        • Add a daily cron job that checks the above file and updates group membership.
        • Modify user-add scripts / GUIs to create an entry in the above file.
        • Add a tool to create an entry in the above file for existing user accounts.

        This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

        If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

        I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

        katzenberger@tldr.nettime.orgK This user is from outside of this forum
        katzenberger@tldr.nettime.orgK This user is from outside of this forum
        katzenberger@tldr.nettime.org
        wrote last edited by
        #3

        @david_chisnall

        https://www.donotobeyinadvance.com/portfolio/do-not-obey-in-advance/

        1 Reply Last reply
        0
        • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

          So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

          • Remote attestation.
          • Tamper-proof storage of the age.
          • Any validation in the age.

          In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

          In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

          • Define four groups for the four age ranges (ideally, standardise their names!).
          • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
          • Add a daily cron job that checks the above file and updates group membership.
          • Modify user-add scripts / GUIs to create an entry in the above file.
          • Add a tool to create an entry in the above file for existing user accounts.

          This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

          If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

          I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

          avuko@infosec.exchangeA This user is from outside of this forum
          avuko@infosec.exchangeA This user is from outside of this forum
          avuko@infosec.exchange
          wrote last edited by
          #4

          @david_chisnall nice feature to have in an OS. Not so nice feature to have because of a law.

          qgustavor@urusai.socialQ 1 Reply Last reply
          0
          • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

            So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

            • Remote attestation.
            • Tamper-proof storage of the age.
            • Any validation in the age.

            In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

            In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

            • Define four groups for the four age ranges (ideally, standardise their names!).
            • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
            • Add a daily cron job that checks the above file and updates group membership.
            • Modify user-add scripts / GUIs to create an entry in the above file.
            • Add a tool to create an entry in the above file for existing user accounts.

            This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

            If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

            I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

            gsuberland@chaos.socialG This user is from outside of this forum
            gsuberland@chaos.socialG This user is from outside of this forum
            gsuberland@chaos.social
            wrote last edited by
            #5

            @david_chisnall given the general trajectory and past instances of the public giving an inch and legislators taking a mile, it still makes me deeply uncomfortable.

            1 Reply Last reply
            0
            • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

              So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

              • Remote attestation.
              • Tamper-proof storage of the age.
              • Any validation in the age.

              In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

              In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

              • Define four groups for the four age ranges (ideally, standardise their names!).
              • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
              • Add a daily cron job that checks the above file and updates group membership.
              • Modify user-add scripts / GUIs to create an entry in the above file.
              • Add a tool to create an entry in the above file for existing user accounts.

              This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

              If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

              I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

              drahardja@sfba.socialD This user is from outside of this forum
              drahardja@sfba.socialD This user is from outside of this forum
              drahardja@sfba.social
              wrote last edited by
              #6

              @david_chisnall We already have parental controls in many OSes. Why do we need a law that specifies a particular implementation?

              david_chisnall@infosec.exchangeD pemensik@fosstodon.orgP 2 Replies Last reply
              0
              • drahardja@sfba.socialD drahardja@sfba.social

                @david_chisnall We already have parental controls in many OSes. Why do we need a law that specifies a particular implementation?

                david_chisnall@infosec.exchangeD This user is from outside of this forum
                david_chisnall@infosec.exchangeD This user is from outside of this forum
                david_chisnall@infosec.exchange
                wrote last edited by
                #7

                @drahardja The law doesn't specify a particular implementation, it specifies only that:

                • They must exist.
                • There must be some documented API to get the age range.

                In particular, it doesn't specify what that API is, but does specify that it must be coarse-grained (giving no more information than the four age ranges, and not giving the precise age or date of birth).

                drahardja@sfba.socialD 1 Reply Last reply
                0
                • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                  So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                  • Remote attestation.
                  • Tamper-proof storage of the age.
                  • Any validation in the age.

                  In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                  In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                  • Define four groups for the four age ranges (ideally, standardise their names!).
                  • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                  • Add a daily cron job that checks the above file and updates group membership.
                  • Modify user-add scripts / GUIs to create an entry in the above file.
                  • Add a tool to create an entry in the above file for existing user accounts.

                  This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                  If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                  I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                  sitcom_nemesis@tech.lgbtS This user is from outside of this forum
                  sitcom_nemesis@tech.lgbtS This user is from outside of this forum
                  sitcom_nemesis@tech.lgbt
                  wrote last edited by
                  #8

                  @david_chisnall

                  My main worry that it will be some sort of gateway for further age verification creep. We're seeing this in the UK where the OSA, having failed to achieve any of its actual objectives (as many of us predicted a few years ago), is now being extended to incorporate broader-scope social media bans and even VPN bans.

                  Similarly the AV lobby could say that simple age attestation isn't accurate enough and start to demand more intrusive monitoring. Idk if that's far-fetched (maybe it is), but the situation in the UK does not make me hopeful for these kinds of laws

                  1 Reply Last reply
                  0
                  • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                    So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                    • Remote attestation.
                    • Tamper-proof storage of the age.
                    • Any validation in the age.

                    In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                    In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                    • Define four groups for the four age ranges (ideally, standardise their names!).
                    • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                    • Add a daily cron job that checks the above file and updates group membership.
                    • Modify user-add scripts / GUIs to create an entry in the above file.
                    • Add a tool to create an entry in the above file for existing user accounts.

                    This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                    If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                    I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                    sean@mastodon.me.ukS This user is from outside of this forum
                    sean@mastodon.me.ukS This user is from outside of this forum
                    sean@mastodon.me.uk
                    wrote last edited by
                    #9

                    @david_chisnall parental controls on most things are really broken - just badly thought through - lacking integration with each other - and plain buggy.

                    I think that effective regulation which actually required well functioning parental controls would be a game changer.

                    1 Reply Last reply
                    0
                    • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                      So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                      • Remote attestation.
                      • Tamper-proof storage of the age.
                      • Any validation in the age.

                      In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                      In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                      • Define four groups for the four age ranges (ideally, standardise their names!).
                      • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                      • Add a daily cron job that checks the above file and updates group membership.
                      • Modify user-add scripts / GUIs to create an entry in the above file.
                      • Add a tool to create an entry in the above file for existing user accounts.

                      This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                      If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                      I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                      lemgandi@mastodon.socialL This user is from outside of this forum
                      lemgandi@mastodon.socialL This user is from outside of this forum
                      lemgandi@mastodon.social
                      wrote last edited by
                      #10

                      @david_chisnall

                      And then next year or the year after they require positive proof of identification to install an OS. And Raspberry Pi s become Illegal for anyone who lacks a Certificate of Need.

                      What could Possibly go Wrong?

                      1 Reply Last reply
                      0
                      • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                        So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                        • Remote attestation.
                        • Tamper-proof storage of the age.
                        • Any validation in the age.

                        In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                        In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                        • Define four groups for the four age ranges (ideally, standardise their names!).
                        • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                        • Add a daily cron job that checks the above file and updates group membership.
                        • Modify user-add scripts / GUIs to create an entry in the above file.
                        • Add a tool to create an entry in the above file for existing user accounts.

                        This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                        If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                        I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                        virtuafox@macrofurs.socialV This user is from outside of this forum
                        virtuafox@macrofurs.socialV This user is from outside of this forum
                        virtuafox@macrofurs.social
                        wrote last edited by
                        #11

                        @david_chisnall I'm going to disagree. Very vehemently.

                        This is just a foot in the door to surveillance. You of all people should know better than to defend this.

                        Sure it's this now, but at some point, it will become like every other system so far.

                        1 Reply Last reply
                        0
                        • mttaggart@infosec.exchangeM mttaggart@infosec.exchange shared this topic
                        • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                          So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                          • Remote attestation.
                          • Tamper-proof storage of the age.
                          • Any validation in the age.

                          In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                          In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                          • Define four groups for the four age ranges (ideally, standardise their names!).
                          • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                          • Add a daily cron job that checks the above file and updates group membership.
                          • Modify user-add scripts / GUIs to create an entry in the above file.
                          • Add a tool to create an entry in the above file for existing user accounts.

                          This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                          If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                          I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                          pwloftus@pwl.farted.netP This user is from outside of this forum
                          pwloftus@pwl.farted.netP This user is from outside of this forum
                          pwloftus@pwl.farted.net
                          wrote last edited by
                          #12

                          @david_chisnall So we build yet another layer for users to select Jan 1st, 1970?

                          Seems like an enormous waste of time.

                          How about parents parenting?

                          I agree with you building something that is easy to bypass and doesn’t require storage of PII is much better than the uploading of secure documents but in this case not making a change is also superior.

                          Parents adding their children to the sudoer list? Does any parent capable of this require an age verification system to assist them?

                          victimofsimony@infosec.exchangeV 1 Reply Last reply
                          0
                          • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                            So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                            • Remote attestation.
                            • Tamper-proof storage of the age.
                            • Any validation in the age.

                            In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                            In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                            • Define four groups for the four age ranges (ideally, standardise their names!).
                            • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                            • Add a daily cron job that checks the above file and updates group membership.
                            • Modify user-add scripts / GUIs to create an entry in the above file.
                            • Add a tool to create an entry in the above file for existing user accounts.

                            This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                            If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                            I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                            kboyd@phpc.socialK This user is from outside of this forum
                            kboyd@phpc.socialK This user is from outside of this forum
                            kboyd@phpc.social
                            wrote last edited by
                            #13

                            @david_chisnall @dangoodin it doesn't require that *yet*.

                            1 Reply Last reply
                            0
                            • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                              @drahardja The law doesn't specify a particular implementation, it specifies only that:

                              • They must exist.
                              • There must be some documented API to get the age range.

                              In particular, it doesn't specify what that API is, but does specify that it must be coarse-grained (giving no more information than the four age ranges, and not giving the precise age or date of birth).

                              drahardja@sfba.socialD This user is from outside of this forum
                              drahardja@sfba.socialD This user is from outside of this forum
                              drahardja@sfba.social
                              wrote last edited by
                              #14

                              @david_chisnall So I also read the text https://leginfo.legislature.ca.gov/faces/billTextClient.xhtml?bill_id=202520260AB1043

                              I have MANY issues with how poorly defined many of the terms are in the document (e.g. is a website an “application”?), and how it still holds developers liable for verifying the provided age information (“internal clear and convincing information…that a user’s age is different”), but…

                              The part that to me implies implementation is that there is no leeway for the OS to *under*-report the account’s age group, e.g. reporting that a user is younger than they actually are—strictly, they are liable for civil penalties either way. This implies that the OS *must* collect the user’s date of birth and store it somewhere, and derive the age bracket from that date on a daily basis (like your algorithm says). This means that it’s not enough for a parent to set up an account as “13–16 years old” and leave it at that forever.

                              IMO the fact that the OS *must* collect a child’s birthdate to comply is an erosion of privacy.

                              drahardja@sfba.socialD ieure@retro.socialI ids1024@mathstodon.xyzI 3 Replies Last reply
                              0
                              • drahardja@sfba.socialD drahardja@sfba.social

                                @david_chisnall So I also read the text https://leginfo.legislature.ca.gov/faces/billTextClient.xhtml?bill_id=202520260AB1043

                                I have MANY issues with how poorly defined many of the terms are in the document (e.g. is a website an “application”?), and how it still holds developers liable for verifying the provided age information (“internal clear and convincing information…that a user’s age is different”), but…

                                The part that to me implies implementation is that there is no leeway for the OS to *under*-report the account’s age group, e.g. reporting that a user is younger than they actually are—strictly, they are liable for civil penalties either way. This implies that the OS *must* collect the user’s date of birth and store it somewhere, and derive the age bracket from that date on a daily basis (like your algorithm says). This means that it’s not enough for a parent to set up an account as “13–16 years old” and leave it at that forever.

                                IMO the fact that the OS *must* collect a child’s birthdate to comply is an erosion of privacy.

                                drahardja@sfba.socialD This user is from outside of this forum
                                drahardja@sfba.socialD This user is from outside of this forum
                                drahardja@sfba.social
                                wrote last edited by
                                #15

                                @david_chisnall In fact the text says so:

                                “Provide an accessible interface at account setup that requires an account holder to indicate the birth date, age, or both, of the user of that device for the purpose of providing a signal regarding the user’s age bracket to applications available in a covered application store.”

                                REQUIRES is the key word here. There is no reason why a birthdate (or age, but I don’t know how an OS provider can *strictly* comply with this bill without the actual birthdate) is needed to create an adult account, but it will still be required.

                                Can’t wait to enter my birthdate into my Samsung Smart Fridge (it has apps, so it’s an OS, maybe, probably). Surely it won’t be abused in any other way.

                                Ironically, the bill says that the OS provider “shall not share the digital signal information with a third party for a purpose not required by this title” but says nothing about sharing the actual birth date that I entered.

                                This is not a good bill.

                                pwloftus@pwl.farted.netP victimofsimony@infosec.exchangeV solitha@mastodon.socialS nolitimere@toot.walesN 4 Replies Last reply
                                0
                                • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                                  So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                                  • Remote attestation.
                                  • Tamper-proof storage of the age.
                                  • Any validation in the age.

                                  In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                                  In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                                  • Define four groups for the four age ranges (ideally, standardise their names!).
                                  • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                                  • Add a daily cron job that checks the above file and updates group membership.
                                  • Modify user-add scripts / GUIs to create an entry in the above file.
                                  • Add a tool to create an entry in the above file for existing user accounts.

                                  This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                                  If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                                  I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                                  icewolf@masto.brightfur.netI This user is from outside of this forum
                                  icewolf@masto.brightfur.netI This user is from outside of this forum
                                  icewolf@masto.brightfur.net
                                  wrote last edited by
                                  #16

                                  @david_chisnall That's surprisingly not that horrible.

                                  For /now./

                                  Still a bad precedent to set, though.

                                  1 Reply Last reply
                                  0
                                  • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                                    So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                                    • Remote attestation.
                                    • Tamper-proof storage of the age.
                                    • Any validation in the age.

                                    In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                                    In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                                    • Define four groups for the four age ranges (ideally, standardise their names!).
                                    • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                                    • Add a daily cron job that checks the above file and updates group membership.
                                    • Modify user-add scripts / GUIs to create an entry in the above file.
                                    • Add a tool to create an entry in the above file for existing user accounts.

                                    This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                                    If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                                    I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                                    bzdev@fosstodon.orgB This user is from outside of this forum
                                    bzdev@fosstodon.orgB This user is from outside of this forum
                                    bzdev@fosstodon.org
                                    wrote last edited by
                                    #17

                                    @david_chisnall One problem with the law is that one section says: “Covered application store” does not mean an online service or platform that distributes extensions, plug-ins, add-ons, or other software applications that run exclusively within a separate host application. But another says: A developer shall request a signal with respect to a particular user from an operating system provider or a covered application store when the application is downloaded and launched.

                                    It's confusing (more)

                                    bzdev@fosstodon.orgB 1 Reply Last reply
                                    0
                                    • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                                      So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                                      • Remote attestation.
                                      • Tamper-proof storage of the age.
                                      • Any validation in the age.

                                      In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                                      In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                                      • Define four groups for the four age ranges (ideally, standardise their names!).
                                      • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                                      • Add a daily cron job that checks the above file and updates group membership.
                                      • Modify user-add scripts / GUIs to create an entry in the above file.
                                      • Add a tool to create an entry in the above file for existing user accounts.

                                      This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                                      If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                                      I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                                      dasgrueneblatt@wien.rocksD This user is from outside of this forum
                                      dasgrueneblatt@wien.rocksD This user is from outside of this forum
                                      dasgrueneblatt@wien.rocks
                                      wrote last edited by
                                      #18

                                      @david_chisnall no, just no

                                      1 Reply Last reply
                                      0
                                      • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                                        So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                                        • Remote attestation.
                                        • Tamper-proof storage of the age.
                                        • Any validation in the age.

                                        In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                                        In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                                        • Define four groups for the four age ranges (ideally, standardise their names!).
                                        • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                                        • Add a daily cron job that checks the above file and updates group membership.
                                        • Modify user-add scripts / GUIs to create an entry in the above file.
                                        • Add a tool to create an entry in the above file for existing user accounts.

                                        This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                                        If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                                        I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                                        murteza@edmontonian.socialM This user is from outside of this forum
                                        murteza@edmontonian.socialM This user is from outside of this forum
                                        murteza@edmontonian.social
                                        wrote last edited by
                                        #19
                                        @david_chisnall@infosec.exchange

                                        That is a brilliantly simple, and sensible way to approach this. Let parents/guardians to set things up for their kids.

                                        But the issue politicians will find with this approach right away is that it gives control away. We can't have that. It is governments' job to parent kids, not parents' job.
                                        1 Reply Last reply
                                        0
                                        • david_chisnall@infosec.exchangeD david_chisnall@infosec.exchange

                                          So, I have actually read the text of California law CA AB1043 and, honestly, I don't hate it. It requires operating systems to let you enter a date when you create a user account and requires a way for software to get a coarse-grained approximation of this that says either 'over 18' or one of three age ranges of under-18s. Importantly, it doesn't require:

                                          • Remote attestation.
                                          • Tamper-proof storage of the age.
                                          • Any validation in the age.

                                          In short, it's a tool for parents: it allows you to set the age of a child's account so that apps (including web browsers, which can then expose via JavaScript or whatever) can ask questions about what features they should expose.

                                          In a UNIX-like system, this is easy to do, with a tiny amount of new userspace things:

                                          • Define four groups for the four age ranges (ideally, standardise their names!).
                                          • Add a /etc/user_birthdays file (or whatever name it is) that stores pairs of username (or uid) and birthdays.
                                          • Add a daily cron job that checks the above file and updates group membership.
                                          • Modify user-add scripts / GUIs to create an entry in the above file.
                                          • Add a tool to create an entry in the above file for existing user accounts.

                                          This doesn't require any kernel changes. Any process can query the set of groups that the user is in already.

                                          If a parent wants to give their child root, they can update the file and bypass the check. And that's fine, that's a parent's choice. And that's what I want.

                                          I like this approach far more than things that require users to provide scans of passports and other toxically personal information to be able to use services. If we had this feature, then the Online Safety Act could simply require that web browsers provide a JavaScript API to query the age bracket and didn't work unless it returned 'over 18'.

                                          pkw@snac.d34d.netP This user is from outside of this forum
                                          pkw@snac.d34d.netP This user is from outside of this forum
                                          pkw@snac.d34d.net
                                          wrote last edited by
                                          #20
                                          What about an OS that doesn't want to or have the need to or the bandwidth
                                          to do that ?
                                          A pemensik@fosstodon.orgP 2 Replies Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups