Skip to content

WebDAV shows 401 error after browsing several folders (temporary) #414

@Guru1-228

Description

@Guru1-228

I use the latest official kodbox docker image.

docker-compose.yml
services:
  db:
    image: mariadb:lts
    container_name: kodbox-db
    command: --transaction-isolation=READ-COMMITTED
    restart: always
#    volumes:
#      - "./db:/var/lib/mysql"       #./db是数据库持久化目录,可以修改
      # - "./etc/mysql/conf.d:/etc/mysql/conf.d"       #增加自定义mysql配置
    environment:
      - MYSQL_ROOT_PASSWORD=123
      - MARIADB_AUTO_UPGRADE=1
      - MARIADB_DISABLE_UPGRADE_BACKUP=1
    env_file:
      - db.env
    networks:
      - kodbox_net

  app:
    image: kodcloud/kodbox
    container_name: kodbox-app
    restart: always
    ports:
      - 800:80                       #左边80是使用端口,可以修改
#    volumes:
#      - "./site:/var/www/html"      #./site是站点目录位置,可以修改
#      - "/mnt/data:/mnt/data"
#      - "./nginx.conf:/etc/nginx/nginx.conf"
    environment:
#      - PUID=33
#      - GUID=33
      - MYSQL_HOST=db
      - REDIS_HOST=redis
    env_file:
      - db.env
    depends_on:
      - db
      - redis
    networks:
      - kodbox_net
  redis:
    image: redis:alpine
    container_name: kodbox-redis
    restart: always
    networks:
      - kodbox_net

networks:
    kodbox_net:
        name: kodbox_net
        external: false

For clean test:

  • No volumes used
  • All anonymous volumes deleted before start
  • Connect directly (no proxy, no HTTPS)
  • No changes made inside the container

What happens:
When I connect to WebDAV using

  • KDE Dolphin
  • cadaver

At first → all files and folders are visible.
After opening 3–5 folders → error 401 Unauthorized.
After waiting ~1–2 minutes → WebDAV starts working again for some time.
Then the same problem repeats.

Examples:

