diff --git a/kvc/ControllerProcessOperations.cpp b/kvc/ControllerProcessOperations.cpp index 7bf3654..552f537 100644 --- a/kvc/ControllerProcessOperations.cpp +++ b/kvc/ControllerProcessOperations.cpp @@ -1236,7 +1236,7 @@ bool Controller::PrintProcessInfo(DWORD pid) noexcept return false; } - // Podstawowe informacje o ochronie + // Basic protection information auto kernelAddr = GetProcessKernelAddress(pid); if (!kernelAddr) { ERROR(L"Failed to get kernel address for PID %d", pid); @@ -1268,7 +1268,7 @@ bool Controller::PrintProcessInfo(DWORD pid) noexcept ERROR(L"Failed to enable console colors"); } - // Wyświetl podstawowe informacje + // Display basic information std::wcout << L"\n[*] Detailed Process Information:\n"; std::wcout << L" PID: " << pid << L" (" << processName << L")\n"; @@ -1295,9 +1295,9 @@ bool Controller::PrintProcessInfo(DWORD pid) noexcept std::wcout << L"\n[*] Dumpability Analysis:\n"; auto dumpability = Utils::CanDumpProcess(pid, processName, protLevel, signerType); - std::wcout << L"DEBUG: CanDump=" << dumpability.CanDump << L", Reason=" << dumpability.Reason << L"\n"; + std::wcout << L" CanDump=" << dumpability.CanDump << L", Reason=" << dumpability.Reason << L"\n"; -// Zapisz oryginalny kolor konsoli + // Save original console color HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE); CONSOLE_SCREEN_BUFFER_INFO csbi; GetConsoleScreenBufferInfo(hConsole, &csbi); @@ -1309,7 +1309,7 @@ bool Controller::PrintProcessInfo(DWORD pid) noexcept SetConsoleTextAttribute(hConsole, originalColor); std::wcout << L"\n"; - // Dodatkowe wskazówki + // Additional tips if (protLevel > 0) { std::wcout << L" Note: Process is protected but can be dumped with elevation\n"; } @@ -1319,7 +1319,7 @@ bool Controller::PrintProcessInfo(DWORD pid) noexcept SetConsoleTextAttribute(hConsole, originalColor); std::wcout << L"\n"; - // Sugestie obejścia + // Workaround suggestions if (protLevel > 0) { std::wcout << L" Suggestion: Try elevating current process protection first\n"; } diff --git a/kvc/TrustedInstallerIntegrator.cpp b/kvc/TrustedInstallerIntegrator.cpp index 4a1379a..90ee4ad 100644 --- a/kvc/TrustedInstallerIntegrator.cpp +++ b/kvc/TrustedInstallerIntegrator.cpp @@ -967,7 +967,6 @@ bool TrustedInstallerIntegrator::AddDefenderExclusion(ExclusionType type, std::w if (result) { SUCCESS(L"Defender exclusion added successfully"); } else { - // ZMIANA: Użyj INFO zamiast WARNING jeśli nie masz makra WARNING INFO(L"Failed to add Defender exclusion (Defender might be disabled)"); } @@ -1011,7 +1010,6 @@ int TrustedInstallerIntegrator::AddMultipleDefenderExclusions( if (successCount > 0) { SUCCESS(L"Defender exclusions configured (%d/%d added)", successCount, totalAttempts); } else if (totalAttempts > 0) { - // ZMIANA: Użyj INFO zamiast WARNING INFO(L"No Defender exclusions were added (Defender might be disabled)"); }