Device stuck thinking remote needs permission-only change

I’ve just ran into a strange limitation regarding synchronization of permissions. Maybe it is a bug, maybe it is just a mistake on my side.

This concerned a particular folder I am sharing between devices A, B and C.

One day I accidentally mounted the folder on C with ntfs-3g in a wrong way which caused many unintentional permission changes. Syncthing synchronized these changes as expected back then. I didn’t do anything about it after the fact as I don’t really care about these permission changes in that folder. I think this was even before A, B and C were migrated to v2. There were no other changes made on C to this date but it pulled newer versions from other devices occasionally.

Since then I’ve updated all devices to v2.

Today I made a mistake when doing some testing for Syncthing Tray which effectively reset my Syncthing config on device A. I accidentally posted a config to my production Syncthing instance via the REST API which was supposed to go to some test instance instead. So Syncthing removed all my folder configs and consequently also all databases. Not a big deal, I simply restored the previous config from backups. I did not restore the database from backups because the database was a bit behind. So I instead lead Syncthing scan all folders again. This was ok because everything was in sync anyway.

The problem I ran into was that one folder would not get back in sync. Of course they were in sync anyway but device A always though that remote device B still has many out of sync items. Device B thought that remote A is up to date. So this was a one-sided problem. Device A and B both thought correctly that they are in sync locally.

Weirdly, device A thought that remote device B lacks a version of many files that was last modified by C. Not all files were affected; only files were the last version was still the permission change by C were showing as out of sync.

I tried the following to rectify the situation:

  1. Turn on device C. This didn’t help except that C pulled some new versions. From device C the remotes A and B were both in sync.
  2. Enable ignoring of permissions on all devices. This didn’t help. I turned device C off again.
  3. Turn device A and B on and off. This didn’t help.
  4. Disable ignoring permissions again on A and B. This didn’t help.
  5. Run find . -exec chmod 755 {} \+ in the folder on device A. This changed a permissions change on all files. After re-scanning I’ve got many more out of sync files on remote B but this time the count went down to zero. So this finally helped.
  6. Run find . -exec chmod 777 {} \+ on A again to restore how permissions were before. Again, all permissions were synced as expected and the on device A remote B was eventually in sync again.
  7. Turn on device C again which was still ignoring permissions. The device was quickly updating as expected and ignoring permissions worked as expected.

TLDR: So device A was stuck thinking remote B needs to get permission-only changes from device C. Only generating a new version by changing permissions back-and-forth on device A helped. The problem only occurred after doing an initial scan on device A (due to losing the database).


By the way, I’m wondering whether it would make sense if Syncthing could preserve the database when removing a folder (as an advanced opt-in feature). This way it would be less trouble accidentally deleting a folder from the config at the cost of having to clean the database files manually (although there could be some automatic cleanup similar to how versioning works).

For proper debugging, please get file debug data from both sides. Two commands; both take a folder ID and a filename. The first accepts the filename as a partial match, the second requires the precise (in-folder) path to the file in question (sample outputs so you know what to expect):

jb@jbo-m3wl72rv:~ % syncthing debug database-file 7ojpy-cfjhl 20250920-IMG_3696.png
DEVICE   TYPE  NAME                           SEQUENCE  DELETED  MODIFIED                        SIZE     FLAGS    VERSION             BLOCKLIST
-local-  FILE  Capture/20250920-IMG_3696.png  44925     ---      2025-09-23T12:00:46.414328057Z  1099571  --G----  HX2ELNU:1758629069  3DwPu9xA
PSEUDOP  FILE  Capture/20250920-IMG_3696.png  45124     ---      2025-09-23T12:00:46.414328057Z  1099571  -------  HX2ELNU:1758629069  3DwPu9xA
jb@jbo-m3wl72rv:~ % syncthing cli debug file 7ojpy-cfjhl Capture/20250920-IMG_3696.png
{
  "availability": [
    {
      "fromTemporary": false,
      "id": "PSEUDOP-YLA5DBR-XO2HBNT-2FOG4AC-SWOW5EZ-H3QQY76-GISB7PG-E2SWOA2"
    }
  ],
  "global": {
    "blocksHash": "3DwPu9xAu9xJVEbR1FqdDi0vzHMz5mA0ry6Y5WC0ju8=",
    "deleted": false,
    "ignored": false,
    "inodeChange": "2025-09-23T14:04:00.360983195+02:00",
    "invalid": false,
    "localFlags": 0,
    "modified": "2025-09-23T14:00:46.414328057+02:00",
    "modifiedBy": "HX2ELNU",
    "mustRescan": false,
    "name": "Capture/20250920-IMG_3696.png",
    "noPermissions": true,
    "numBlocks": 9,
    "platform": {
      "Darwin": null,
      "FreeBSD": null,
      "Linux": null,
      "NetBSD": null,
      "Unix": null,
      "Windows": null
    },
    "previousBlocksHash": null,
    "sequence": 44925,
    "size": 1099571,
    "type": "FILE_INFO_TYPE_FILE",
    "version": [
      "HX2ELNU:1758629069"
    ]
  },
  "local": {
    "blocksHash": "3DwPu9xAu9xJVEbR1FqdDi0vzHMz5mA0ry6Y5WC0ju8=",
    "deleted": false,
    "ignored": false,
    "inodeChange": "2025-09-23T14:04:00.360983195+02:00",
    "invalid": false,
    "localFlags": 0,
    "modified": "2025-09-23T14:00:46.414328057+02:00",
    "modifiedBy": "HX2ELNU",
    "mustRescan": false,
    "name": "Capture/20250920-IMG_3696.png",
    "noPermissions": true,
    "numBlocks": 9,
    "platform": {
      "Darwin": null,
      "FreeBSD": null,
      "Linux": null,
      "NetBSD": null,
      "Unix": null,
      "Windows": null
    },
    "previousBlocksHash": null,
    "sequence": 44925,
    "size": 1099571,
    "type": "FILE_INFO_TYPE_FILE",
    "version": [
      "HX2ELNU:1758629069"
    ]
  }
}

Thanks. I’ll do that this evening on device A and B with one of the files in question.

I’m now on device D and there’s a similar situation with a different folder that is also shared between A, B, C and D. So it was affected by the full rescan on A but D only knows about it via B.

The situation is that D thinks remote B still misses a single file in one folder while B itself thinks it is up-to-date and also that remote D is up-to-date. D also thinks it is locally up to date.

The situation is similar as again a device wrongly thinks a remote device is out of sync. However, this time there was probably no permission-only change and it is also just a single file (and I don’t know what makes it special).

So I’m now trying to investigate this with the commands you’ve mentioned. I replaced all command IDs with the letters I’ve been using so far.

On device D (that thinks B is out of date):

syncthing debug database-file projects c++/cmake/skel/CMakeLists.txt
DEVICE   TYPE  NAME                           SEQUENCE  DELETED  MODIFIED                     SIZE  FLAGS    VERSION              BLOCKLIST
-local-  FILE  c++/cmake/skel/CMakeLists.txt  15312     ---      2016-08-19T20:50:18Z         1252  --G----  AOU2PT3:1,HP76RFD:2  6sqHFI1Z
PKPUQWZ  FILE  c++/cmake/skel/CMakeLists.txt  4621064   ---      2016-08-19T20:50:18.243175Z  1252  -------  HP76RFD:1769962550   6sqHFI1Z
AOU2PT3  FILE  c++/cmake/skel/CMakeLists.txt  2660781   ---      2016-08-19T20:50:18Z         1252  -------  AOU2PT3:1,HP76RFD:2  6sqHFI1Z
HP76RFD  FILE  c++/cmake/skel/CMakeLists.txt  3074376   ---      2016-08-19T20:50:18.243175Z  1252  -------  AOU2PT3:1,HP76RFD:2  6sqHFI1Z
syncthing cli debug file projects c++/cmake/skel/CMakeLists.txt
{
  "availability": null,
  "global": {
    "blocksHash": "6sqHFI1ZJHMGAzkoA70Y0ZzAGCFs1NIJf2yq299eAX8=",
    "deleted": false,
    "ignored": false,
    "inodeChange": "1970-01-01T01:00:00+01:00",
    "invalid": false,
    "localFlags": 0,
    "modified": "2016-08-19T22:50:18+02:00",
    "modifiedBy": "",
    "mustRescan": false,
    "name": "c++/cmake/skel/CMakeLists.txt",
    "noPermissions": false,
    "numBlocks": 1,
    "permissions": "0644",
    "platform": {
      "Darwin": null,
      "FreeBSD": null,
      "Linux": null,
      "NetBSD": null,
      "Unix": null,
      "Windows": null
    },
    "previousBlocksHash": null,
    "sequence": 15312,
    "size": 1252,
    "type": "FILE_INFO_TYPE_FILE",
    "version": [
      "AOU2PT3:1",
      "HP76RFD:2"
    ]
  },
  "local": {
    "blocksHash": "6sqHFI1ZJHMGAzkoA70Y0ZzAGCFs1NIJf2yq299eAX8=",
    "deleted": false,
    "ignored": false,
    "inodeChange": "1970-01-01T01:00:00+01:00",
    "invalid": false,
    "localFlags": 0,
    "modified": "2016-08-19T22:50:18+02:00",
    "modifiedBy": "",
    "mustRescan": false,
    "name": "c++/cmake/skel/CMakeLists.txt",
    "noPermissions": false,
    "numBlocks": 1,
    "permissions": "0644",
    "platform": {
      "Darwin": null,
      "FreeBSD": null,
      "Linux": null,
      "NetBSD": null,
      "Unix": null,
      "Windows": null
    },
    "previousBlocksHash": null,
    "sequence": 15312,
    "size": 1252,
    "type": "FILE_INFO_TYPE_FILE",
    "version": [
      "AOU2PT3:1",
      "HP76RFD:2"
    ]
  }
}

On device B (that thinks everything is in sync):

syncthing debug database-file projects c++/cmake/skel/CMakeLists.txt                                                                                                                                                                                                             │
│DEVICE   TYPE  NAME                           SEQUENCE  DELETED  MODIFIED                     SIZE  FLAGS    VERSION              BLOCKLIST                                                                                                                                                                               │
│-local-  FILE  c++/cmake/skel/CMakeLists.txt  5938504   ---      2016-08-19T20:50:18.243175Z  1252  --G----  HP76RFD:1769962550   6sqHFI1Z                                                                                                                                                                                │
│DO2O756  FILE  c++/cmake/skel/CMakeLists.txt  590418    ---      2016-08-19T20:50:18Z         1252  -------  AOU2PT3:1,HP76RFD:2  6sqHFI1Z                                                                                                                                                                                │
│HP76RFD  FILE  c++/cmake/skel/CMakeLists.txt  5700203   ---      2016-08-19T20:50:18.243175Z  1252  -------  HP76RFD:1769962550   6sqHFI1Z                                                                                                                                                                                │
│AOU2PT3  FILE  c++/cmake/skel/CMakeLists.txt  6120961   ---      2016-08-19T20:50:18.243175Z  1252  -------  HP76RFD:1769962550   6sqHFI1Z
syncthing cli debug file projects c++/cmake/skel/CMakeLists.txt                                                                                                                                                                                                                  
│{                                                                                                                                                                                                                                                                                                                         
│  "availability": null,                                                                                                                                                                                                                                                                                                   
│  "global": {                                                                                                                                                                                                                                                                                                             
│    "blocksHash": "6sqHFI1ZJHMGAzkoA70Y0ZzAGCFs1NIJf2yq299eAX8=",                                                                                                                                                                                                                                                         
│    "deleted": false,                                                                                                                                                                                                                                                                                                     
│    "ignored": false,                                                                                                                                                                                                                                                                                                     
│    "inodeChange": "2026-02-01T18:11:50.747770221+01:00",                                                                                                                                                                                                                                                                 
│    "invalid": false,                                                                                                                                                                                                                                                                                                     
│    "localFlags": 0,                                                                                                                                                                                                                                                                                                      
│    "modified": "2016-08-19T22:50:18.243175+02:00",                                                                                                                                                                                                                                                                       
│    "modifiedBy": "HP76RFD",                                                                                                                                                                                                                                                                                              
│    "mustRescan": false,                                                                                                                                                                                                                                                                                                  
│    "name": "c++/cmake/skel/CMakeLists.txt",                                                                                                                                                                                                                                                                              
│    "noPermissions": false,                                                                                                                                                                                                                                                                                               
│    "numBlocks": 1,                                                                                                                                                                                                                                                                                                       
│    "permissions": "0644",                                                                                                                                                                                                                                                                                                
│    "platform": {                                                                                                                                                                                                                                                                                                         
│      "Darwin": null,                                                                                                                                                                                                                                                                                                     
│      "FreeBSD": null,                                                                                                                                                                                                                                                                                                    
│      "Linux": null,                                                                                                                                                                                                                                                                                                      
│      "NetBSD": null,                                                                                                                                                                                                                                                                                                     
│      "Unix": null,                                                                                                                                                                                                                                                                                                       
│      "Windows": null                                                                                                                                                                                                                                                                                                     
│    },                                                                                                                                                                                                                                                                                                                    
│    "previousBlocksHash": null,                                                                                                                                                                                                                                                                                           
│    "sequence": 5938504,                                                                                                                                                                                                                                                                                                  
│    "size": 1252,                                                                                                                                                                                                                                                                                                         
│    "type": "FILE_INFO_TYPE_FILE",                                                                                                                                                                                                                                                                                        
│    "version": [                                                                                                                                                                                                                                                                                                          
│      "HP76RFD:1769962550"                                                                                                                                                                                                                                                                                                
│    ]                                                                                                                                                                                                                                                                                                                     
│  },                                                                                                                                                                                                                                                                                                                      
│  "local": {                                                                                                                                                                                                                                                                                                              
│    "blocksHash": "6sqHFI1ZJHMGAzkoA70Y0ZzAGCFs1NIJf2yq299eAX8=",                                                                                                                                                                                                                                                         
│    "deleted": false,                                                                                                                                                                                                                                                                                                     
│    "ignored": false,                                                                                                                                                                                                                                                                                                     
│    "inodeChange": "2026-02-01T18:11:50.747770221+01:00",                                                                                                                                                                                                                                                                 
│    "invalid": false,                                                                                                                                                                                                                                                                                                     
│    "localFlags": 0,                                                                                                                                                                                                                                                                                                      
│    "modified": "2016-08-19T22:50:18.243175+02:00",                                                                                                                                                                                                                                                                       
│    "modifiedBy": "HP76RFD",                                                                                                                                                                                                                                                                                              
│    "mustRescan": false,                                                                                                                                                                                                                                                                                                  
│    "name": "c++/cmake/skel/CMakeLists.txt",                                                                                                                                                                                                                                                                              
│    "noPermissions": false,                                                                                                                                                                                                                                                                                               
│    "numBlocks": 1,                                                                                                                                                                                                                                                                                                       
│    "permissions": "0644",                                                                                                                                                                                                                                                                                                
│    "platform": {                                                                                                                                                                                                                                                                                                         
│      "Darwin": null,                                                                                                                                                                                                                                                                                                     
│      "FreeBSD": null,                                                                                                                                                                                                                                                                                                    
│      "Linux": null,                                                                                                                                                                                                                                                                                                      
│      "NetBSD": null,                                                                                                                                                                                                                                                                                                     
│      "Unix": null,                                                                                                                                                                                                                                                                                                       
│      "Windows": null                                                                                                                                                                                                                                                                                                     
│    },                                                                                                                                                                                                                                                                                                                    
│    "previousBlocksHash": null,                                                                                                                                                                                                                                                                                           
│    "sequence": 5938504,                                                                                                                                                                                                                                                                                                  
│    "size": 1252,                                                                                                                                                                                                                                                                                                         
│    "type": "FILE_INFO_TYPE_FILE",                                                                                                                                                                                                                                                                                        
│    "version": [                                                                                                                                                                                                                                                                                                          
│      "HP76RFD:1769962550"                                                                                                                                                                                                                                                                                                
│    ]                                                                                                                                                                                                                                                                                                                     
│  }                                                                                                                                                                                                                                                                                                                       
│} 

Device B is on v2.0.11 and A and D on v2.0.13.

Now you’ve manually edited/redacted just the fields where every byte is exactingly important to interpreting the result, so I’m not going to draw any conclusions.

Ok, sorry. I changed it back. And thanks for having a look. Here’s the mapping of the device letters I mentioned so far:

A: HP…
B: PK…
C: AO…
D: DO…
1 Like

Thanks, that’s enough to at least see the general shape of the bug. Let me noodle on it.

For the record, here’s the bug:

These two versions are in conflict, but the correct sort order is the opposite of what’s shown here. The global version should be the newly scanned variant with the higher version counter and higher precision timestamp. It’s not. I can’t reproduce that, any database insert test I can think of right now creates the correct order. :person_shrugging:

2 Likes

Would it help to get your hands on a copy of the DB?

It wouldn’t hurt. @Martchus if you want to send over the folder database in question, I’d be happy to take a look. You can put it in a non-public DM.

Thanks for the investigation. Maybe this is then the result of a bug that has already been fixed (but the wrong DB entries persisted). Considering it was just one file out of many and I have no clue what makes that file special we should probably not put too much thought into it. I’m also not sure whether it makes sense to share the DB of that folder.

I haven’t been on device A again to share the debug output of the initially mentioned problem. I hope I’ll get to it this evening.

I re-executed the syncthing debug database-file projects c++/cmake/skel/CMakeLists.txt on device D to verify whether I get the same wrongly ordered output consistently and I did. I made a backup of the config and all databases in case I/we want to investigate this later after all.

Then I modified the file locally on D. It was synced correctly to B which now shows again as in sync on D. Now this it the output of the debug command on D:

syncthing debug database-file projects c++/cmake/skel/CMakeLists.txt
DEVICE   TYPE  NAME                           SEQUENCE  DELETED  MODIFIED                        SIZE  FLAGS    VERSION                                 BLOCKLIST
-local-  FILE  c++/cmake/skel/CMakeLists.txt  4927393   ---      2026-02-03T10:47:09.390846019Z  1253  --G----  AOU2PT3:1,DO2O756:1770115667,HP76RFD:2  6JARzONm
PKPUQWZ  FILE  c++/cmake/skel/CMakeLists.txt  4927394   ---      2026-02-03T10:47:09.390846019Z  1253  -------  AOU2PT3:1,DO2O756:1770115667,HP76RFD:2  6JARzONm
AOU2PT3  FILE  c++/cmake/skel/CMakeLists.txt  2660781   ---      2016-08-19T20:50:18Z            1252  -------  AOU2PT3:1,HP76RFD:2                     6sqHFI1Z
HP76RFD  FILE  c++/cmake/skel/CMakeLists.txt  3074376   ---      2016-08-19T20:50:18.243175Z     1252  -------  AOU2PT3:1,HP76RFD:2                     6sqHFI1Z

So the row with the very small sequence number went away completely. So at least this is not a situation which is tricky to workaround and at no point Syncthing overwrote something it should not have.

This is the output of the debugging commands for one of the files that got stuck with the permission-only change:

On device A:

$ syncthing debug database-file applications-windows 'Bulk Rename Utility/64-bit/Bulk Rename Utility.exe'DEVICE   TYPE  NAME                                                SEQUENCE  DELETED  MODIFIED              SIZE      FLAGS    VERSION                                BLOCKLIST
-local-  FILE  Bulk Rename Utility/64-bit/Bulk Rename Utility.exe  254563    ---      2022-07-16T21:23:56Z  19830208  --G----  AOU2PT3:1709809853,HP76RFD:1769975415  bzaUl2PU
PKPUQWZ  FILE  Bulk Rename Utility/64-bit/Bulk Rename Utility.exe  295337    ---      2022-07-16T21:23:56Z  19830208  -------  AOU2PT3:1709809853,HP76RFD:1769975415  bzaUl2PU
$ syncthing cli debug file applications-windows 'Bulk Rename Utility/64-bit/Bulk Rename Utility.exe'
{
  "availability": [
    {
      "fromTemporary": false,
      "id": "PKPUQWZ-RO3IJKD-BGD447T-IRBK6E3-TXEXJFD-I6YS7YN-JRRABIE-CFTL3A4"
    }
  ],
  "global": {
    "blocksHash": "bzaUl2PUYZE5PNDR4A+I1NwyutUH0l+NUAhh3LlC8bM=",
    "deleted": false,
    "ignored": false,
    "inodeChange": "2026-02-01T20:50:08.5176217+01:00",
    "invalid": false,
    "localFlags": 0,
    "modified": "2022-07-16T23:23:56+02:00",
    "modifiedBy": "HP76RFD",
    "mustRescan": false,
    "name": "Bulk Rename Utility/64-bit/Bulk Rename Utility.exe",
    "noPermissions": false,
    "numBlocks": 152,
    "permissions": "0777",
    "platform": {
      "Darwin": null,
      "FreeBSD": null,
      "Linux": null,
      "NetBSD": null,
      "Unix": null,
      "Windows": null
    },
    "previousBlocksHash": "bzaUl2PUYZE5PNDR4A+I1NwyutUH0l+NUAhh3LlC8bM=",
    "sequence": 254563,
    "size": 19830208,
    "type": "FILE_INFO_TYPE_FILE",
    "version": [
      "AOU2PT3:1709809853",
      "HP76RFD:1769975415"
    ]
  },
  "local": {
    "blocksHash": "bzaUl2PUYZE5PNDR4A+I1NwyutUH0l+NUAhh3LlC8bM=",
    "deleted": false,
    "ignored": false,
    "inodeChange": "2026-02-01T20:50:08.5176217+01:00",
    "invalid": false,
    "localFlags": 0,
    "modified": "2022-07-16T23:23:56+02:00",
    "modifiedBy": "HP76RFD",
    "mustRescan": false,
    "name": "Bulk Rename Utility/64-bit/Bulk Rename Utility.exe",
    "noPermissions": false,
    "numBlocks": 152,
    "permissions": "0777",
    "platform": {
      "Darwin": null,
      "FreeBSD": null,
      "Linux": null,
      "NetBSD": null,
      "Unix": null,
      "Windows": null
    },
    "previousBlocksHash": "bzaUl2PUYZE5PNDR4A+I1NwyutUH0l+NUAhh3LlC8bM=",
    "sequence": 254563,
    "size": 19830208,
    "type": "FILE_INFO_TYPE_FILE",
    "version": [
      "AOU2PT3:1709809853",
      "HP76RFD:1769975415"
    ]
  }
}

On device B:

syncthing debug database-file applications-windows 'Bulk Rename Utility/64-bit/Bulk Rename Utility.exe'                  │
│DEVICE   TYPE  NAME                                                SEQUENCE  DELETED  MODIFIED              SIZE      FLAGS    VERSION                    │
│            BLOCKLIST                                                                                                                                     │
│-local-  FILE  Bulk Rename Utility/64-bit/Bulk Rename Utility.exe  859412    ---      2022-07-16T21:23:56Z  19830208  --G----  AOU2PT3:1709809853,HP76RFD:│
│1769975415  bzaUl2PU                                                                                                                                      │
│HP76RFD  FILE  Bulk Rename Utility/64-bit/Bulk Rename Utility.exe  818639    ---      2022-07-16T21:23:56Z  19830208  -------  AOU2PT3:1709809853,HP76RFD:│
│1769975415  bzaUl2PU                                                                                                                                      │
│33HQVUG  FILE  Bulk Rename Utility/64-bit/Bulk Rename Utility.exe  930917    ---      2022-07-16T21:23:56Z  19830208  -------  AOU2PT3:1709809853,HP76RFD:│
│1769975415  bzaUl2PU                                                                                                                                      │
│AOU2PT3  FILE  Bulk Rename Utility/64-bit/Bulk Rename Utility.exe  899703    ---      2022-07-16T21:23:56Z  19830208  -------  AOU2PT3:1709809853,HP76RFD:│
│1769975415  bzaUl2PU                                                                                                                                      │
│IYT3FUJ  FILE  Bulk Rename Utility/64-bit/Bulk Rename Utility.exe  546423    ---      2022-07-16T21:23:56Z  19830208  -------  AOU2PT3:1709809853,HP76RFD:│
│1707240762  bzaUl2PU                                                                                                                                      │
│ZMXAITJ  FILE  Bulk Rename Utility/64-bit/Bulk Rename Utility.exe  672280    ---      2022-07-16T21:23:56Z  19830208  -------  AOU2PT3:1709809853,HP76RFD:│
│1707240762  bzaUl2PU
$ syncthing cli debug file applications-windows 'Bulk Rename Utility/64-bit/Bulk Rename Utility.exe'
{
  "availability": [
    {
      "fromTemporary": false,
      "id": "HP76RFD-MDK3JJ4-EAK7YLW-2QOJW44-EY4JVX7-6H2GPPO-3SY3SAL-QP263QK"
    }
  ],
  "global": {
    "blocksHash": "bzaUl2PUYZE5PNDR4A+I1NwyutUH0l+NUAhh3LlC8bM=",
    "deleted": false,
    "ignored": false,
    "inodeChange": "2026-02-01T20:52:31.515607219+01:00",
    "invalid": false,
    "localFlags": 0,
    "modified": "2022-07-16T23:23:56+02:00",
    "modifiedBy": "HP76RFD",
    "mustRescan": false,
    "name": "Bulk Rename Utility/64-bit/Bulk Rename Utility.exe",
    "noPermissions": false,
    "numBlocks": 152,
    "permissions": "0777",
    "platform": {
      "Darwin": null,
      "FreeBSD": null,
      "Linux": null,
      "NetBSD": null,
      "Unix": null,
      "Windows": null
    },
    "previousBlocksHash": "bzaUl2PUYZE5PNDR4A+I1NwyutUH0l+NUAhh3LlC8bM=",
    "sequence": 859412,
    "size": 19830208,
    "type": "FILE_INFO_TYPE_FILE",
    "version": [
      "AOU2PT3:1709809853",
      "HP76RFD:1769975415"
    ]
  },
  "local": {
    "blocksHash": "bzaUl2PUYZE5PNDR4A+I1NwyutUH0l+NUAhh3LlC8bM=",
    "deleted": false,
    "ignored": false,
    "inodeChange": "2026-02-01T20:52:31.515607219+01:00",
    "invalid": false,
    "localFlags": 0,
    "modified": "2022-07-16T23:23:56+02:00",
    "modifiedBy": "HP76RFD",
    "mustRescan": false,
    "name": "Bulk Rename Utility/64-bit/Bulk Rename Utility.exe",
    "noPermissions": false,
    "numBlocks": 152,
    "permissions": "0777",
    "platform": {
      "Darwin": null,
      "FreeBSD": null,
      "Linux": null,
      "NetBSD": null,
      "Unix": null,
      "Windows": null
    },
    "previousBlocksHash": "bzaUl2PUYZE5PNDR4A+I1NwyutUH0l+NUAhh3LlC8bM=",
    "sequence": 859412,
    "size": 19830208,
    "type": "FILE_INFO_TYPE_FILE",
    "version": [
      "AOU2PT3:1709809853",
      "HP76RFD:1769975415"
    ]
  }
}

Of course this is after I changed permissions back and forth so maybe that’s not useful anymore. I’m also not to 100 % sure whether this is one of the affected files as not all files in this folder were affected and I might misremember it.