Here is curl when it works (successful PROPFIND):
22:40:56.585191 [0-x] * [READ] client_reset, clear readers
22:40:56.585292 [0-0] * [SETUP] added
22:40:56.585347 [0-0] *   Trying 192.168.0.24:800...
22:40:56.585430 [0-0] * [SETUP] Curl_conn_connect(block=0) -> 0, done=0
22:40:56.585697 [0-0] * [SETUP] Curl_conn_connect(block=0) -> 0, done=1
22:40:56.585772 [0-0] * Established connection to 192.168.0.24 (192.168.0.24 port 800) from 192.168.0.28 port 58398
22:40:56.585896 [0-0] * [SETUP] query ALPN
22:40:56.585942 [0-0] * using HTTP/1.x
22:40:56.585989 [0-0] * Server auth using Basic with user 'bylkov'
22:40:56.586071 [0-0] => Send header, 159 bytes (0x9f)
0000: PROPFIND /index.php/dav/my/ HTTP/1.1
0026: Host: 192.168.0.24:800
003e: Authorization: Basic Ynlsa292OkJ1bGtvdjY3ODU=
006d: User-Agent: curl/8.18.0
0086: Accept: */*
0093: Depth: 1
009d:
22:40:56.586338 [0-0] * Request completely sent off
22:40:56.624343 [0-0] <= Recv header, 27 bytes (0x1b)
0000: HTTP/1.1 207 Multi-Status
22:40:56.624462 [0-0] * [WRITE] [OUT] wrote 27 header bytes -> 27
22:40:56.624544 [0-0] * [WRITE] [PAUSE] writing 27/27 bytes of type c -> 0
22:40:56.624634 [0-0] * [WRITE] download_write header(type=c, blen=27) -> 0
22:40:56.624725 [0-0] * [WRITE] client_write(type=c, len=27) -> 0
22:40:56.624809 [0-0] <= Recv header, 15 bytes (0xf)
0000: Server: nginx
22:40:56.624900 [0-0] * [WRITE] header_collect pushed(type=1, len=15) -> 0
22:40:56.624990 [0-0] * [WRITE] [OUT] wrote 15 header bytes -> 15
22:40:56.625068 [0-0] * [WRITE] [PAUSE] writing 15/15 bytes of type 4 -> 0
22:40:56.625155 [0-0] * [WRITE] download_write header(type=4, blen=15) -> 0
22:40:56.625249 [0-0] * [WRITE] client_write(type=4, len=15) -> 0
22:40:56.625327 [0-0] <= Recv header, 37 bytes (0x25)
0000: Date: Wed, 11 Mar 2026 13:40:56 GMT
22:40:56.625445 [0-0] * [WRITE] header_collect pushed(type=1, len=37) -> 0
22:40:56.625535 [0-0] * [WRITE] [OUT] wrote 37 header bytes -> 37
22:40:56.625605 [0-0] * [WRITE] [PAUSE] writing 37/37 bytes of type 4 -> 0
22:40:56.625680 [0-0] * [WRITE] download_write header(type=4, blen=37) -> 0
22:40:56.625752 [0-0] * [WRITE] client_write(type=4, len=37) -> 0
22:40:56.625819 [0-0] <= Recv header, 46 bytes (0x2e)
0000: Content-Type: application/xml; charset=utf-8
22:40:56.625927 [0-0] * [WRITE] header_collect pushed(type=1, len=46) -> 0
22:40:56.626000 [0-0] * [WRITE] [OUT] wrote 46 header bytes -> 46
22:40:56.626063 [0-0] * [WRITE] [PAUSE] writing 46/46 bytes of type 4 -> 0
22:40:56.626136 [0-0] * [WRITE] download_write header(type=4, blen=46) -> 0
22:40:56.626207 [0-0] * [WRITE] client_write(type=4, len=46) -> 0
22:40:56.626272 [0-0] * [WRITE] looking for transfer decoder: chunked
22:40:56.626342 [0-0] * [WRITE] added transfer decoder chunked -> 0
22:40:56.626406 [0-0] <= Recv header, 28 bytes (0x1c)
0000: Transfer-Encoding: chunked
22:40:56.626496 [0-0] * [WRITE] header_collect pushed(type=1, len=28) -> 0
22:40:56.626566 [0-0] * [WRITE] [OUT] wrote 28 header bytes -> 28
22:40:56.626631 [0-0] * [WRITE] [PAUSE] writing 28/28 bytes of type 4 -> 0
22:40:56.626707 [0-0] * [WRITE] download_write header(type=4, blen=28) -> 0
22:40:56.626787 [0-0] * [WRITE] client_write(type=4, len=28) -> 0
22:40:56.626851 [0-0] <= Recv header, 24 bytes (0x18)
0000: Connection: keep-alive
22:40:56.626937 [0-0] * [WRITE] header_collect pushed(type=1, len=24) -> 0
22:40:56.627011 [0-0] * [WRITE] [OUT] wrote 24 header bytes -> 24
22:40:56.627076 [0-0] * [WRITE] [PAUSE] writing 24/24 bytes of type 4 -> 0
22:40:56.627151 [0-0] * [WRITE] download_write header(type=4, blen=24) -> 0
22:40:56.627225 [0-0] * [WRITE] client_write(type=4, len=24) -> 0
22:40:56.627289 [0-0] <= Recv header, 133 bytes (0x85)
0000: Set-Cookie: KOD_SESSION_ID=ad7d8e9cc289507d446d38d2317f6961; exp
0040: ires=Wed, 11 Mar 2026 17:40:56 GMT; Max-Age=14400; path=/; HttpO
0080: nly
22:40:56.627499 [0-0] * [WRITE] header_collect pushed(type=1, len=133) -> 0
22:40:56.627576 [0-0] * [WRITE] [OUT] wrote 133 header bytes -> 133
22:40:56.627651 [0-0] * [WRITE] [PAUSE] writing 133/133 bytes of type 4 -> 0
22:40:56.627735 [0-0] * [WRITE] download_write header(type=4, blen=133) -> 0
22:40:56.627813 [0-0] * [WRITE] client_write(type=4, len=133) -> 0
22:40:56.627886 [0-0] <= Recv header, 104 bytes (0x68)
0000: Set-Cookie: CSRF_TOKEN=TEZ6hQstd2X33bKA; expires=Wed, 18 Mar 202
0040: 6 13:40:56 GMT; Max-Age=604800; path=/
22:40:56.628072 [0-0] * [WRITE] header_collect pushed(type=1, len=104) -> 0
22:40:56.628150 [0-0] * [WRITE] [OUT] wrote 104 header bytes -> 104
22:40:56.628226 [0-0] * [WRITE] [PAUSE] writing 104/104 bytes of type 4 -> 0
22:40:56.628304 [0-0] * [WRITE] download_write header(type=4, blen=104) -> 0
22:40:56.628385 [0-0] * [WRITE] client_write(type=4, len=104) -> 0
22:40:56.628456 [0-0] <= Recv header, 32 bytes (0x20)
0000: Access-Control-Allow-Origin: *
22:40:56.628554 [0-0] * [WRITE] header_collect pushed(type=1, len=32) -> 0
22:40:56.628631 [0-0] * [WRITE] [OUT] wrote 32 header bytes -> 32
22:40:56.628701 [0-0] * [WRITE] [PAUSE] writing 32/32 bytes of type 4 -> 0
22:40:56.628778 [0-0] * [WRITE] download_write header(type=4, blen=32) -> 0
22:40:56.628850 [0-0] * [WRITE] client_write(type=4, len=32) -> 0
22:40:56.628914 [0-0] <= Recv header, 123 bytes (0x7b)
0000: Access-Control-Allow-Methods: GET, POST, OPTIONS, DELETE, HEAD,
0040: MOVE, COPY, PUT, MKCOL, PROPFIND, PROPPATCH, LOCK, UNLOCK
22:40:56.629103 [0-0] * [WRITE] header_collect pushed(type=1, len=123) -> 0
22:40:56.629177 [0-0] * [WRITE] [OUT] wrote 123 header bytes -> 123
22:40:56.629246 [0-0] * [WRITE] [PAUSE] writing 123/123 bytes of type 4 -> 0
22:40:56.629321 [0-0] * [WRITE] download_write header(type=4, blen=123) -> 0
22:40:56.629398 [0-0] * [WRITE] client_write(type=4, len=123) -> 0
22:40:56.629460 [0-0] <= Recv header, 124 bytes (0x7c)
0000: Access-Control-Allow-Headers: ETag, Content-Type, Content-Length
0040: , Accept-Encoding, X-Requested-with, Origin, Authorization
22:40:56.629648 [0-0] * [WRITE] header_collect pushed(type=1, len=124) -> 0
22:40:56.629720 [0-0] * [WRITE] [OUT] wrote 124 header bytes -> 124
22:40:56.629788 [0-0] * [WRITE] [PAUSE] writing 124/124 bytes of type 4 -> 0
22:40:56.629861 [0-0] * [WRITE] download_write header(type=4, blen=124) -> 0
22:40:56.629941 [0-0] * [WRITE] client_write(type=4, len=124) -> 0
22:40:56.630007 [0-0] <= Recv header, 40 bytes (0x28)
0000: Access-Control-Allow-Credentials: true
22:40:56.630106 [0-0] * [WRITE] header_collect pushed(type=1, len=40) -> 0
22:40:56.630178 [0-0] * [WRITE] [OUT] wrote 40 header bytes -> 40
22:40:56.630242 [0-0] * [WRITE] [PAUSE] writing 40/40 bytes of type 4 -> 0
22:40:56.630314 [0-0] * [WRITE] download_write header(type=4, blen=40) -> 0
22:40:56.630387 [0-0] * [WRITE] client_write(type=4, len=40) -> 0
22:40:56.630452 [0-0] <= Recv header, 30 bytes (0x1e)
0000: Access-Control-Max-Age: 3600
22:40:56.630539 [0-0] * [WRITE] header_collect pushed(type=1, len=30) -> 0
22:40:56.630608 [0-0] * [WRITE] [OUT] wrote 30 header bytes -> 30
22:40:56.630669 [0-0] * [WRITE] [PAUSE] writing 30/30 bytes of type 4 -> 0
22:40:56.630739 [0-0] * [WRITE] download_write header(type=4, blen=30) -> 0
22:40:56.630813 [0-0] * [WRITE] client_write(type=4, len=30) -> 0
22:40:56.630878 [0-0] <= Recv header, 88 bytes (0x58)
0000: Set-Cookie: kodUserID=1; expires=Wed, 18 Mar 2026 13:40:56 GMT;
0040: Max-Age=604800; path=/
22:40:56.631023 [0-0] * [WRITE] header_collect pushed(type=1, len=88) -> 0
22:40:56.631094 [0-0] * [WRITE] [OUT] wrote 88 header bytes -> 88
22:40:56.631155 [0-0] * [WRITE] [PAUSE] writing 88/88 bytes of type 4 -> 0
22:40:56.631224 [0-0] * [WRITE] download_write header(type=4, blen=88) -> 0
22:40:56.631294 [0-0] * [WRITE] client_write(type=4, len=88) -> 0
22:40:56.631360 [0-0] <= Recv header, 93 bytes (0x5d)
0000: Set-Cookie: kodTokenUpdate=1; expires=Wed, 18 Mar 2026 13:40:56
0040: GMT; Max-Age=604800; path=/
22:40:56.631502 [0-0] * [WRITE] header_collect pushed(type=1, len=93) -> 0
22:40:56.631567 [0-0] * [WRITE] [OUT] wrote 93 header bytes -> 93
22:40:56.631627 [0-0] * [WRITE] [PAUSE] writing 93/93 bytes of type 4 -> 0
22:40:56.631693 [0-0] * [WRITE] download_write header(type=4, blen=93) -> 0
22:40:56.631761 [0-0] * [WRITE] client_write(type=4, len=93) -> 0
22:40:56.631820 [0-0] <= Recv header, 252 bytes (0xfc)
0000: X-extendFileList: eyJwYWdlSW5mbyI6eyJ0b3RhbE51bSI6MTIsInBhZ2VOdW
0040: 0iOjEwMDAwMDAwMCwicGFnZSI6MSwicGFnZVRvdGFsIjoxfSwidGFyZ2V0U3BhY2
0080: UiOnsidGFyZ2V0VHlwZSI6InVzZXIiLCJ0YXJnZXRJRCI6MSwidGFyZ2V0TmFtZS
00c0: I6ImJ5bGtvdiIsInNpemVNYXgiOjAsInNpemVVc2UiOjEwNTE5NDg5OX19
22:40:56.632116 [0-0] * [WRITE] header_collect pushed(type=1, len=252) -> 0
22:40:56.632183 [0-0] * [WRITE] [OUT] wrote 252 header bytes -> 252
22:40:56.632241 [0-0] * [WRITE] [PAUSE] writing 252/252 bytes of type 4 -> 0
22:40:56.632307 [0-0] * [WRITE] download_write header(type=4, blen=252) -> 0
22:40:56.632373 [0-0] * [WRITE] client_write(type=4, len=252) -> 0
22:40:56.632432 [0-0] <= Recv header, 18 bytes (0x12)
0000: Pragma: no-cache
22:40:56.632502 [0-0] * [WRITE] header_collect pushed(type=1, len=18) -> 0
22:40:56.632572 [0-0] * [WRITE] [OUT] wrote 18 header bytes -> 18
22:40:56.632631 [0-0] * [WRITE] [PAUSE] writing 18/18 bytes of type 4 -> 0
22:40:56.632694 [0-0] * [WRITE] download_write header(type=4, blen=18) -> 0
22:40:56.632762 [0-0] * [WRITE] client_write(type=4, len=18) -> 0
22:40:56.632823 [0-0] <= Recv header, 25 bytes (0x19)
0000: Cache-Control: no-cache
22:40:56.632899 [0-0] * [WRITE] header_collect pushed(type=1, len=25) -> 0
22:40:56.632966 [0-0] * [WRITE] [OUT] wrote 25 header bytes -> 25
22:40:56.633023 [0-0] * [WRITE] [PAUSE] writing 25/25 bytes of type 4 -> 0
22:40:56.633088 [0-0] * [WRITE] download_write header(type=4, blen=25) -> 0
22:40:56.633149 [0-0] * [WRITE] client_write(type=4, len=25) -> 0
22:40:56.633208 [0-0] <= Recv header, 18 bytes (0x12)
0000: X-DAV-BY: kodbox
22:40:56.633278 [0-0] * [WRITE] header_collect pushed(type=1, len=18) -> 0
22:40:56.633343 [0-0] * [WRITE] [OUT] wrote 18 header bytes -> 18
22:40:56.633400 [0-0] * [WRITE] [PAUSE] writing 18/18 bytes of type 4 -> 0
22:40:56.633468 [0-0] * [WRITE] download_write header(type=4, blen=18) -> 0
22:40:56.633534 [0-0] * [WRITE] client_write(type=4, len=18) -> 0
22:40:56.633593 [0-0] <= Recv header, 30 bytes (0x1e)
0000: Referrer-Policy: no-referrer
22:40:56.633668 [0-0] * [WRITE] header_collect pushed(type=1, len=30) -> 0
22:40:56.633733 [0-0] * [WRITE] [OUT] wrote 30 header bytes -> 30
22:40:56.633794 [0-0] * [WRITE] [PAUSE] writing 30/30 bytes of type 4 -> 0
22:40:56.633859 [0-0] * [WRITE] download_write header(type=4, blen=30) -> 0
22:40:56.633927 [0-0] * [WRITE] client_write(type=4, len=30) -> 0
22:40:56.633985 [0-0] <= Recv header, 33 bytes (0x21)
0000: X-Content-Type-Options: nosniff
22:40:56.634068 [0-0] * [WRITE] header_collect pushed(type=1, len=33) -> 0
22:40:56.634134 [0-0] * [WRITE] [OUT] wrote 33 header bytes -> 33
22:40:56.634192 [0-0] * [WRITE] [PAUSE] writing 33/33 bytes of type 4 -> 0
22:40:56.634259 [0-0] * [WRITE] download_write header(type=4, blen=33) -> 0
22:40:56.634328 [0-0] * [WRITE] client_write(type=4, len=33) -> 0
22:40:56.634390 [0-0] <= Recv header, 28 bytes (0x1c)
0000: X-Download-Options: noopen
22:40:56.634473 [0-0] * [WRITE] header_collect pushed(type=1, len=28) -> 0
22:40:56.634538 [0-0] * [WRITE] [OUT] wrote 28 header bytes -> 28
22:40:56.634596 [0-0] * [WRITE] [PAUSE] writing 28/28 bytes of type 4 -> 0
22:40:56.634658 [0-0] * [WRITE] download_write header(type=4, blen=28) -> 0
22:40:56.634726 [0-0] * [WRITE] client_write(type=4, len=28) -> 0
22:40:56.634786 [0-0] <= Recv header, 29 bytes (0x1d)
0000: X-Frame-Options: SAMEORIGIN
22:40:56.634867 [0-0] * [WRITE] header_collect pushed(type=1, len=29) -> 0
22:40:56.634934 [0-0] * [WRITE] [OUT] wrote 29 header bytes -> 29
22:40:56.634989 [0-0] * [WRITE] [PAUSE] writing 29/29 bytes of type 4 -> 0
22:40:56.635061 [0-0] * [WRITE] download_write header(type=4, blen=29) -> 0
22:40:56.635133 [0-0] * [WRITE] client_write(type=4, len=29) -> 0
22:40:56.635196 [0-0] <= Recv header, 41 bytes (0x29)
0000: X-Permitted-Cross-Domain-Policies: none
22:40:56.635293 [0-0] * [WRITE] header_collect pushed(type=1, len=41) -> 0
22:40:56.635361 [0-0] * [WRITE] [OUT] wrote 41 header bytes -> 41
22:40:56.635421 [0-0] * [WRITE] [PAUSE] writing 41/41 bytes of type 4 -> 0
22:40:56.635492 [0-0] * [WRITE] download_write header(type=4, blen=41) -> 0
22:40:56.635554 [0-0] * [WRITE] client_write(type=4, len=41) -> 0
22:40:56.635615 [0-0] <= Recv header, 20 bytes (0x14)
0000: X-Robots-Tag: none
22:40:56.635684 [0-0] * [WRITE] header_collect pushed(type=1, len=20) -> 0
22:40:56.635755 [0-0] * [WRITE] [OUT] wrote 20 header bytes -> 20
22:40:56.635818 [0-0] * [WRITE] [PAUSE] writing 20/20 bytes of type 4 -> 0
22:40:56.635878 [0-0] * [WRITE] download_write header(type=4, blen=20) -> 0
22:40:56.635945 [0-0] * [WRITE] client_write(type=4, len=20) -> 0
22:40:56.636008 [0-0] <= Recv header, 33 bytes (0x21)
0000: X-XSS-Protection: 1; mode=block
22:40:56.636093 [0-0] * [WRITE] header_collect pushed(type=1, len=33) -> 0
22:40:56.636158 [0-0] * [WRITE] [OUT] wrote 33 header bytes -> 33
22:40:56.636218 [0-0] * [WRITE] [PAUSE] writing 33/33 bytes of type 4 -> 0
22:40:56.636283 [0-0] * [WRITE] download_write header(type=4, blen=33) -> 0
22:40:56.636350 [0-0] * [WRITE] client_write(type=4, len=33) -> 0
22:40:56.636409 [0-0] <= Recv header, 2 bytes (0x2)
0000:
22:40:56.636459 [0-0] * [WRITE] header_collect pushed(type=1, len=2) -> 0
22:40:56.636527 [0-0] * [WRITE] [OUT] wrote 2 header bytes -> 2
22:40:56.636582 [0-0] * [WRITE] [PAUSE] writing 2/2 bytes of type 4 -> 0
22:40:56.636646 [0-0] * [WRITE] download_write header(type=4, blen=2) -> 0
22:40:56.636710 [0-0] * [WRITE] client_write(type=4, len=2) -> 0
22:40:56.636770 [0-0] * [WRITE] xfer_write_resp(len=1473, eos=0) -> 0
22:40:56.636836 [0-0] <= Recv data, 10755 bytes (0x2a03)
0000: 29f6
0006: <?xml version="1.0" encoding="utf-8"?>.<D:multistatus xmlns:D="D
0046: AV:">....<D:response>....<D:href>/index.php/dav/my/</D:href>....
0086: <D:propstat>.....<D:prop>......<D:getlastmodified>Wed, 11 Mar 20
00c6: 26 13:34:05 GMT</D:getlastmodified>......<D:creationdate>2026-03
0106: -11T13:23:55Z</D:creationdate>......<D:getcontentlength>10519489
0146: 9</D:getcontentlength>......<D:resourcetype><D:collection/></D:r
0186: esourcetype><D:getcontenttype>httpd/unix-directory</D:getcontent
01c6: type><D:extendFileInfo>eyJoYXNGaWxlIjo3LCJoYXNGb2xkZXIiOjUsInBhc
0206: mVudElEIjowLCJpc1RydWVQYXRoIjp0cnVlfQ==</D:extendFileInfo>.....<
0246: /D:prop>.....<D:status>HTTP/1.1 200 OK</D:status>....</D:propsta
0286: t>...</D:response>...<D:response>....<D:href>/index.php/dav/my/D
02c6: ocuments/</D:href>....<D:propstat>.....<D:prop>......<D:getlastm
0306: odified>Wed, 11 Mar 2026 13:23:55 GMT</D:getlastmodified>......<
0346: D:creationdate>2026-03-11T13:23:55Z</D:creationdate>......<D:get
0386: contentlength>0</D:getcontentlength>......<D:resourcetype><D:col
03c6: lection/></D:resourcetype><D:getcontenttype>httpd/unix-directory
0406: </D:getcontenttype><D:extendFileInfo>eyJoYXNGaWxlIjowLCJoYXNGb2x
0446: kZXIiOjAsInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlfQ==</D:extendF
0486: ileInfo>.....</D:prop>.....<D:status>HTTP/1.1 200 OK</D:status>.
04c6: ...</D:propstat>...</D:response>...<D:response>....<D:href>/inde
0506: x.php/dav/my/Music/</D:href>....<D:propstat>.....<D:prop>......<
0546: D:getlastmodified>Wed, 11 Mar 2026 13:23:55 GMT</D:getlastmodifi
0586: ed>......<D:creationdate>2026-03-11T13:23:55Z</D:creationdate>..
05c6: ....<D:getcontentlength>0</D:getcontentlength>......<D:resourcet
0606: ype><D:collection/></D:resourcetype><D:getcontenttype>httpd/unix
0646: -directory</D:getcontenttype><D:extendFileInfo>eyJoYXNGaWxlIjowL
0686: CJoYXNGb2xkZXIiOjAsInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlfQ==<
06c6: /D:extendFileInfo>.....</D:prop>.....<D:status>HTTP/1.1 200 OK</
0706: D:status>....</D:propstat>...</D:response>...<D:response>....<D:
0746: href>/index.php/dav/my/Pictures/</D:href>....<D:propstat>.....<D
0786: :prop>......<D:getlastmodified>Wed, 11 Mar 2026 13:23:55 GMT</D:
07c6: getlastmodified>......<D:creationdate>2026-03-11T13:23:55Z</D:cr
0806: eationdate>......<D:getcontentlength>0</D:getcontentlength>.....
0846: .<D:resourcetype><D:collection/></D:resourcetype><D:getcontentty
0886: pe>httpd/unix-directory</D:getcontenttype><D:extendFileInfo>eyJo
08c6: YXNGaWxlIjowLCJoYXNGb2xkZXIiOjAsInBhcmVudElEIjo1LCJpc1RydWVQYXRo
0906: Ijp0cnVlfQ==</D:extendFileInfo>.....</D:prop>.....<D:status>HTTP
0946: /1.1 200 OK</D:status>....</D:propstat>...</D:response>...<D:res
0986: ponse>....<D:href>/index.php/dav/my/%D0%97%D0%B0%D0%BF%D0%B8%D1%
09c6: 81%D0%B8%20%D1%8D%D0%BA%D1%80%D0%B0%D0%BD%D0%B0/</D:href>....<D:
0a06: propstat>.....<D:prop>......<D:getlastmodified>Wed, 11 Mar 2026
0a46: 13:32:30 GMT</D:getlastmodified>......<D:creationdate>2026-03-11
0a86: T13:32:28Z</D:creationdate>......<D:getcontentlength>36995289</D
0ac6: :getcontentlength>......<D:resourcetype><D:collection/></D:resou
0b06: rcetype><D:getcontenttype>httpd/unix-directory</D:getcontenttype
0b46: ><D:extendFileInfo>eyJoYXNGaWxlIjo3LCJoYXNGb2xkZXIiOjAsInBhcmVud
0b86: ElEIjo1LCJpc1RydWVQYXRoIjp0cnVlfQ==</D:extendFileInfo>.....</D:p
0bc6: rop>.....<D:status>HTTP/1.1 200 OK</D:status>....</D:propstat>..
0c06: .</D:response>...<D:response>....<D:href>/index.php/dav/my/%D1%8
0c46: 0%D0%B0%D0%B1%D0%BE%D1%87%D0%B8%D0%B9%20%D1%81%D1%82%D0%BE%D0%BB
0c86: /</D:href>....<D:propstat>.....<D:prop>......<D:getlastmodified>
0cc6: Wed, 11 Mar 2026 13:32:20 GMT</D:getlastmodified>......<D:creati
0d06: ondate>2026-03-11T13:23:55Z</D:creationdate>......<D:getcontentl
0d46: ength>36995762</D:getcontentlength>......<D:resourcetype><D:coll
0d86: ection/></D:resourcetype><D:getcontenttype>httpd/unix-directory<
0dc6: /D:getcontenttype><D:extendFileInfo>eyJoYXNGaWxlIjozLCJoYXNGb2xk
0e06: ZXIiOjEsInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlfQ==</D:extendFi
0e46: leInfo>.....</D:prop>.....<D:status>HTTP/1.1 200 OK</D:status>..
0e86: ..</D:propstat>...</D:response>...<D:response>....<D:href>/index
0ec6: .php/dav/my/Bin_1x1x9_TmDvd.stl</D:href>....<D:propstat>.....<D:
0f06: prop>......<D:getlastmodified>Mon, 09 Mar 2026 10:57:36 GMT</D:g
0f46: etlastmodified>......<D:creationdate>2026-03-11T13:33:57Z</D:cre
0f86: ationdate>......<D:getcontentlength>758663</D:getcontentlength>.
0fc6: .....<D:resourcetype/><D:getcontenttype>application/vnd.ms-pkist
1006: l</D:getcontenttype><D:extendFileInfo>eyJmaWxlSW5mbyI6eyJmaWxlSU
1046: QiOiIyMCIsImhhc2hTaW1wbGUiOiIwNTk1MmZlZTMxOTI4YTk4MmY3YmVhMDZhZj
1086: RlOGE4MTc1ODY2MyIsImhhc2hNZDUiOiJmOTRmOTM5NzE2NTZiZWE3M2E3OTU2Yz
10c6: MyN2M0MWM5ZCIsImxpbmtDb3VudCI6IjEifSwicGFyZW50SUQiOjUsImlzVHJ1ZV
1106: BhdGgiOnRydWUsImZpbGVPdXRMaW5rIjoiaHR0cDpcL1wvMTkyLjE2OC4wLjI0Oj
1146: gwMFwvP2V4cGxvcmVyXC9pbmRleFwvZmlsZU91dCZwYXRoPSU3QnNvdXJjZSUzQT
1186: QzJTdEJTJGJmFjdGlvblRva2VuPTY2OGFnTmxiRmc3emRDY3c2bXkxRlBLUlpQSU
11c6: sxWjhqV0lwLWVFTjQmYWN0aW9uS2V5PVpYaHdiRzl5WlhJdmFXNWtaWGd2Wm1sc1
1206: pXOTFkRHR3WVhSbyJ9</D:extendFileInfo>.....</D:prop>.....<D:statu
1246: s>HTTP/1.1 200 OK</D:status>....</D:propstat>...</D:response>...
1286: <D:response>....<D:href>/index.php/dav/my/Bin_2x2x9_TmDvd.stl</D
12c6: :href>....<D:propstat>.....<D:prop>......<D:getlastmodified>Mon,
1306:  09 Mar 2026 10:58:32 GMT</D:getlastmodified>......<D:creationda
1346: te>2026-03-11T13:34:03Z</D:creationdate>......<D:getcontentlengt
1386: h>1579597</D:getcontentlength>......<D:resourcetype/><D:getconte
13c6: nttype>application/vnd.ms-pkistl</D:getcontenttype><D:extendFile
1406: Info>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyMSIsImhhc2hTaW1wbGUiOiJhZjV
1446: jMGE5NmRjZTUwMDliZTIzODgyZWMxZTUyMTY5ODE1Nzk1OTciLCJoYXNoTWQ1Ijo
1486: iY2E0NjZjNDdlY2ZkMDgwMzhkZTAxZWQyNDI1NmM4NTAiLCJsaW5rQ291bnQiOiI
14c6: xIn0sInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlLCJmaWxlT3V0TGluayI
1506: 6Imh0dHA6XC9cLzE5Mi4xNjguMC4yNDo4MDBcLz9leHBsb3JlclwvaW5kZXhcL2Z
1546: pbGVPdXQmcGF0aD0lN0Jzb3VyY2UlM0E0NCU3RCUyRiZhY3Rpb25Ub2tlbj02Njh
1586: hUEtVTkJyblhWMUo0ak5TUE5rNmM4aTlVVVRwNHpiRE8yaUVuJmFjdGlvbktleT1
15c6: aWGh3Ykc5eVpYSXZhVzVrWlhndlptbHNaVzkxZER0d1lYUm8ifQ==</D:extendF
1606: ileInfo>.....</D:prop>.....<D:status>HTTP/1.1 200 OK</D:status>.
1646: ...</D:propstat>...</D:response>...<D:response>....<D:href>/inde
1686: x.php/dav/my/Bin_2x3x6_TmDvd.stl</D:href>....<D:propstat>.....<D
16c6: :prop>......<D:getlastmodified>Sun, 15 Feb 2026 09:28:33 GMT</D:
1706: getlastmodified>......<D:creationdate>2026-03-11T13:34:03Z</D:cr
1746: eationdate>......<D:getcontentlength>2126926</D:getcontentlength
1786: >......<D:resourcetype/><D:getcontenttype>application/vnd.ms-pki
17c6: stl</D:getcontenttype><D:extendFileInfo>eyJmaWxlSW5mbyI6eyJmaWxl
1806: SUQiOiIyMiIsImhhc2hTaW1wbGUiOiJkYTQyOTUzMWFhNzMwOGY3NjExN2M5ZTcz
1846: N2VhYzA4ODIxMjY5MjYiLCJoYXNoTWQ1IjoiOWUxNTE3YzQwZjI3NmRlNzEyYWMw
1886: OTdhNGQ3ZmY4MjkiLCJsaW5rQ291bnQiOiIxIn0sInBhcmVudElEIjo1LCJpc1Ry
18c6: dWVQYXRoIjp0cnVlLCJmaWxlT3V0TGluayI6Imh0dHA6XC9cLzE5Mi4xNjguMC4y
1906: NDo4MDBcLz9leHBsb3JlclwvaW5kZXhcL2ZpbGVPdXQmcGF0aD0lN0Jzb3VyY2Ul
1946: M0E0NSU3RCUyRiZhY3Rpb25Ub2tlbj02NjhhbnpCVGJxblVOeEJaZXpqZ2laZUQt
1986: UE1feWVENWlQX3J1ZE52JmFjdGlvbktleT1aWGh3Ykc5eVpYSXZhVzVrWlhndlpt
19c6: bHNaVzkxZER0d1lYUm8ifQ==</D:extendFileInfo>.....</D:prop>.....<D
1a06: :status>HTTP/1.1 200 OK</D:status>....</D:propstat>...</D:respon
1a46: se>...<D:response>....<D:href>/index.php/dav/my/Bin_2x3x9_TmDvd.
1a86: stl</D:href>....<D:propstat>.....<D:prop>......<D:getlastmodifie
1ac6: d>Sun, 15 Feb 2026 09:25:47 GMT</D:getlastmodified>......<D:crea
1b06: tiondate>2026-03-11T13:34:03Z</D:creationdate>......<D:getconten
1b46: tlength>2116837</D:getcontentlength>......<D:resourcetype/><D:ge
1b86: tcontenttype>application/vnd.ms-pkistl</D:getcontenttype><D:exte
1bc6: ndFileInfo>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyMyIsImhhc2hTaW1wbGUiO
1c06: iIxMDYzZDc1ODlmM2ExNGJkNzQ1Y2I1NTU0MzFlNWM4MzIxMTY4MzciLCJoYXNoT
1c46: WQ1IjoiNTNiNDQ4MGQ2NzU1YmY2ZGQxMzRkZWFmMGFkMmYxMTYiLCJsaW5rQ291b
1c86: nQiOiIxIn0sInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlLCJmaWxlT3V0T
1cc6: GluayI6Imh0dHA6XC9cLzE5Mi4xNjguMC4yNDo4MDBcLz9leHBsb3JlclwvaW5kZ
1d06: XhcL2ZpbGVPdXQmcGF0aD0lN0Jzb3VyY2UlM0E0NiU3RCUyRiZhY3Rpb25Ub2tlb
1d46: j02NjhhMWk2amdDNko4cUJTTkQ3VHhmWWxGWHNYMTRNWklJeVRsV1hkJmFjdGlvb
1d86: ktleT1aWGh3Ykc5eVpYSXZhVzVrWlhndlptbHNaVzkxZER0d1lYUm8ifQ==</D:e
1dc6: xtendFileInfo>.....</D:prop>.....<D:status>HTTP/1.1 200 OK</D:st
1e06: atus>....</D:propstat>...</D:response>...<D:response>....<D:href
1e46: >/index.php/dav/my/Bin_3x3x6_TmDvd.stl</D:href>....<D:propstat>.
1e86: ....<D:prop>......<D:getlastmodified>Sat, 31 Jan 2026 04:38:22 G
1ec6: MT</D:getlastmodified>......<D:creationdate>2026-03-11T13:34:04Z
1f06: </D:creationdate>......<D:getcontentlength>2958957</D:getcontent
1f46: length>......<D:resourcetype/><D:getcontenttype>application/vnd.
1f86: ms-pkistl</D:getcontenttype><D:extendFileInfo>eyJmaWxlSW5mbyI6ey
1fc6: JmaWxlSUQiOiIyNCIsImhhc2hTaW1wbGUiOiI4ZjgzM2RiMWZmNzA1Zjg5OTNkN2
2006: Q1Nzk5OGI5NjY5ZTI5NTg5NTciLCJoYXNoTWQ1IjoiMjhiMDJjYTBjYTYzOWMyOD
2046: k5NzlhMzI2NjU5M2I1MTYiLCJsaW5rQ291bnQiOiIxIn0sInBhcmVudElEIjo1LC
2086: Jpc1RydWVQYXRoIjp0cnVlLCJmaWxlT3V0TGluayI6Imh0dHA6XC9cLzE5Mi4xNj
20c6: guMC4yNDo4MDBcLz9leHBsb3JlclwvaW5kZXhcL2ZpbGVPdXQmcGF0aD0lN0Jzb3
2106: VyY2UlM0E0NyU3RCUyRiZhY3Rpb25Ub2tlbj02NjhhWDY2R0ZVbF9vamxpcW1ud2
2146: NsS2lIeXFsdS1YUjRaSnQ4UWtBJmFjdGlvbktleT1aWGh3Ykc5eVpYSXZhVzVrWl
2186: hndlptbHNaVzkxZER0d1lYUm8ifQ==</D:extendFileInfo>.....</D:prop>.
21c6: ....<D:status>HTTP/1.1 200 OK</D:status>....</D:propstat>...</D:
2206: response>...<D:response>....<D:href>/index.php/dav/my/Body.stl</
2246: D:href>....<D:propstat>.....<D:prop>......<D:getlastmodified>Sun
2286: , 04 Jan 2026 11:19:21 GMT</D:getlastmodified>......<D:creationd
22c6: ate>2026-03-11T13:34:05Z</D:creationdate>......<D:getcontentleng
2306: th>20393784</D:getcontentlength>......<D:resourcetype/><D:getcon
2346: tenttype>application/vnd.ms-pkistl</D:getcontenttype><D:extendFi
2386: leInfo>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyNiIsImhhc2hTaW1wbGUiOiJmM
23c6: DhhYjM4YzdhYTNhZDRkMzQ0ZDYwNmY1NGY5MDJlMTIwMzkzNzg0IiwiaGFzaE1kN
2406: SI6ImJjMmI0MmFjZDFmZjM1NTQxODYwY2M2YTM4MTA1NjYzIiwibGlua0NvdW50I
2446: joiMSJ9LCJwYXJlbnRJRCI6NSwiaXNUcnVlUGF0aCI6dHJ1ZSwiZmlsZU91dExpb
2486: msiOiJodHRwOlwvXC8xOTIuMTY4LjAuMjQ6ODAwXC8/ZXhwbG9yZXJcL2luZGV4X
24c6: C9maWxlT3V0JnBhdGg9JTdCc291cmNlJTNBNDklN0QlMkYmYWN0aW9uVG9rZW49N
2506: jY4YXhTM2hvVVFpT1dJVldXU21JeUpvMnkyTVgzOWE0cW5ZMjdxXyZhY3Rpb25LZ
2546: Xk9Wlhod2JHOXlaWEl2YVc1a1pYZ3ZabWxzWlc5MWREdHdZWFJvIn0=</D:exten
2586: dFileInfo>.....</D:prop>.....<D:status>HTTP/1.1 200 OK</D:status
25c6: >....</D:propstat>...</D:response>...<D:response>....<D:href>/in
2606: dex.php/dav/my/cable_bin_2x2x14-%D0%A2%D0%B5%D0%BB%D0%BEEcoBin.s
2646: tl</D:href>....<D:propstat>.....<D:prop>......<D:getlastmodified
2686: >Sun, 01 Mar 2026 10:35:32 GMT</D:getlastmodified>......<D:creat
26c6: iondate>2026-03-11T13:34:05Z</D:creationdate>......<D:getcontent
2706: length>1269084</D:getcontentlength>......<D:resourcetype/><D:get
2746: contenttype>application/vnd.ms-pkistl</D:getcontenttype><D:exten
2786: dFileInfo>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyNSIsImhhc2hTaW1wbGUiOi
27c6: IzZDQwZjgyZWFiZmY5Njc1NmUwMmFjMjAxNmRhODg0YTEyNjkwODQiLCJoYXNoTW
2806: Q1IjoiZTFjNzY1MTg2NTE0MmJlNGMxYmViOWFjOTdkYjgyMDUiLCJsaW5rQ291bn
2846: QiOiIxIn0sInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlLCJmaWxlT3V0TG
2886: luayI6Imh0dHA6XC9cLzE5Mi4xNjguMC4yNDo4MDBcLz9leHBsb3JlclwvaW5kZX
28c6: hcL2ZpbGVPdXQmcGF0aD0lN0Jzb3VyY2UlM0E0OCU3RCUyRiZhY3Rpb25Ub2tlbj
2906: 02Njhha3VQUk04TEFkSUxybEFMWFJQbmdrMHphZTBiLWVCazQzcEtLJmFjdGlvbk
2946: tleT1aWGh3Ykc5eVpYSXZhVzVrWlhndlptbHNaVzkxZER0d1lYUm8ifQ==</D:ex
2986: tendFileInfo>.....</D:prop>.....<D:status>HTTP/1.1 200 OK</D:sta
29c6: tus>....</D:propstat>...</D:response>.</D:multistatus>
29fe: 0
2a01:
22:40:56.647755 [0-0] * [WRITE] http_chunked, chunk start of 10742 bytes
<?xml version="1.0" encoding="utf-8"?>
<D:multistatus xmlns:D="DAV:">

                <D:response>
                        <D:href>/index.php/dav/my/</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Wed, 11 Mar 2026 13:34:05 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:23:55Z</D:creationdate>
                                        <D:getcontentlength>105194899</D:getcontentlength>
                                        <D:resourcetype><D:collection/></D:resourcetype><D:getcontenttype>httpd/unix-directory</D:getcontenttype><D:extendFileInfo>eyJoYXNGaWxlIjo3LCJoYXNGb2xkZXIiOjUsInBhcmVudElEIjowLCJpc1RydWVQYXRoIjp0cnVlfQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/Documents/</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Wed, 11 Mar 2026 13:23:55 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:23:55Z</D:creationdate>
                                        <D:getcontentlength>0</D:getcontentlength>
                                        <D:resourcetype><D:collection/></D:resourcetype><D:getcontenttype>httpd/unix-directory</D:getcontenttype><D:extendFileInfo>eyJoYXNGaWxlIjowLCJoYXNGb2xkZXIiOjAsInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlfQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/Music/</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Wed, 11 Mar 2026 13:23:55 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:23:55Z</D:creationdate>
                                        <D:getcontentlength>0</D:getcontentlength>
                                        <D:resourcetype><D:collection/></D:resourcetype><D:getcontenttype>httpd/unix-directory</D:getcontenttype><D:extendFileInfo>eyJoYXNGaWxlIjowLCJoYXNGb2xkZXIiOjAsInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlfQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/Pictures/</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Wed, 11 Mar 2026 13:23:55 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:23:55Z</D:creationdate>
                                        <D:getcontentlength>0</D:getcontentlength>
                                        <D:resourcetype><D:collection/></D:resourcetype><D:getcontenttype>httpd/unix-directory</D:getcontenttype><D:extendFileInfo>eyJoYXNGaWxlIjowLCJoYXNGb2xkZXIiOjAsInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlfQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/%D0%97%D0%B0%D0%BF%D0%B8%D1%81%D0%B8%20%D1%8D%D0%BA%D1%80%D0%B0%D0%BD%D0%B0/</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Wed, 11 Mar 2026 13:32:30 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:32:28Z</D:creationdate>
                                        <D:getcontentlength>36995289</D:getcontentlength>
                                        <D:resourcetype><D:collection/></D:resourcetype><D:getcontenttype>httpd/unix-directory</D:getcontenttype><D:extendFileInfo>eyJoYXNGaWxlIjo3LCJoYXNGb2xkZXIiOjAsInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlfQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/%D1%80%D0%B0%D0%B1%D0%BE%D1%87%D0%B8%D0%B9%20%D1%81%D1%82%D0%BE%D0%BB/</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Wed, 11 Mar 2026 13:32:20 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:23:55Z</D:creationdate>
                                        <D:getcontentlength>36995762</D:getcontentlength>
                                        <D:resourcetype><D:collection/></D:resourcetype><D:getcontenttype>httpd/unix-directory</D:getcontenttype><D:extendFileInfo>eyJoYXNGaWxlIjozLCJoYXNGb2xkZXIiOjEsInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlfQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/Bin_1x1x9_TmDvd.stl</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Mon, 09 Mar 2026 10:57:36 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:33:57Z</D:creationdate>
                                        <D:getcontentlength>758663</D:getcontentlength>
                                        <D:resourcetype/><D:getcontenttype>application/vnd.ms-pkistl</D:getcontenttype><D:extendFileInfo>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyMCIsImhhc2hTaW1wbGUiOiIwNTk1MmZlZTMxOTI4YTk4MmY3YmVhMDZhZjRlOGE4MTc1ODY2MyIsImhhc2hNZDUiOiJmOTRmOTM5NzE2NTZiZWE3M2E3OTU2YzMyN2M0MWM5ZCIsImxpbmtDb3VudCI6IjEifSwicGFyZW50SUQiOjUsImlzVHJ1ZVBhdGgiOnRydWUsImZpbGVPdXRMaW5rIjoiaHR0cDpcL1wvMTkyLjE2OC4wLjI0OjgwMFwvP2V4cGxvcmVyXC9pbmRleFwvZmlsZU91dCZwYXRoPSU3QnNvdXJjZSUzQTQzJTdEJTJGJmFjdGlvblRva2VuPTY2OGFnTmxiRmc3emRDY3c2bXkxRlBLUlpQSUsxWjhqV0lwLWVFTjQmYWN0aW9uS2V5PVpYaHdiRzl5WlhJdmFXNWtaWGd2Wm1sc1pXOTFkRHR3WVhSbyJ9</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/Bin_2x2x9_TmDvd.stl</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Mon, 09 Mar 2026 10:58:32 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:34:03Z</D:creationdate>
                                        <D:getcontentlength>1579597</D:getcontentlength>
                                        <D:resourcetype/><D:getcontenttype>application/vnd.ms-pkistl</D:getcontenttype><D:extendFileInfo>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyMSIsImhhc2hTaW1wbGUiOiJhZjVjMGE5NmRjZTUwMDliZTIzODgyZWMxZTUyMTY5ODE1Nzk1OTciLCJoYXNoTWQ1IjoiY2E0NjZjNDdlY2ZkMDgwMzhkZTAxZWQyNDI1NmM4NTAiLCJsaW5rQ291bnQiOiIxIn0sInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlLCJmaWxlT3V0TGluayI6Imh0dHA6XC9cLzE5Mi4xNjguMC4yNDo4MDBcLz9leHBsb3JlclwvaW5kZXhcL2ZpbGVPdXQmcGF0aD0lN0Jzb3VyY2UlM0E0NCU3RCUyRiZhY3Rpb25Ub2tlbj02NjhhUEtVTkJyblhWMUo0ak5TUE5rNmM4aTlVVVRwNHpiRE8yaUVuJmFjdGlvbktleT1aWGh3Ykc5eVpYSXZhVzVrWlhndlptbHNaVzkxZER0d1lYUm8ifQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/Bin_2x3x6_TmDvd.stl</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Sun, 15 Feb 2026 09:28:33 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:34:03Z</D:creationdate>
                                        <D:getcontentlength>2126926</D:getcontentlength>
                                        <D:resourcetype/><D:getcontenttype>application/vnd.ms-pkistl</D:getcontenttype><D:extendFileInfo>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyMiIsImhhc2hTaW1wbGUiOiJkYTQyOTUzMWFhNzMwOGY3NjExN2M5ZTczN2VhYzA4ODIxMjY5MjYiLCJoYXNoTWQ1IjoiOWUxNTE3YzQwZjI3NmRlNzEyYWMwOTdhNGQ3ZmY4MjkiLCJsaW5rQ291bnQiOiIxIn0sInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlLCJmaWxlT3V0TGluayI6Imh0dHA6XC9cLzE5Mi4xNjguMC4yNDo4MDBcLz9leHBsb3JlclwvaW5kZXhcL2ZpbGVPdXQmcGF0aD0lN0Jzb3VyY2UlM0E0NSU3RCUyRiZhY3Rpb25Ub2tlbj02NjhhbnpCVGJxblVOeEJaZXpqZ2laZUQtUE1feWVENWlQX3J1ZE52JmFjdGlvbktleT1aWGh3Ykc5eVpYSXZhVzVrWlhndlptbHNaVzkxZER0d1lYUm8ifQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/Bin_2x3x9_TmDvd.stl</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Sun, 15 Feb 2026 09:25:47 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:34:03Z</D:creationdate>
                                        <D:getcontentlength>2116837</D:getcontentlength>
                                        <D:resourcetype/><D:getcontenttype>application/vnd.ms-pkistl</D:getcontenttype><D:extendFileInfo>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyMyIsImhhc2hTaW1wbGUiOiIxMDYzZDc1ODlmM2ExNGJkNzQ1Y2I1NTU0MzFlNWM4MzIxMTY4MzciLCJoYXNoTWQ1IjoiNTNiNDQ4MGQ2NzU1YmY2ZGQxMzRkZWFmMGFkMmYxMTYiLCJsaW5rQ291bnQiOiIxIn0sInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlLCJmaWxlT3V0TGluayI6Imh0dHA6XC9cLzE5Mi4xNjguMC4yNDo4MDBcLz9leHBsb3JlclwvaW5kZXhcL2ZpbGVPdXQmcGF0aD0lN0Jzb3VyY2UlM0E0NiU3RCUyRiZhY3Rpb25Ub2tlbj02NjhhMWk2amdDNko4cUJTTkQ3VHhmWWxGWHNYMTRNWklJeVRsV1hkJmFjdGlvbktleT1aWGh3Ykc5eVpYSXZhVzVrWlhndlptbHNaVzkxZER0d1lYUm8ifQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/Bin_3x3x6_TmDvd.stl</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Sat, 31 Jan 2026 04:38:22 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:34:04Z</D:creationdate>
                                        <D:getcontentlength>2958957</D:getcontentlength>
                                        <D:resourcetype/><D:getcontenttype>application/vnd.ms-pkistl</D:getcontenttype><D:extendFileInfo>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyNCIsImhhc2hTaW1wbGUiOiI4ZjgzM2RiMWZmNzA1Zjg5OTNkN2Q1Nzk5OGI5NjY5ZTI5NTg5NTciLCJoYXNoTWQ1IjoiMjhiMDJjYTBjYTYzOWMyODk5NzlhMzI2NjU5M2I1MTYiLCJsaW5rQ291bnQiOiIxIn0sInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlLCJmaWxlT3V0TGluayI6Imh0dHA6XC9cLzE5Mi4xNjguMC4yNDo4MDBcLz9leHBsb3JlclwvaW5kZXhcL2ZpbGVPdXQmcGF0aD0lN0Jzb3VyY2UlM0E0NyU3RCUyRiZhY3Rpb25Ub2tlbj02NjhhWDY2R0ZVbF9vamxpcW1ud2NsS2lIeXFsdS1YUjRaSnQ4UWtBJmFjdGlvbktleT1aWGh3Ykc5eVpYSXZhVzVrWlhndlptbHNaVzkxZER0d1lYUm8ifQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/Body.stl</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Sun, 04 Jan 2026 11:19:21 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:34:05Z</D:creationdate>
                                        <D:getcontentlength>20393784</D:getcontentlength>
                                        <D:resourcetype/><D:getcontenttype>application/vnd.ms-pkistl</D:getcontenttype><D:extendFileInfo>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyNiIsImhhc2hTaW1wbGUiOiJmMDhhYjM4YzdhYTNhZDRkMzQ0ZDYwNmY1NGY5MDJlMTIwMzkzNzg0IiwiaGFzaE1kNSI6ImJjMmI0MmFjZDFmZjM1NTQxODYwY2M2YTM4MTA1NjYzIiwibGlua0NvdW50IjoiMSJ9LCJwYXJlbnRJRCI6NSwiaXNUcnVlUGF0aCI6dHJ1ZSwiZmlsZU91dExpbmsiOiJodHRwOlwvXC8xOTIuMTY4LjAuMjQ6ODAwXC8/ZXhwbG9yZXJcL2luZGV4XC9maWxlT3V0JnBhdGg9JTdCc291cmNlJTNBNDklN0QlMkYmYWN0aW9uVG9rZW49NjY4YXhTM2hvVVFpT1dJVldXU21JeUpvMnkyTVgzOWE0cW5ZMjdxXyZhY3Rpb25LZXk9Wlhod2JHOXlaWEl2YVc1a1pYZ3ZabWxzWlc5MWREdHdZWFJvIn0=</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
                <D:response>
                        <D:href>/index.php/dav/my/cable_bin_2x2x14-%D0%A2%D0%B5%D0%BB%D0%BEEcoBin.stl</D:href>
                        <D:propstat>
                                <D:prop>
                                        <D:getlastmodified>Sun, 01 Mar 2026 10:35:32 GMT</D:getlastmodified>
                                        <D:creationdate>2026-03-11T13:34:05Z</D:creationdate>
                                        <D:getcontentlength>1269084</D:getcontentlength>
                                        <D:resourcetype/><D:getcontenttype>application/vnd.ms-pkistl</D:getcontenttype><D:extendFileInfo>eyJmaWxlSW5mbyI6eyJmaWxlSUQiOiIyNSIsImhhc2hTaW1wbGUiOiIzZDQwZjgyZWFiZmY5Njc1NmUwMmFjMjAxNmRhODg0YTEyNjkwODQiLCJoYXNoTWQ1IjoiZTFjNzY1MTg2NTE0MmJlNGMxYmViOWFjOTdkYjgyMDUiLCJsaW5rQ291bnQiOiIxIn0sInBhcmVudElEIjo1LCJpc1RydWVQYXRoIjp0cnVlLCJmaWxlT3V0TGluayI6Imh0dHA6XC9cLzE5Mi4xNjguMC4yNDo4MDBcLz9leHBsb3JlclwvaW5kZXhcL2ZpbGVPdXQmcGF0aD0lN0Jzb3VyY2UlM0E0OCU3RCUyRiZhY3Rpb25Ub2tlbj02Njhha3VQUk04TEFkSUxybEFMWFJQbmdrMHphZTBiLWVCazQzcEtLJmFjdGlvbktleT1aWGh3Ykc5eVpYSXZhVzVrWlhndlptbHNaVzkxZER0d1lYUm8ifQ==</D:extendFileInfo>
                                </D:prop>
                                <D:status>HTTP/1.1 200 OK</D:status>
                        </D:propstat>
                </D:response>
22:40:56.647970 [0-0] * [WRITE] [OUT] wrote 10742 body bytes -> 10742
22:40:56.648032 [0-0] * [WRITE] [PAUSE] writing 10742/10742 bytes of type 1 -> 0
22:40:56.648102 [0-0] * [WRITE] download_write body(type=1, blen=10742) -> 0
22:40:56.648169 [0-0] * [WRITE] http_chunked, write 10742 body bytes, 0 bytes in chunk remain
22:40:56.648253 [0-0] * [WRITE] http_chunk, response complete
22:40:56.648307 [0-0] * [WRITE] client_write(type=1, len=10755) -> 0
22:40:56.648380 [0-0] * [WRITE] xfer_write_resp(len=10755, eos=0) -> 0
22:40:56.648455 [0-0] * [WRITE] [OUT] done
22:40:56.648503 [0-0] * [READ] client_reset, clear readers
22:40:56.648570 [0-0] * Connection #0 to host 192.168.0.24:800 left intact
</D:multistatus>%
Here is curl when it fails (401):
curl -u bylkov:Bulkov6785 -X PROPFIND http://192.168.0.24:800/index.php/dav/my/ -H "Depth: 1" -vvv
22:39:49.153561 [0-x] * [READ] client_reset, clear readers
22:39:49.153664 [0-0] * [SETUP] added
22:39:49.153718 [0-0] *   Trying 192.168.0.24:800...
22:39:49.153805 [0-0] * [SETUP] Curl_conn_connect(block=0) -> 0, done=0
22:39:49.154052 [0-0] * [SETUP] Curl_conn_connect(block=0) -> 0, done=1
22:39:49.154134 [0-0] * Established connection to 192.168.0.24 (192.168.0.24 port 800) from 192.168.0.28 port 55376
22:39:49.154265 [0-0] * [SETUP] query ALPN
22:39:49.154316 [0-0] * using HTTP/1.x
22:39:49.154363 [0-0] * Server auth using Basic with user 'bylkov'
22:39:49.154447 [0-0] => Send header, 159 bytes (0x9f)
0000: PROPFIND /index.php/dav/my/ HTTP/1.1
0026: Host: 192.168.0.24:800
003e: Authorization: Basic Ynlsa292OkJ1bGtvdjY3ODU=
006d: User-Agent: curl/8.18.0
0086: Accept: */*
0093: Depth: 1
009d:
22:39:49.154720 [0-0] * Request completely sent off
22:39:49.170669 [0-0] <= Recv header, 27 bytes (0x1b)
0000: HTTP/1.1 401 Unauthorized
22:39:49.170768 [0-0] * [WRITE] [OUT] wrote 27 header bytes -> 27
22:39:49.170845 [0-0] * [WRITE] [PAUSE] writing 27/27 bytes of type c -> 0
22:39:49.170924 [0-0] * [WRITE] download_write header(type=c, blen=27) -> 0
22:39:49.171005 [0-0] * [WRITE] client_write(type=c, len=27) -> 0
22:39:49.171075 [0-0] <= Recv header, 15 bytes (0xf)
0000: Server: nginx
22:39:49.171153 [0-0] * [WRITE] header_collect pushed(type=1, len=15) -> 0
22:39:49.171231 [0-0] * [WRITE] [OUT] wrote 15 header bytes -> 15
22:39:49.171301 [0-0] * [WRITE] [PAUSE] writing 15/15 bytes of type 4 -> 0
22:39:49.171379 [0-0] * [WRITE] download_write header(type=4, blen=15) -> 0
22:39:49.171462 [0-0] * [WRITE] client_write(type=4, len=15) -> 0
22:39:49.171529 [0-0] <= Recv header, 37 bytes (0x25)
0000: Date: Wed, 11 Mar 2026 13:39:49 GMT
22:39:49.171627 [0-0] * [WRITE] header_collect pushed(type=1, len=37) -> 0
22:39:49.171701 [0-0] * [WRITE] [OUT] wrote 37 header bytes -> 37
22:39:49.171768 [0-0] * [WRITE] [PAUSE] writing 37/37 bytes of type 4 -> 0
22:39:49.171842 [0-0] * [WRITE] download_write header(type=4, blen=37) -> 0
22:39:49.171922 [0-0] * [WRITE] client_write(type=4, len=37) -> 0
22:39:49.171990 [0-0] <= Recv header, 40 bytes (0x28)
0000: Content-Type: text/html; charset=utf-8
22:39:49.172088 [0-0] * [WRITE] header_collect pushed(type=1, len=40) -> 0
22:39:49.172159 [0-0] * [WRITE] [OUT] wrote 40 header bytes -> 40
22:39:49.172222 [0-0] * [WRITE] [PAUSE] writing 40/40 bytes of type 4 -> 0
22:39:49.172299 [0-0] * [WRITE] download_write header(type=4, blen=40) -> 0
22:39:49.172374 [0-0] * [WRITE] client_write(type=4, len=40) -> 0
22:39:49.172439 [0-0] <= Recv header, 19 bytes (0x13)
0000: Content-Length: 0
22:39:49.172516 [0-0] * [WRITE] header_collect pushed(type=1, len=19) -> 0
22:39:49.172589 [0-0] * [WRITE] [OUT] wrote 19 header bytes -> 19
22:39:49.172651 [0-0] * [WRITE] [PAUSE] writing 19/19 bytes of type 4 -> 0
22:39:49.172728 [0-0] * [WRITE] download_write header(type=4, blen=19) -> 0
22:39:49.172809 [0-0] * [WRITE] client_write(type=4, len=19) -> 0
22:39:49.172876 [0-0] <= Recv header, 24 bytes (0x18)
0000: Connection: keep-alive
22:39:49.172970 [0-0] * [WRITE] header_collect pushed(type=1, len=24) -> 0
22:39:49.173048 [0-0] * [WRITE] [OUT] wrote 24 header bytes -> 24
22:39:49.173120 [0-0] * [WRITE] [PAUSE] writing 24/24 bytes of type 4 -> 0
22:39:49.173204 [0-0] * [WRITE] download_write header(type=4, blen=24) -> 0
22:39:49.173289 [0-0] * [WRITE] client_write(type=4, len=24) -> 0
22:39:49.173357 [0-0] <= Recv header, 133 bytes (0x85)
0000: Set-Cookie: KOD_SESSION_ID=7af92c5ada4f45b7933a1b2ba7b952be; exp
0040: ires=Wed, 11 Mar 2026 17:39:49 GMT; Max-Age=14400; path=/; HttpO
0080: nly
22:39:49.173581 [0-0] * [WRITE] header_collect pushed(type=1, len=133) -> 0
22:39:49.173658 [0-0] * [WRITE] [OUT] wrote 133 header bytes -> 133
22:39:49.173729 [0-0] * [WRITE] [PAUSE] writing 133/133 bytes of type 4 -> 0
22:39:49.173808 [0-0] * [WRITE] download_write header(type=4, blen=133) -> 0
22:39:49.173889 [0-0] * [WRITE] client_write(type=4, len=133) -> 0
22:39:49.173958 [0-0] <= Recv header, 104 bytes (0x68)
0000: Set-Cookie: CSRF_TOKEN=SJ9K39wYYkwhrRE4; expires=Wed, 18 Mar 202
0040: 6 13:39:49 GMT; Max-Age=604800; path=/
22:39:49.174140 [0-0] * [WRITE] header_collect pushed(type=1, len=104) -> 0
22:39:49.174219 [0-0] * [WRITE] [OUT] wrote 104 header bytes -> 104
22:39:49.174290 [0-0] * [WRITE] [PAUSE] writing 104/104 bytes of type 4 -> 0
22:39:49.174373 [0-0] * [WRITE] download_write header(type=4, blen=104) -> 0
22:39:49.174452 [0-0] * [WRITE] client_write(type=4, len=104) -> 0
22:39:49.174517 [0-0] <= Recv header, 32 bytes (0x20)
0000: Access-Control-Allow-Origin: *
22:39:49.174611 [0-0] * [WRITE] header_collect pushed(type=1, len=32) -> 0
22:39:49.174689 [0-0] * [WRITE] [OUT] wrote 32 header bytes -> 32
22:39:49.174755 [0-0] * [WRITE] [PAUSE] writing 32/32 bytes of type 4 -> 0
22:39:49.174831 [0-0] * [WRITE] download_write header(type=4, blen=32) -> 0
22:39:49.174904 [0-0] * [WRITE] client_write(type=4, len=32) -> 0
22:39:49.174966 [0-0] <= Recv header, 123 bytes (0x7b)
0000: Access-Control-Allow-Methods: GET, POST, OPTIONS, DELETE, HEAD,
0040: MOVE, COPY, PUT, MKCOL, PROPFIND, PROPPATCH, LOCK, UNLOCK
22:39:49.175155 [0-0] * [WRITE] header_collect pushed(type=1, len=123) -> 0
22:39:49.175232 [0-0] * [WRITE] [OUT] wrote 123 header bytes -> 123
22:39:49.175298 [0-0] * [WRITE] [PAUSE] writing 123/123 bytes of type 4 -> 0
22:39:49.175373 [0-0] * [WRITE] download_write header(type=4, blen=123) -> 0
22:39:49.175447 [0-0] * [WRITE] client_write(type=4, len=123) -> 0
22:39:49.175515 [0-0] <= Recv header, 124 bytes (0x7c)
0000: Access-Control-Allow-Headers: ETag, Content-Type, Content-Length
0040: , Accept-Encoding, X-Requested-with, Origin, Authorization
22:39:49.175697 [0-0] * [WRITE] header_collect pushed(type=1, len=124) -> 0
22:39:49.175770 [0-0] * [WRITE] [OUT] wrote 124 header bytes -> 124
22:39:49.175842 [0-0] * [WRITE] [PAUSE] writing 124/124 bytes of type 4 -> 0
22:39:49.175912 [0-0] * [WRITE] download_write header(type=4, blen=124) -> 0
22:39:49.175984 [0-0] * [WRITE] client_write(type=4, len=124) -> 0
22:39:49.176051 [0-0] <= Recv header, 40 bytes (0x28)
0000: Access-Control-Allow-Credentials: true
22:39:49.176146 [0-0] * [WRITE] header_collect pushed(type=1, len=40) -> 0
22:39:49.176220 [0-0] * [WRITE] [OUT] wrote 40 header bytes -> 40
22:39:49.176282 [0-0] * [WRITE] [PAUSE] writing 40/40 bytes of type 4 -> 0
22:39:49.176353 [0-0] * [WRITE] download_write header(type=4, blen=40) -> 0
22:39:49.176428 [0-0] * [WRITE] client_write(type=4, len=40) -> 0
22:39:49.176494 [0-0] <= Recv header, 30 bytes (0x1e)
0000: Access-Control-Max-Age: 3600
22:39:49.176578 [0-0] * [WRITE] header_collect pushed(type=1, len=30) -> 0
22:39:49.176645 [0-0] * [WRITE] [OUT] wrote 30 header bytes -> 30
22:39:49.176704 [0-0] * [WRITE] [PAUSE] writing 30/30 bytes of type 4 -> 0
22:39:49.176778 [0-0] * [WRITE] download_write header(type=4, blen=30) -> 0
22:39:49.176846 [0-0] * [WRITE] client_write(type=4, len=30) -> 0
22:39:49.176911 [0-0] * Basic authentication problem, ignoring.
22:39:49.176972 [0-0] <= Recv header, 42 bytes (0x2a)
0000: WWW-Authenticate: Basic realm="kodcloud"
22:39:49.177065 [0-0] * [WRITE] header_collect pushed(type=1, len=42) -> 0
22:39:49.177136 [0-0] * [WRITE] [OUT] wrote 42 header bytes -> 42
22:39:49.177196 [0-0] * [WRITE] [PAUSE] writing 42/42 bytes of type 4 -> 0
22:39:49.177269 [0-0] * [WRITE] download_write header(type=4, blen=42) -> 0
22:39:49.177339 [0-0] * [WRITE] client_write(type=4, len=42) -> 0
22:39:49.177403 [0-0] <= Recv header, 18 bytes (0x12)
0000: Pragma: no-cache
22:39:49.177472 [0-0] * [WRITE] header_collect pushed(type=1, len=18) -> 0
22:39:49.177538 [0-0] * [WRITE] [OUT] wrote 18 header bytes -> 18
22:39:49.177600 [0-0] * [WRITE] [PAUSE] writing 18/18 bytes of type 4 -> 0
22:39:49.177662 [0-0] * [WRITE] download_write header(type=4, blen=18) -> 0
22:39:49.177732 [0-0] * [WRITE] client_write(type=4, len=18) -> 0
22:39:49.177792 [0-0] <= Recv header, 25 bytes (0x19)
0000: Cache-Control: no-cache
22:39:49.177872 [0-0] * [WRITE] header_collect pushed(type=1, len=25) -> 0
22:39:49.177941 [0-0] * [WRITE] [OUT] wrote 25 header bytes -> 25
22:39:49.178000 [0-0] * [WRITE] [PAUSE] writing 25/25 bytes of type 4 -> 0
22:39:49.178072 [0-0] * [WRITE] download_write header(type=4, blen=25) -> 0
22:39:49.178140 [0-0] * [WRITE] client_write(type=4, len=25) -> 0
22:39:49.178200 [0-0] <= Recv header, 30 bytes (0x1e)
0000: Referrer-Policy: no-referrer
22:39:49.178279 [0-0] * [WRITE] header_collect pushed(type=1, len=30) -> 0
22:39:49.178351 [0-0] * [WRITE] [OUT] wrote 30 header bytes -> 30
22:39:49.178414 [0-0] * [WRITE] [PAUSE] writing 30/30 bytes of type 4 -> 0
22:39:49.178483 [0-0] * [WRITE] download_write header(type=4, blen=30) -> 0
22:39:49.178551 [0-0] * [WRITE] client_write(type=4, len=30) -> 0
22:39:49.178610 [0-0] <= Recv header, 33 bytes (0x21)
0000: X-Content-Type-Options: nosniff
22:39:49.178696 [0-0] * [WRITE] header_collect pushed(type=1, len=33) -> 0
22:39:49.178766 [0-0] * [WRITE] [OUT] wrote 33 header bytes -> 33
22:39:49.178827 [0-0] * [WRITE] [PAUSE] writing 33/33 bytes of type 4 -> 0
22:39:49.178897 [0-0] * [WRITE] download_write header(type=4, blen=33) -> 0
22:39:49.178965 [0-0] * [WRITE] client_write(type=4, len=33) -> 0
22:39:49.179024 [0-0] <= Recv header, 28 bytes (0x1c)
0000: X-Download-Options: noopen
22:39:49.179109 [0-0] * [WRITE] header_collect pushed(type=1, len=28) -> 0
22:39:49.179177 [0-0] * [WRITE] [OUT] wrote 28 header bytes -> 28
22:39:49.179240 [0-0] * [WRITE] [PAUSE] writing 28/28 bytes of type 4 -> 0
22:39:49.179307 [0-0] * [WRITE] download_write header(type=4, blen=28) -> 0
22:39:49.179376 [0-0] * [WRITE] client_write(type=4, len=28) -> 0
22:39:49.179438 [0-0] <= Recv header, 29 bytes (0x1d)
0000: X-Frame-Options: SAMEORIGIN
22:39:49.179517 [0-0] * [WRITE] header_collect pushed(type=1, len=29) -> 0
22:39:49.179583 [0-0] * [WRITE] [OUT] wrote 29 header bytes -> 29
22:39:49.179646 [0-0] * [WRITE] [PAUSE] writing 29/29 bytes of type 4 -> 0
22:39:49.179711 [0-0] * [WRITE] download_write header(type=4, blen=29) -> 0
22:39:49.179784 [0-0] * [WRITE] client_write(type=4, len=29) -> 0
22:39:49.179848 [0-0] <= Recv header, 41 bytes (0x29)
0000: X-Permitted-Cross-Domain-Policies: none
22:39:49.179937 [0-0] * [WRITE] header_collect pushed(type=1, len=41) -> 0
22:39:49.180008 [0-0] * [WRITE] [OUT] wrote 41 header bytes -> 41
22:39:49.180070 [0-0] * [WRITE] [PAUSE] writing 41/41 bytes of type 4 -> 0
22:39:49.180136 [0-0] * [WRITE] download_write header(type=4, blen=41) -> 0
22:39:49.180206 [0-0] * [WRITE] client_write(type=4, len=41) -> 0
22:39:49.180260 [0-0] <= Recv header, 20 bytes (0x14)
0000: X-Robots-Tag: none
22:39:49.180312 [0-0] * [WRITE] header_collect pushed(type=1, len=20) -> 0
22:39:49.180380 [0-0] * [WRITE] [OUT] wrote 20 header bytes -> 20
22:39:49.180445 [0-0] * [WRITE] [PAUSE] writing 20/20 bytes of type 4 -> 0
22:39:49.180513 [0-0] * [WRITE] download_write header(type=4, blen=20) -> 0
22:39:49.180587 [0-0] * [WRITE] client_write(type=4, len=20) -> 0
22:39:49.180649 [0-0] <= Recv header, 33 bytes (0x21)
0000: X-XSS-Protection: 1; mode=block
22:39:49.180733 [0-0] * [WRITE] header_collect pushed(type=1, len=33) -> 0
22:39:49.180808 [0-0] * [WRITE] [OUT] wrote 33 header bytes -> 33
22:39:49.180864 [0-0] * [WRITE] [PAUSE] writing 33/33 bytes of type 4 -> 0
22:39:49.180933 [0-0] * [WRITE] download_write header(type=4, blen=33) -> 0
22:39:49.181007 [0-0] * [WRITE] client_write(type=4, len=33) -> 0
22:39:49.181068 [0-0] <= Recv header, 2 bytes (0x2)
0000:
22:39:49.181123 [0-0] * [WRITE] header_collect pushed(type=1, len=2) -> 0
22:39:49.181193 [0-0] * [WRITE] [OUT] wrote 2 header bytes -> 2
22:39:49.181255 [0-0] * [WRITE] [PAUSE] writing 2/2 bytes of type 4 -> 0
22:39:49.181322 [0-0] * [WRITE] download_write header(type=4, blen=2) -> 0
22:39:49.181390 [0-0] * [WRITE] client_write(type=4, len=2) -> 0
22:39:49.181454 [0-0] * [WRITE] xfer_write_resp(len=1049, eos=0) -> 0
22:39:49.181525 [0-0] * [WRITE] [OUT] done
22:39:49.181566 [0-0] * [READ] client_reset, clear readers
22:39:49.181623 [0-0] * Connection #0 to host 192.168.0.24:800 left intact

Important note:
I have another kodbox installation (native Apache + PHP, same recent kodbox version).
On that server WebDAV never has this 401 problem.

I also tried from scratch:
docker image php:8.4-apache
same kodbox files and config
→ same temporary 401 error appears.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions