Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
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 (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Development
  3. [security] Introducing signing support to MySensors

[security] Introducing signing support to MySensors

Scheduled Pinned Locked Moved Development
security
491 Posts 48 Posters 334.0k Views 30 Watching
  • 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.
  • AnticimexA Anticimex

    @TD22057 that's really nice to hear! Are you using a stable release or the development/beta channel?

    TD22057T Offline
    TD22057T Offline
    TD22057
    Hardware Contributor
    wrote on last edited by
    #216

    @Anticimex
    I used the signing sketch on the dev branch - I'm in the process of shifting my stuff over to the dev branch from 1.5 now.

    1 Reply Last reply
    0
    • AnticimexA Offline
      AnticimexA Offline
      Anticimex
      Contest Winner
      wrote on last edited by
      #217

      Ok, cool. As you might have noticed, personalization has changed a bit on development. Also, whitelisting works slightly differently/better.

      Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

      1 Reply Last reply
      0
      • Pierre PP Offline
        Pierre PP Offline
        Pierre P
        wrote on last edited by
        #218

        Isn't blacklisting cool too to use ?
        Like, if we know the "name" of the sensor lost, we push it to the black list and voila ? This way, we don't have to put a long list a agreed sensors if we have only two nodes outside the house.
        ... I think.

        No quote, no forum notification (else, the mail box ring every minutes !). Thanks, and have a very good MySensors day !

        AnticimexA 1 Reply Last reply
        0
        • Pierre PP Pierre P

          Isn't blacklisting cool too to use ?
          Like, if we know the "name" of the sensor lost, we push it to the black list and voila ? This way, we don't have to put a long list a agreed sensors if we have only two nodes outside the house.
          ... I think.

          AnticimexA Offline
          AnticimexA Offline
          Anticimex
          Contest Winner
          wrote on last edited by Anticimex
          #219

          @Pierre-P because if a node is lost, you no longer control that node. So anyone could reprogram it to have it identify itself in any way possible. We have to assume an attacker has full source code access, so they can rewrite the signing algorithm to use a fake serial as salt for the signature to trick the GW to believe it is a new node. A whitelist mean the attacker has to know the ID/serial of one of the nodes you trust. Which they won't know unless they can get access to that node.

          Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

          1 Reply Last reply
          3
          • Pierre PP Offline
            Pierre PP Offline
            Pierre P
            wrote on last edited by
            #220

            Thanks for the complet answer !

            No quote, no forum notification (else, the mail box ring every minutes !). Thanks, and have a very good MySensors day !

            AnticimexA 1 Reply Last reply
            0
            • Pierre PP Pierre P

              Thanks for the complet answer !

              AnticimexA Offline
              AnticimexA Offline
              Anticimex
              Contest Winner
              wrote on last edited by
              #221

              @Pierre-P you are welcome. Security is best when it is totally open and the implementation is aware of this. That makes it quite difficult to circumvent, and it also allows to be challenged. That way, with many eyes examining it, it gets stronger and stronger :) I welcome all attempts to crack it. White or black hat style.

              Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

              1 Reply Last reply
              1
              • SoloamS Offline
                SoloamS Offline
                Soloam
                Hardware Contributor
                wrote on last edited by
                #222

                Hello all! What would require less flash memory? Signing by ATSHA204A Chip or by software?

                1 Reply Last reply
                0
                • AnticimexA Offline
                  AnticimexA Offline
                  Anticimex
                  Contest Winner
                  wrote on last edited by
                  #223

                  Signing by ATSHA204A require less flash memory, but takes longer to execute (at least on 8MHz AtMega328).

                  Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                  1 Reply Last reply
                  0
                  • SoloamS Offline
                    SoloamS Offline
                    Soloam
                    Hardware Contributor
                    wrote on last edited by Soloam
                    #224

                    @Anticimex assumed that, but this post on the forum got me confused: http://forum.mysensors.org/topic/2005/software-aes-encryption-for-nrf24/19

                    According to that post, he uses software on the SenseBender with Encryption because, according to him "...encryption and ATSHA204A is to big for the SenseBender... ".

                    I would like to add Signing and encryption to my nodes, but I don't know if it will fit on my Atmega328 flash!

                    1 Reply Last reply
                    0
                    • AnticimexA Offline
                      AnticimexA Offline
                      Anticimex
                      Contest Winner
                      wrote on last edited by
                      #225

                      Well, how much space you have depend on your sketch and on the features you enable in the library, so it is impossible to predict how your code will fit. I suggest you just try to enable what you want and compile, and you'll know :)

                      Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                      1 Reply Last reply
                      0
                      • mfalkviddM Online
                        mfalkviddM Online
                        mfalkvidd
                        Mod
                        wrote on last edited by
                        #226

                        The easiest way to find out is to look at the output in Arduino IDE when you click "Verify".

                        There are some factors that affect size:

                        • Size of bootloader
                        • MySensors version (different versions of the library have different size requirements)
                        • MySensors features used (software signing, encryption, debug on or off, etc)
                        • Size of other libraries you use in your sketch
                        • Size of your sketch
                        1 Reply Last reply
                        0
                        • mfalkviddM Online
                          mfalkviddM Online
                          mfalkvidd
                          Mod
                          wrote on last edited by
                          #227

                          ouch, @Anticimex was a bit faster :)
                          oh, and the problem in the thread you quoted @Soloam is encryption. At least at that time, encryption used too much space so there wasn't space to include either hardware or software signing.

                          1 Reply Last reply
                          0
                          • SoloamS Offline
                            SoloamS Offline
                            Soloam
                            Hardware Contributor
                            wrote on last edited by
                            #228

                            Yes, encryption and signing! I'll try to order this and test it out! http://www.ebay.com/itm/5PCS-ATSHA204A-STUCZ-T-IC-CRYPTO-4-5KB-SWI-204A-SHA204A-/191782104901?hash=item2ca71aaf45:g:zEQAAOSwwE5WZk9O

                            1 Reply Last reply
                            0
                            • AnticimexA Offline
                              AnticimexA Offline
                              Anticimex
                              Contest Winner
                              wrote on last edited by
                              #229

                              And on development branch, @tekka has an open PR where he has cut down significantly on the size of the NRF24 driver as well.

                              Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                              1 Reply Last reply
                              0
                              • AnticimexA Offline
                                AnticimexA Offline
                                Anticimex
                                Contest Winner
                                wrote on last edited by
                                #230

                                And you might also have read mine and @mfalkvidd's stand on encryption, so don't be discouraged if you find that you can't fit both. Just skip the encryption in that case. It adds far less in security than signing does.

                                Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                                1 Reply Last reply
                                0
                                • SoloamS Offline
                                  SoloamS Offline
                                  Soloam
                                  Hardware Contributor
                                  wrote on last edited by
                                  #231

                                  Yes, if I have to discard one it would be encryption! Thank you for the help @Anticimex and @mfalkvidd

                                  1 Reply Last reply
                                  1
                                  • carlierdC Offline
                                    carlierdC Offline
                                    carlierd
                                    wrote on last edited by
                                    #232

                                    Hello,

                                    I currently testing various bootloader to measure impact on CPU speed on the power consumption.
                                    I got a lot of nonce error when using 1 MHz configuration.

                                    Is signing feature possible at 1 MHz ?

                                    Thanks.

                                    David.

                                    AnticimexA 1 Reply Last reply
                                    0
                                    • carlierdC carlierd

                                      Hello,

                                      I currently testing various bootloader to measure impact on CPU speed on the power consumption.
                                      I got a lot of nonce error when using 1 MHz configuration.

                                      Is signing feature possible at 1 MHz ?

                                      Thanks.

                                      David.

                                      AnticimexA Offline
                                      AnticimexA Offline
                                      Anticimex
                                      Contest Winner
                                      wrote on last edited by
                                      #233

                                      @carlierd could you specify a bit clearer what you mean by "nonce error"? Signing should work, but the atsha driver is not tested @ 1MHz and might get bad timing. Also, for soft (and hard) signing, if 1MHz is used, performance could degrade to the point that the nonce timeout needs to be increased.

                                      Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                                      carlierdC 1 Reply Last reply
                                      1
                                      • AnticimexA Anticimex

                                        @carlierd could you specify a bit clearer what you mean by "nonce error"? Signing should work, but the atsha driver is not tested @ 1MHz and might get bad timing. Also, for soft (and hard) signing, if 1MHz is used, performance could degrade to the point that the nonce timeout needs to be increased.

                                        carlierdC Offline
                                        carlierdC Offline
                                        carlierd
                                        wrote on last edited by
                                        #234

                                        @Anticimex

                                        Hello.

                                        I am using soft signing.

                                        find parent
                                        send: 255-255-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
                                        read: 255-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                                        sensor started, id=255, parent=255, distance=255
                                        find parent
                                        send: 255-255-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
                                        read: 0-0-255 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        parent=0, d=1
                                        read: 0-0-255 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                        req id
                                        send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,sg=0,st=ok:
                                        read: 0-0-255 s=255,c=3,t=4,pt=0,l=1,sg=0:9
                                        send: 9-9-0-0 s=255,c=3,t=15,pt=2,l=2,sg=0,st=fail:1
                                        read and drop: 9-9-0 s=255,c=3,t=15,pt=2,l=2,sg=0:1
                                        read: 0-0-9 s=255,c=3,t=15,pt=2,l=2,sg=0:1
                                        send: 9-9-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=fail:
                                        nonce tr err
                                        send: 9-9-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=fail:
                                        nonce tr err
                                        read and drop: 9-0-0 s=255,c=3,t=6,pt=1,l=1,sg=0:0
                                        read: 0-0-9 s=255,c=3,t=17,pt=6,l=25,sg=0:0129D04B64916F5E805EFDF704C34F56B47E547FDDE93805BE
                                        id=9
                                        send: 9-9-0-0 s=0,c=0,t=0,pt=0,l=0,sg=0,st=ok:
                                        send: 9-9-0-0 s=1,c=0,t=30,pt=0,l=0,sg=0,st=fail:
                                        [Setup duration: 9928 ms]
                                        send: 9-9-0-0 s=0,c=3,t=16,pt=0,l=0,sg=0,st=fail:
                                        nonce tr err
                                        send: 9-9-0-0 s=1,c=3,t=16,pt=0,l=0,sg=0,st=fail:
                                        nonce tr err
                                        send: 9-9-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=fail:
                                        nonce tr err
                                        Value is 1   Cycle is 1   3.39 v   [753 ms]
                                        

                                        Thanks,

                                        David.

                                        AnticimexA 1 Reply Last reply
                                        0
                                        • carlierdC carlierd

                                          @Anticimex

                                          Hello.

                                          I am using soft signing.

                                          find parent
                                          send: 255-255-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
                                          read: 255-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0:
                                          sensor started, id=255, parent=255, distance=255
                                          find parent
                                          send: 255-255-255-255 s=255,c=3,t=7,pt=0,l=0,sg=0,st=bc:
                                          read: 0-0-255 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          parent=0, d=1
                                          read: 0-0-255 s=255,c=3,t=8,pt=1,l=1,sg=0:0
                                          req id
                                          send: 255-255-0-0 s=255,c=3,t=3,pt=0,l=0,sg=0,st=ok:
                                          read: 0-0-255 s=255,c=3,t=4,pt=0,l=1,sg=0:9
                                          send: 9-9-0-0 s=255,c=3,t=15,pt=2,l=2,sg=0,st=fail:1
                                          read and drop: 9-9-0 s=255,c=3,t=15,pt=2,l=2,sg=0:1
                                          read: 0-0-9 s=255,c=3,t=15,pt=2,l=2,sg=0:1
                                          send: 9-9-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=fail:
                                          nonce tr err
                                          send: 9-9-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=fail:
                                          nonce tr err
                                          read and drop: 9-0-0 s=255,c=3,t=6,pt=1,l=1,sg=0:0
                                          read: 0-0-9 s=255,c=3,t=17,pt=6,l=25,sg=0:0129D04B64916F5E805EFDF704C34F56B47E547FDDE93805BE
                                          id=9
                                          send: 9-9-0-0 s=0,c=0,t=0,pt=0,l=0,sg=0,st=ok:
                                          send: 9-9-0-0 s=1,c=0,t=30,pt=0,l=0,sg=0,st=fail:
                                          [Setup duration: 9928 ms]
                                          send: 9-9-0-0 s=0,c=3,t=16,pt=0,l=0,sg=0,st=fail:
                                          nonce tr err
                                          send: 9-9-0-0 s=1,c=3,t=16,pt=0,l=0,sg=0,st=fail:
                                          nonce tr err
                                          send: 9-9-0-0 s=255,c=3,t=16,pt=0,l=0,sg=0,st=fail:
                                          nonce tr err
                                          Value is 1   Cycle is 1   3.39 v   [753 ms]
                                          

                                          Thanks,

                                          David.

                                          AnticimexA Offline
                                          AnticimexA Offline
                                          Anticimex
                                          Contest Winner
                                          wrote on last edited by
                                          #235

                                          @carlierd you have a lot of st=fail, so your problem is radio related, not signing related. I also see non nonce related messages fail so you need to stabilize your rf connection before signing can work. And since signing uses the maximum payload size, it has the least probability to succeed to be sent, so you could find that unsigned messages work while nonces and signed messages fail, but this is normal of the rf link is not fully working. If you get st=fail, it is a radio problem. See this discussion for details: http://forum.mysensors.org/topic/3386/mqttclientgateway-broken-after-upgrade-signature-failure

                                          Do you feel secure today? No? Start requiring some signatures and feel better tomorrow ;)

                                          carlierdC 1 Reply Last reply
                                          1
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          18

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.0k

                                          Posts


                                          Copyright 2019 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • MySensors
                                          • OpenHardware.io
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular