Fetch ошибка протокола tls неверная запись mac decryptmissingdatabytes

Здравствуйте. 
Ежедневная проблема с Kaspersky Security Center установленным на Windows Server 2012r2.

 
Каждое утро заходя на сервер вижу сообщение:
«Не удалось подключиться к Серверу администрирования «localhost». Укажите другой адрес или попытайтесь подключиться еще раз.»

 
При этом в отчете «События аудита» появляется сообщение:

 
Имя события Сервер остановлен
Важность: Информационное сообщение
Программа: Сервер администрирования Kaspersky Security Center
Номер версии: 10.1.249
Название задачи:
Компьютер: Сервер администрирования <имя>
Группа: <имя>
Время: 26 декабря 2014 г. 2:00:02
Имя виртуального Cервера:
Описание: Остановлена служба Сервера администрирования

 
При перезапуске приложения вручную все работает нормально до следующего утра. Подскажите, что делать?

 

Юрий Иванов

Новичок

Сообщений: 3
Баллов: 2
Rating:

0

Authority:

0

Регистрация: 05.04.2021

При получении почты пишет ошибку: Ошибка протокола TLS: Неверная запись MAC DecryptMissingDataBytes. Подскажите, что делать? Версия Bat 6.0.12

 

George Salnik

Администратор

Сообщений: 1606
Баллов: 2905
Rating:

117

Authority:

116

Регистрация: 21.11.2013

TheBat 6 не хочет работать с gmail, об этом вопрос?

 

Юрий Иванов

Новичок

Сообщений: 3
Баллов: 2
Rating:

0

Authority:

0

Регистрация: 05.04.2021

#3


0
 

Цитата
George Salnik написал:
TheBat 6 не хочет работать с gmail, об этом вопрос?

Это Яндекс почта

 

George Salnik

Администратор

Сообщений: 1606
Баллов: 2905
Rating:

117

Authority:

116

Регистрация: 21.11.2013

Что ж. Стоит надеяться, что сюда заглянет кто с 6-м мышонком и яндексом, чтобы показать Вам свои настройки. Техподдержка Вам не подскажет, скорее всего, т.к. версия неактуальная.

 

Юрий Иванов

Новичок

Сообщений: 3
Баллов: 2
Rating:

0

Authority:

0

Регистрация: 05.04.2021

#5


0
 

Цитата
George Salnik написал:
Что ж. Стоит надеяться, что сюда заглянет кто с 6-м мышонком и яндексом, чтобы показать Вам свои настройки. Техподдержка Вам не подскажет, скорее всего, т.к. версия неактуальная.

Причем началось неделю назад ни с того ни с сего, до этого работало несколько лет, а сейчас  то работает, то выводит эту ошибку.

My os details:
windows 10
Version 22H2 (OS Build 19045.2728)

My Dockerfile:

# pull the base image
FROM node:lts-alpine

# set the working direction
WORKDIR /app

# add `/app/node_modules/.bin` to $PATH
ENV PATH /app/node_modules/.bin:$PATH

# install app dependencies
COPY package*.json ./


RUN npm install


# add app
COPY . ./

EXPOSE 3000

# start app
CMD ["npm", "start"]

This is my package.json file:

{
  "name": "frontend",
  "version": "0.1.0",
  "private": true,
  "proxy": "http://localhost:5000",
  "devServer": {
    "allowedHosts": [
      "localhost",
      "127.0.0.1"
    ]
  },
  "dependencies": {
    "@emotion/react": "^11.10.6",
    "@emotion/styled": "^11.10.6",
    "@material-ui/core": "^4.12.4",
    "@mui/material": "^5.11.11",
    "@reduxjs/toolkit": "^1.9.3",
    "@testing-library/jest-dom": "^5.16.5",
    "@testing-library/react": "^13.4.0",
    "@testing-library/user-event": "^13.5.0",
    "axios": "^1.3.3",
    "formik": "^2.2.9",
    "fsevents": "^2.1.3",
    "moment": "^2.29.4",
    "react": "^18.2.0",
    "react-auth-kit": "^2.8.2",
    "react-dom": "^18.2.0",
    "react-helmet": "^6.1.0",
    "react-icons": "^4.7.1",
    "react-persist": "^1.0.2",
    "react-rating-stars-component": "^2.2.0",
    "react-redux": "^8.0.5",
    "react-router-dom": "^6.8.1",
    "react-scripts": "5.0.1",
    "redux": "^4.2.1",
    "redux-devtools-extension": "^2.13.9",
    "redux-persist": "^6.0.0",
    "redux-thunk": "^2.4.2",
    "tailwindcss": "^3.2.6",
    "web-vitals": "^2.1.4",
    "yup": "^1.0.2"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": [
      "react-app",
      "react-app/jest"
    ]
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  }
}

My try:

  1. First I changed the base image to node:14-apline and node:slim but it was not working,That time I’m getting new error.
    error:
    #10 23.37 npm ERR! notsup Unsupported platform for fsevents@2.3.2: wanted {«os»:»darwin»,»arch»:»any»} (current: {«os»:»linux»,»arch»:»x64″})
  2. I tried to restart the docker in powershell.

The main error:

