Jump to content

Search the Community

Showing results for 'update' in content posted in the last year.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • English Forum
    • Products for Home
    • Products for Business
    • KasperskyOS, Development
    • Kaspersky Centers of Expertise
    • Kaspersky Anti-Ransomware Tool
    • Beta Testing Products for Home & Business
  • Русскоязычный форум
    • Продукты для дома
    • Продукты для бизнеса
    • KasperskyOS, Разработка
    • Центры Экспертизы «Лаборатории Касперского»
    • Kaspersky Anti-Ransomware Tool
    • Бета-тестирование продуктов для дома и бизнеса
  • Deutschsprachiges Benutzer-Forum
    • Für Privatanwender
    • Für Unternehmen
  • Forum para usuarios hispanohablantes
    • Para usuarios particulares
    • Para empresas
  • Forum des Utilisateurs Français
    • Pour particuliers
    • Pour les entreprises
  • Fórum Brasileiro
    • Para casa
    • Para PMES e empresas
  • 中文论坛
    • 家用产品支持
    • 企业产品支持
  • Forum in Italiano
    • Utenti privati
    • Aziende
  • Türkçe Forum
    • Ev için
    • İş için
  • Nederlands Gebruikersforum
    • Voor thuis
    • Voor bedrijven
  • Forum Knowledgebase
    • Instructions
    • Advice and solutions

