Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Hello @Tormax58, Welcome! Kaspersky *only* supports commercially released OS, no dev, beta or development OS. Read: Kaspersky Password Manager for iOS, Hardware and software requirements. Please install a compliant OS & recheck the issue? Also, if (you've) modified root access to the phone it's possible to see the 'jailbroken' message'. Thank you🙏 Flood🐳+🐋
  3. Установка приложений с помощью мастера удаленной установки
  4. На клиенте, скачал с сервера свежую msi снет агентом и через комндную строку обновляю хорошо, как это сделать правильнее?
  5. sputnikk

    Очередной глюк KRD 2024.

    Включил полную прооверку, ушёл. Пришёл чере 2 часа. Индикатор диска бездейситвует, монитор в режиме сна (мигает). Никаие нажатия на мышь и клаву не подействовали, как и кнопка отключения питания на системнике. Только Reset. Вся папка на системнике https://drive.google.com/file/d/1LlYET1foHbLF0EFIPwEjjLngsZ7md6Wh/view?usp=drive_link P.S. Время изменения файлов в F:\KRD2024_Data\Temp +несколько часов к системному. В каком часовом поясе происходит датировка? Ведь в интерфейсе KRD время соответствует часам в BIOS
  6. Today
  7. @Schulte Danke für deine Rückmeldung. An dem PC arbeite nur ich und das in 99% der Fälle im Standard-User-Konto. Ich bin sehr selten im Admin-Konto eingeloggt. Aber da man im Export des Berichts ja sieht, dass die Aufgabe des jeweiligen Moduls gestartet wurde, passt es ja. Das Ganze ist nur dann nicht mehr einsehbar, wenn die GUI eines Berichts komplett leer ist, denn dann kann ich den Bericht nicht mehr exportieren und ab und zu mal reinschauen. Dazu müsste ich dann extra ins Admin-Konto umloggen. Aktuell werden mir bis auf den "Firewall" alle Berichte angezeigt, und wenn die anderen Module alle starten, wird dieses sicherlich auch starten. Wenn ich mich aber, wie du sagst, am Status von Kaspersky orientieren kann, kann ich die Berichte ja erstmal ignorieren. Dann warte ich mal die nächste Version ab, wie es mit dem AutoUpdate dann klappt und je nachdem werde ich Kaspersky dann neu installieren.
  8. When activating my IPhone 15 Pro Max in Password Manager the program said my phone was jailbreaked. The message disappeared after some seconds. I run IOS 26 dev beta 3
  9. harlan4096

    Kaspersky closing the Free version

    Sorry, my fault, now I got, and yeah You are right, the link I posted does not work anymore for KFree 🤔 As I just checked, They removed all of KFree accesses from all the country sites, They were working properly when I posted...
  10. bob77

    Kaspersky closing the Free version

    Sorry, harlan 4096, I don't understand. My Kaspersky Free is working perfectly. What I am saying is that if I accessed the the sites you quoted, I used to be able to download a KFree installer, now I can't. There isn't one available on that link.
  11. harlan4096

    Kaspersky closing the Free version

    If even using the proper KFree installer, You still get a trial 30 days version, then something wrong with the account You are using linked to My Kaspersky, try with creating a new My Kaspersky account / different email address. Also, I'm not sure, but I recall there is a limit of the devices You can assign to Your address for a Free Subscription 🤔
  12. bob77

    Kaspersky closing the Free version

    I have edited my post to clarify I'm based in the UK but I have also tried to access the global site using an Asian VPN with the same result: links to 30 days free only.
  13. harlan4096

    Kaspersky closing the Free version

    Where do You come from?
  14. bob77

    Kaspersky closing the Free version

    Unless they are extremely well hidden, I can't get the links to Kaspersky Free, quoted by harlan4096, to work any more. They now only link to 30 days free for the paid versions. I'm based in the UK.
  15. Flood and Flood's wife

    What will happen to my current free license if I upgrade my license?

    Hello @habuhenka, Also, read: Switching from Kaspersky Free to Kaspersky Standard or Kaspersky Plus. And, a little bit more information, IF/when an upgrade (from Free) to paid, happens, the *original* Free subscription remains in (your) MyKaspersky account. It is not paused, it keeps ticking over - until it expires. The Free subscription is not in use, it's simply been *replaced* - it's not possible to have two active AV subscriptions on the same device. IF - at any stage in the future - the subscriber decides to revert from paid to Free they can take out a *new* Free subscription. Thank you🙏 Flood🐳+🐋
  16. To figure out what's causing the problem, first check Kaspersky’s logs to see what’s being blocked. Then, make sure Citrix is allowed through the firewall by adding it to the trusted apps list. It’s also worth checking the Application Control settings to ensure Citrix isn’t being flagged as suspicious. If that doesn’t help, try disabling Kaspersky features like the firewall or web protection one by one to see if that resolves it. Lastly, make sure both Kaspersky and Citrix are up to date, as outdated software can sometimes cause these issues.
  17. Сделайте так: , и приложите экспорт списка.
  18. Там один или два хэша md5, точно не помню. Проблема заключается в том, что когда скрипт добавляет хэши md5 в категорию, потом при открытии этой категории в KSC, он крашится. Вот пытаюсь понять почему. С SHA256 проблем не выявлено.
  19. Виктор Михайлов

    KSC Open API

    Сделал сам так: from KlAkOAPI.AdmServer import KlAkAdmServer import urllib3 import requests import base64 import json username = 'OpenAPI_2FA' password = '1qazXSW@' def ConnectKSC_2FA_Token(ip): # connect to KSC with two-factor Token authentication using TOTP codes # The Token (KlAkAdmServer.CreateByToken) can be used for logon purposes to Administration Server for a short time (3 minutes by default). urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) url_login = ip + "/api/v1.0/login" url_CreateToken = ip + "/api/v1.0/Session.CreateToken" user = base64.b64encode(username.encode("utf-8")).decode("utf-8") passwd = base64.b64encode(password.encode("utf-8")).decode("utf-8") session = requests.Session() auth_headers = { "Authorization": 'KSCBasic user="' + user + '", pass="' + passwd + '", internal="0"', "Content-Type": "application/json", } data = {} connect = None response = session.post( url=url_login, headers=auth_headers, data=data, verify=False ) if response.status_code == 401 and response.text == "Authentication not finished": totp = input("Enter a TOTP: ") auth_headers = { "Authorization": 'KSCMFA totp="' + totp + '"', "Content-Type": "application/json", } data = {} response = session.post( url=url_login, headers=auth_headers, data=data, verify=False ) if response.status_code == 200: response = session.post( url=url_CreateToken, headers="", data=data, verify=False ) if response.status_code == 200: Token = json.loads(response.text)["PxgRetVal"] connect = KlAkAdmServer.CreateByToken( ip, Token, verify=False, vserver="" ) else: session.close() connect = KlAkAdmServer.Create(ip, username, password, verify=False, vserver="") return connect
  20. Попробуйте отлаживать на малом количестве хешей, например, на паре-тройке md5 и sha256, сравнивая содержимое экспортированного списка. И да, что у Вас в этом экспортированном списке содержится? Только sha256?
  21. harlan4096

    Real pool 3d2

    Report to K. Support
  22. Also, provide capture or copy/paste the details of the detections from Your K. Reports section.
  23. Wesly.Zhang

    Real pool 3d2

    Kaspersky Lab
  24. Stephen Smith

    Real pool 3d2

    sorry but what does kl mean
  25. Wesly.Zhang

    Real pool 3d2

    Hello @Stephen Smith Please try disabling Kaspersky Application Control's behavior monitoring for this process and see if this crash behavior will go. Open KL product main GUI --> Settings-->Security settings-->Exclusions and actions on object detection--> Specify trusted applications--> + Add --> Path to "C:\Program Files\WindowsApps\B9BA84AC.3D2_2.4.3.0_x64__3ag0hv5nd203a\RealPool3.exe" without quote --> Select--> check "Do not monitor application activity" and "Do not monitor child application activity" "Apply exclusion recursively" and "Do not inherit restrictions from the parent process(application)"-->OK-->OK-->Save-->Confirm.
  26. Идёт где? Для чего/ с какой целью Вы привели скрин? Каким образом Вы пытаетесь обновить агента администрирования? Задачей с "KSC"?
  27. harlan4096

    app.cocos.capital Navegador seguro

    Confirmo que aquí también funciona en W11 Pro + KPremium 21.21a: Tanto si tecleo manualmente en Chrome la URL (en modo normal), como si hago clic sobre la entada añadida a la lista [Ver sitios Web] en Pago Seguro.
  1. Load more activity


×
×
  • Create New...