=> ERROR [1/5] FROM docker.io/library/node:lts-alpine@sha256:ffc770cdc09c9e83cccd99d663bb6ed56cfaa1bab94baf1b12b626aebeca9c1  218.1s 
=> => resolve docker.io/library/node:lts-alpine@sha256:ffc770cdc09c9e83cccd99d663bb6ed56cfaa1bab94baf1b12b626aebeca9c10         0.0s 
=> => sha256:ffc770cdc09c9e83cccd99d663bb6ed56cfaa1bab94baf1b12b626aebeca9c10 1.43kB / 1.43kB                                   0.0s 
=> => sha256:19eaf41f3b8c2ac2f609ac8103f9246a6a6d46716cdbe49103fdb116e55ff0cc 1.16kB / 1.16kB                                   0.0s 
=> => sha256:f520ad35ba68f1ed1301a5eda87eaa722e468a9fc3a179868a035dc4c5dddaef 6.48kB / 6.48kB                                   0.0s 
=> => sha256:63b65145d645c1250c391b2d16ebe53b3747c295ca8ba2fcb6b0cf064a4dc21c 3.37MB / 3.37MB                                  15.7s 
=> => sha256:f41005eb563ce84e6c742a787d6a598fde273c134e94c90acc6115853a7f8315 10.49MB / 47.54MB                               218.1s 
=> => sha256:69dcb013f10fed3864b0f9915d6721b09f0c6717e5452ee96e04fde6082322a7 2.35MB / 2.35MB                                  13.1s 
=> => sha256:00a00d31565028f3c00c64959dafe4587320e8c99a39982ccda8a8a9ccef7123 449B / 449B                                      15.3s 
=> => extracting sha256:63b65145d645c1250c391b2d16ebe53b3747c295ca8ba2fcb6b0cf064a4dc21c                                        0.2s 
------
> [1/5] FROM docker.io/library/node:lts-alpine@sha256:ffc770cdc09c9e83cccd99d663bb6ed56cfaa1bab94baf1b12b626aebeca9c10:
------
failed to copy: local error: tls: bad record MAC

When you are trying to pull the docker images from online source, sometime we would face this error message during the mid of downloading.

Solution:

I tried to pull the image using WIFI, after few workout I have changed to ethernet cable, that’s it downloaded completed successfully :)

This issue may happen because of slow network or poor wifi adapter.

Further reading

  • How to enable SQL encryption in MS SQL server
  • 7 Ways To Migrate On-Premise SQL Database To Azure
Thirunavukkarasu RM

munsta

New user
New user
Posts: 2
Joined: 2020-09-26 02:16

Thunderbird IMAP connection fail: TLS/SSL handshake failed Error code 336151570 sslv3 alert bad certificate

Hi guys,

I’m a happy user of hmailserver, but I found a problem when connecting with IMAP to any account using Thunderbird on Windows and happens too in any Linux distribution I tried. The hmailserver error show the following line:

TLS/SSL handshake failed Error code 336151570 sslv3 alert bad certificate, which is strange error because Outlook on Windows and Evolution or Kmail in Linux distributions can connect properly, and server side whatever is smaller than TLS 1.2 is disabled. The certificate I use is self-signed.

This happened when I used hmailserver 5.6.7 (build 2425) stable build and now that I use hmailserver 5.6.8 (build 2501) beta happens too.

I configured in Thunderbird mintls and maxtls variable to only use TLS 1.2 and TLS 1.3 and tried to whitelist the selfsigned certificate but Thunderbird cannot find it.

Do you know guys what can be causing this problem?


User avatar

SorenR

Senior user
Senior user
Posts: 5987
Joined: 2006-08-21 15:38
Location: Denmark

Re: Thunderbird IMAP connection fail: TLS/SSL handshake failed Error code 336151570 sslv3 alert bad certificate

Post

by SorenR » 2020-09-26 12:49

SørenR.

To understand recursion, you must first understand recursion.


munsta

New user
New user
Posts: 2
Joined: 2020-09-26 02:16

Re: Thunderbird IMAP connection fail: TLS/SSL handshake failed Error code 336151570 sslv3 alert bad certificate

Post

by munsta » 2020-09-26 14:51

Hi Soren, thank you for your reply and help.

1 — Reverting Thunderbird version does not help as it show the same error connecting to IMAP (is the first thing I tried anyway)
2- Tried to set mintls 1 which is SSLV3. Don’t worked because server side SSLV3 is fully disabled (see picture below), I only use TLS 1.2 and TLS 1.3
3- The other link only confirms that my configuration should work too in the new Thunderbird version, as serverside I only use by default TLS 1.2 and 1.3 (picture below)

Screenshot_1.png
Screenshot_1.png (1.14 KiB) Viewed 2888 times

FIXED: I’m from Spain, so I was using Spanish Thunderbird client. Once uninstalled in Spanish and installed English-US version to try if changes anything, all accounts can connect now without any problem. I’m sure now Thunderbird must be the problem, as other emails clients like Outlook, Evolution, Kmail, and Android ones can connect properly using Spanish language. I’m going to report this particular situation to Mozilla people to see if they have some bug with this.

EDIT1: I replicated and fixed this Thunderbird behavior in other computer using again install English-US version of Thunderbird while Spanish-ES failed to connect again.


Понравилась статья? Поделить с друзьями:
  • Fetch ошибка протокола tls неверная запись mac decryptaead
  • Fetch ошибка 500
  • Fetch ошибка 403
  • Fetch ошибка 401
  • Ferrum ошибка e01