Blogs

  • Kaspersky Anti Targeted Attack & EDR Expert's KATA & KEDR Expert community articles
  • Kaspersky Security Center's Kaspersky Security Center Community
  • Kaspersky Endpoint Security's Kaspersky Endpoint Security
  • Kaspersky Unified Monitoring and Analysis Platform's Advice and Slutions
  • Kaspersky Endpoint Security Cloud's Kaspersky Endpoint Security Cloud
  • Kaspersky Security for Mail Server's Kaspersky Security for Mail Server
  • Kaspersky Embedded Systems Security's Kaspersky Embedded Systems Security
  • Kaspersky Security for Internet Gateway's Kaspersky Security for Internet Gateway
  • Kaspersky Security Awareness's Kaspersky Security Awareness
  • Kaspersky Hybrid Cloud Security's Kaspersky Hybrid Cloud Security
  • Kaspersky EDR Optimum's Kaspersky EDR Optimum
  • General Advice's Blog

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

  1. Berny

    Patch status voor de Kaspersky producten

    De automatische update naar de nieuwe versies MR24 (21.24.8.522) NL Kaspersky Standard - Plus - Premium is begonnen. Na installatie is een handmatige database-update + reboot aanbevolen.
  2. I want to configure a KSC as an update server on the external network and a KSC as a functional server on the internal network to distribute agents. After completing the initial setup, I found in the help documentation that I need to configure it in "General," but I couldn’t find the "General" section—where is it? Additionally, I've granted myself all roles,why are the "Infrastructure" and "Console Settings" options grayed out? Currently, the only account I can log in with is the local account using the local machine password—what are the passwords for the other accounts?
  3. update root certificates - https://support.kaspersky.com/kess/3.0/diagnostics/13727
  4. Thank you for your replies . I will update you.
  5. Danila T.

    YouTube и Kaspersky Secure Connection

    Status update: Cервис Youtube не доступен через VPN. Kaspersky Secure Connection обеспечивает шифрование трафика для защиты интернет-соединения пользователей. Продукт позволяет работать с ресурсами, которые ограничили доступ для российских пользователей по собственному решению, и с сайтами, доступными в России. В соответствии с действующим законодательством Российской Федерации, решение не предназначено для обхода ограничений доступа к определенным информационным ресурсам. В отдельных случаях сайты или онлайн-сервисы могут сами ограничивать подключение при обнаружении защищенных или анонимизирующих технологий — это связано с внутренними политиками безопасности этих ресурсов.
  6. Description and cautions This article describes how to configure dump for capturing memory dumps, including application memory. Details The recommended text editor is nano, below is a quick tutorial on how to use it if you are using it for the first time. Configure kdump Altlinux There is no kdump-tools package in the default repository, so it has to be downloaded from the sisyphus repository: Go to https://packages.altlinux.org/en/sisyphus/srpms/kdump-tools/ In List of rpms provided by this srpm select the kdump-tools package for the required architecture (can be checked by running uname -m) Download the package from the Download link Install it by running apt-get update && apt-get install <path to the downloaded rpm> After that, follow the Debian instruction from Edit /etc/default/kdump-tools step Red Hat based distributions (tested on Fedora 38, Rocky Linux 9, Red OS) Install kexec-tools sudo dnf install kexec-tools Edit /etc/kdump.conf. In the configuration file edit the core_collector setting: option -d should be set to 17 instead of 31 Edit /etc/default/grub. Edit GRUB_CMDLINE_LINUX, add crashkernel=256M to reserve enough RAM for the dump kernel to run, and nmi_watchdog=1, to capture a dump in case of a system hang Run sudo grub2-mkconfig -o /boot/grub2/grub.cfg Reboot Enable kdump service sudo systemctl enable --now kdump.service Debian based distributions (tested on Debian, Astra CE, Alt Linux) Install kdump-tools sudo apt update && sudo apt install kdump-tools -y Edit /etc/default/kdump-tools. In the configuration file edit the MAKEDUMP_ARGS variable: option -d should be set to 17 instead of 31 Configure the bootloader In /etc/default/grub edit GRUB_CMDLINE_LINUX_DEFAULT, add nmi_watchdog=1 to capture a dump in case of a system hang In /etc/default/grub.d/kdump-tools.cfg change crashkernel value to 384M-:256M (default is 384M-:128M) Expected result: GRUB_CMDLINE_LINUX_DEFAULT="$GRUB_CMDLINE_LINUX_DEFAULT crashkernel=384M-:256M" ave and run sudo update-grub SUSE Linux Install kdump sudo zypper in kdump kexec-tools Edit /etc/sysconfig/kdump Change KDUMP_DUMPLEVEL variable to 17 Edit /etc/default/grub Edit GRUB_CMDLINE_LINUX_DEFAULT, add crashkernel=256M to reserve enough RAM for the dump kernel to run, and nmi_watchdog=1, to capture a dump in case of a system hang Update the bootloader configuration sudo grub2-mkconfig -o /boot/grub2/grub.cfg Reboot Enable kdump service sudo systemctl enable --now kdump.service Configure SysRq dump trigger To enable SysRq trigger, these key combinations 'kernel.sysrq = 8'(without quotes) has to be added to /etc/sysctl.conf. Reboot or run sudo sysctl --system After the set up above is complete, to manually trigger a dump press Alt+SysRq, Alt+C. Alternatively: echo 8 | sudo tee /proc/sys/kernel/sysrq (Command above is only needed if kernel.sysrq is not set in /etc/sysctl.conf) echo c | sudo tee /proc/sysrq-trigger Location of the dump files may vary between different Linux versions, it is configurable in the kdump configuration file. In Debian based distributions it is set by KDUMP_COREDIR variable. In Red Hat based distributions it is set by the path setting, generally the default location is /var/crash. Make sure that the dump folder has enough free space for the dump to be written. You may search by filemask: vmcore. Related Information
  7. I've install a Kaspersky Endpoint Security for Linux 12.2 on a Ubuntu 22.04 LTS. The network agent 15.1 was installed too. I have a KSC 15.1 on Windows. We already But the protection seems to be stopped and the policy that I've created is not appliyng. The thing that called my attention is: "Application license information: Inconsistent udpate" /opt/kaspersky/kesl/bin/kesl-control --app-info Name: Kaspersky Endpoint Security 12.2 for Linux Version: 12.2.0.2412 Policy: Not applied Application license information: Inconsistent update
  8. I bought two years of Kaspersky Internet Security, I entered the activation code and unfortunately every week I find myself with the update changing the version to Kaspersky standard. How can I prevent this?
  9. Hello, I cannot update my AV database. I'm from Myanmar and I'm trying the premium trial to see whether its' AV and VPN works properly. I tried with both my home wifi and my data hotspot. It always stopped at 8%. I have attached screeshots. the vpn is also not working, stuck at introduction page. 😞 Operating system: Windows10 V22H2 (OS Build 19045.5854)
  10. Hallo zusammen, ich spiele derzeit wieder mal Call of Duty MW3. Um das Spielerlebnis zu verbessern nutze ich einen legalen FoV Changer (Field of View), der mein Sichtfeld erweitert (herauszoomt). Dieses Programm hooked sich in das Game ein und modifziert es, indem es wohl einen Wert für eben den FoV ändert. Kaspersky hat, bevor ich den FoV Changer zu den Ausnahmen hinzugefügt habe, regelmäßig mein Game gecrashed (als Info, falles das relevant ist). Jetzt aber crashed mein Spiel, weil Kaspersky irgendwelche Trojaner erkannt haben möchte. Dieser soll sich in der "Update.exe" (siehe Log) befinden. Es gibt in diesem besagten Ordner keine exe, die so heißt. Ich bin völlig planlos. (ein schön von mir formatiertes Log bzw. Bild davon hängt an - ihr braucht drei Bildschirme um alles zu lesen...) Was mir zu diesem Zusammenhang noch einfällt: Ich war vor ein paar Wochen in einer Lobby als plötzlich mein Game mit einer sehr seltsamen, vom Gamedeveloper wohl eincodierte Fehlermeldung, gecrashed ist. Im Anschluss musste ich meinen Rank resetten und alles (Fortschritt, Waffen, Rang etc.) war weg. Im nachhinein habe ich mich in einer anderen Lobby darüber beschwert und es antwortete jemand an, der sagt er könne mir alles wieder zurückgeben (Items, Waffen etc.) und ich solle ein paar Sekunden warten. Dann erscheint "Rank up" auf meinem BIldschirm und siehe da, es ist alles wieder da (ich habe wohl einen full-unlock von einem Fremden bekommen). Das Game ist wohl so dermaßen löchrig, dass jeder etwas mit meinem Game anstellen kann (es ist peer to peer hosted; keine dedizierten Server) und jetzt frage ich mich, ob ich mir darüber irgendwelche Viren, Trojaner, Malware eingefangen habe. Ich habe bereits die Kaspersky Rescue Disk über mein System laufen lassen - nichts. Außerdem habe ich die Game files über Steam verifizieren lassen. "All 453 files successfully validated". Wenn was fehlt, steht da normalerweise noch wieviel heruntergeladen wurde, oder? Windows 10 Home Version 2009 Kaspersky Plus 21.20 (laut log) Log ist angehängt Vielen Dank für eure Hilfe 🙂 Tom Auszug aus Log, weil die Screenshots ganz mies sind: 13 May 2025 19:34:03 Schädliches Objekt gefunden Node.js JavaScript Runtime Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 8644 PC Initiator Gefunden: PDM:Trojan.Win32.Generic Gefunden PDM:Trojan.Win32.Generic Trojaner Hoch Genau Update.exe Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 Prozess Verhaltensanalyse 13 May 2025 19:34:03 Prozess beendet Node.js JavaScript Runtime Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 8644 PC Initiator Beendet: PDM:Trojan.Win32.Generic Beendet PDM:Trojan.Win32.Generic Trojaner Hoch Genau Update.exe Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 Prozess 13 May 2025 19:34:04 Eine Backup-Kopie des Objekts wurde angelegt Node.js JavaScript Runtime Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 8644 PC Initiator Backup-Kopie angelegt: PDM:Trojan.Win32.Generic Backup-Kopie angelegt PDM:Trojan.Win32.Generic Trojaner Hoch Genau Update.exe Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 Prozess 13 May 2025 19:34:27 Objekt gelöscht Node.js JavaScript Runtime Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 8644 PC Initiator Gelöscht: PDM:Trojan.Win32.Generic Gelöscht PDM:Trojan.Win32.Generic Trojaner Hoch Genau Update.exe Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 Prozess 13 May 2025 19:35:00 Eine Backup-Kopie des Objekts wurde angelegt Node.js JavaScript Runtime Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 8644 PC Initiator Backup-Kopie angelegt: PDM:Trojan.Win32.Generic Backup-Kopie angelegt PDM:Trojan.Win32.Generic Trojaner Hoch Genau startup.vbs startup.vbs C:\Users\XXX\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup Prozess 13 May 2025 19:35:20 Schädliches Objekt gefunden Node.js JavaScript Runtime Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 8644 PC Initiator Gefunden: PDM:Trojan.Win32.Generic Gefunden PDM:Trojan.Win32.Generic Trojaner Hoch Genau Update.exe Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 Prozess Verhaltensanalyse 13 May 2025 19:35:20 Prozess beendet Node.js JavaScript Runtime Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 8644 PC Initiator Beendet: PDM:Trojan.Win32.Generic Beendet PDM:Trojan.Win32.Generic Trojaner Hoch Genau Update.exe Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 Prozess 13 May 2025 19:35:21 Objekt gelöscht Node.js JavaScript Runtime Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 8644 PC Initiator Gelöscht: PDM:Trojan.Win32.Generic Gelöscht PDM:Trojan.Win32.Generic Trojaner Hoch Genau Update.exe Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 Prozess 13 May 2025 19:35:20 Objekt wird beim Neustart gelöscht Node.js JavaScript Runtime Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 8644 PC Initiator Wird beim Neustart gelöscht Wird beim Neustart gelöscht Trojaner Informativ Genau startup.vbs startup.vbs C:\Users\XXX\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup Datei 13 May 2025 19:35:20 Rollback ausgeführt Node.js JavaScript Runtime Update.exe C:\Steam\steamapps\common\Call of Duty Modern Warfare 3 8644 PC Initiator Rollback von Programmaktionen: PDM:Trojan.Win32.Generic Rollback von Programmaktionen PDM:Trojan.Win32.Generic Trojaner Hoch Genau update.exe update.exe c:\steam\steamapps\common\call of duty modern warfare 3 Prozess
  11. Hello @Bernd Wechner, Welcome! KSK time report discrepancy issues may be difficult, we always try to replicate the original complaint for comparison, so apologies for the delay. Regarding (your) 12year old hacking KSK or the OS: Have (you) asked them - in all seriousness - it's much better to be upfront, something along the lines of, it's not that we don't trust you but you're a smart kid, we don't want to waste time with Community support / support if you've messed with the system, the reason we have KSK is to keep you safe. In our tests we replicated the issue - then resolved it - this is where it took so long bc KSK is a PIA when it comes to uninstall & clean install & post install. That's what (you) need to do, shutdown *absolutely-everything*, then, using Windows Add & remove programs - uninstall KSK, then shutdown the computer, make sure it's a *full* shutdown, restart, login. Download a *new* KSK installer from here: https://www.kaspersky.com/downloads - scroll down to the downloads section & select KSK. Install KSK, after the full install, reboot the computer, make sure it's a *full* shutdown, restart, login. At this point KSK time reporting will be *accurate* but KSK will send a notification in 24 to 48 hrs to do *another* *full* shutdown bc it will have applied the latest version *silently* - make sure you do the *full* shutdown, restart, login *again*. At that point KSK time reporting will still be working & you & the kid are good to go. A couple of other points to note: BOTH children must only have a LOCAL Windows user account - no elevated profiles whatsoever. Both Children - IF the children use Android phones (as well) the Settings application must be Forbidden. To permit access to this is the equivalent of giving an elevated profile on a Windows device. Images: the 1st set shows KSK version originally installed, version post install & replication of (your) KSK time settings Set 2 shows: KSK version post silent update & KSK report, for todays time-test we allocated 10 minutes, was on the computer for 8, KSK updated accurately-in-real-time. Please share the outcome with the Community, when it's available? Thank you🙏 Flood🐳+🐋
  12. chavs_uk

    URGENT help required with KSK uninstall!

    Update! I have - finally - managed to get the app uninstalled from the device, but not without the expected back-and-forth emails from Kaspersky "support" ! Firstly, they asked me to send screenshots of the process; there wasn't much point as it didn't show anything, but I did as requested anyway. Secondly, they asked me to install an app called AIDA64 and send them an extremely long datafile/log of the device's setup, which I did. At this point, it became annoying, because another "agent" took over the case and just sent a reply saying "sorry for the inconvenience, you must have just had a temporary connection error trying to connect to your account, please try again and let us know if you require further help." Needless to say, my response to that email wasn't overly polite, and I requested they escalate it to someone who had an ounce of common sense between their ears instead. I then received a reply from yet another person with an apology and a set of 3 options to try. One of the options was the 'safe mode' option, but that doesn't work because KSK prevents the device from starting in safe mode, so that was a no-go from the outset. The second option did work, therefore I obviously didn't try the third. I'm more than happy to share the instructions that DID work here, if that would be allowed? Just wanted to make sure that's allowed before I post them! I'm off to work shortly, so it could be a day or two before I'm able to get back on to check for an update.
  13. I have a Primium Licence not a Standard - how to get updates for premium version or is this update for premium also? - I'm wondering about namings tthe change often, but are not clearly understandable in practice
  14. My subscription is about to expire in 22 days and I am hoping that the developers will remove the forced Ai that has been added in the update to above new version that occured today on my PC. I don't trust Ai with my data and spend my life removing it from as many products as possible. Please can Kaspersky allow us to opt out of the forced Ai even if it means reverting us to the previous version of Kaspersky Standard while they code this option. I run a business advising customers on security as well as selling new PCs and I refuse to sell/use or recommend any product with forced Ai in it.
  15. Hallo, in 14 Tagen läuft meine Lizenz aus und ich möchte updaten. Wenn ich auf "Verlängern" tippe, werden mir für diese Version 35 € angezeigt. gehe ich auf die Homepage, dann wird dort für 25 € angeboten. So sollte Kaspersky eigentlich nicht mit langjährigen Kunden umgehen. Vorsichtshalber habe ich meine Version zum Laufzeitende gekündigt. Wie soll ich weiter vorgehen, was schlagt Ihr vor?
  16. Just upgraded to version Premium 21.24.8.522 and noticed it alerting me in the "home" section of the app to turn on MS Edge extension... so I said to turn it on. It took me to Edge, but shows the extension as already installed.. so I removed it... and readded it, but no change, it says its installed, but remains Grey and the warning inside the app to turn it on remains. (and I have rebooted, just to be sure) The extension page says its version 2.13.33.2 dated 18th Sep 2025 (on the Chrome web store). My version of Edge is up to date... 144.0.3719.104 PC is Win 11 Pro, 25H2 fully patched... ver 26200.7628 Just me? any ideas? I presume Kaspersky just have to pull their finger out and update something
  17. Quick update... Icon does seem to be green on many web sites... but not here on this forum.. May be it "off" for this site as it is Kaspersky's and so is trusted... I dont know.. but it seems to be all good.
  18. Thanks all... I can confirm the update to 21.24.8.522 was done manually, over the top of my previous install So I did as @newbie1 suggested and did a complete uninstall of the whole app and reinstalled. The extension then behaved differently to before... When it was not working, when I clicked on it in the list of extensions, it opened a box with a grey shield on the left, and an arrow pointing to (what I now assume to be) a settings screen.. clicking in that box did nothing. After the fresh install, clicking on it in the list of extensions did open a settings screen (as shown in @harlan4096 screen shot above). And once enabled things, the icon turned green as shown in attached screen shot. So I thought I was done and all good. But I rebooted, and now the icon is back to grey, but the settings do open, and seem to be selected, so I assume it is actually working (see second screen shot) Anyway - thanks for everyones help.
  19. I've recently updated my 21.23 overwriting it with 21.24: Personally, I haven't gotten the issue, but I recall that other users had the same issue with previous versions when They did update, and for many of them, the only workaround was uninstalling and run a clean installation of the new version of Kaspersky. Also, the icon remains in gray but working, it will only get green color if You enable Private Browsing and/or Anti-Banner modules.
  20. Both my Kaspersky Premium and Standard got updated to the latest version and after update it showing in Changelogs that Windows Sleep mode is delayed until a full scan is complete. Does this mean I can't put Windows to sleep unless I do a full scan?
  21. Greetings. Yesterday just before going to sleep i was surprised with a strange Pop-up from Kaspersky, it said my antivirus wasn't activated and that my protection was disabled. It was odd since my signature will last until october. A quick look made me realize that after a update, the antivirus just expelled my activation key and downgraded back to Kaspersky Free. I entered my account and had to manually disconnect my computer so i could install once again in the same computer. I'm wondering if this will be a recurring problem, because most of the time I ignore all the annoying pop-ups of Kaspersky, but luckily this time i paid attention since the colors had change from the ones i used to see. PS: Second problem, if you have time: How do i get hid of all the annoying pop-ups that Kaspersky seems to be throwing at me? I know about the configurations inside the program, but i only have the system ones activated, all the others about promotions and news are disabled, but i still get a lot of irritating pop-ups every now and then, even when I'm in fullscreen. I remember Kaspersky being all quiet in the computer back in the day, but now it seems that more and more irrelevant pop-ups are appearing on the screen.
  22. Probably a silly question. I have Kaspersky Plus running on my Windows 7 SP1 machine. Last restart was sometime last week. I restarted it just now (Sat evening) and saw the Windows alert to not unplug the machine because Windows was installing an update. Same when it started, the warning about configuring the update. All updates are turned off in Windows Control Panel, still are after this happened, and have been for a time frame measuring in years, I manually installed a few things as needed to run Kaspersky and Nord VPN, so the only program with permission to do this (and presumably, a reason) to mess with Windows Updates would be Kaspersky, I'm not running any trial modes of other security software. I have very little other software on here, Foxit, VideoLAN and Audacity (only used when offline). Nord has stopped doing its own program updates for W7 as well. Before I uninstall it and dig further, can anyone verify whether this was actually Kaspersky? It seems bizarre. I truly never thought I'd see that screen again on shutdown...
  23. Так у вас показывает уязвимости Win 11 на какой версии Linux KSC 16.1 или 15.1 (update 2) ?
  24. Если готовы мигрировать на Linux KSC, то до 16.1. Если сейчас не готовы, то до 15.1 (update 2). Агента администрирования можно обновить до 16.1 на клиентах.
  25. Hello @mrx78, Welcome! Kaspersky Total Security version 21.3.10.391 -> is Kaspersky's *old* software - it's been replaced by Kaspersky PLUS, Kaspersky are offering a *free-like-for-like-upgrade*, READ: Kaspersky: Basic, Standard, Plus, Premium - info & FAQ, by Kaspersky Danila T. Kaspersky PLUS *download* is available here: https://www.kaspersky.com/downloads#update-product. *Important* -> update the *old* software to Kaspersky PLUS, reboot the computer = power OFF, ON, login, make sure databases are updated, recheck IF binance issue is resolved? FYI, Kaspersky Standard, Plus, Premium current version as at Jan 11th 2026: Kaspersky at default settings, Chrome, binance URL provided = Thank you🙏 Flood🐳+🐋
×
×
  • Create New...