PE-sieve
Scans all running processes. Recognizes and dumps a variety of potentially malicious implants (replaced/implanted PEs, shellcodes, hooks, in-memory patches).
Loading...
Searching...
No Matches
console_color.cpp
Go to the documentation of this file.
1#include "console_color.h"
2#include <iostream>
3#include <paramkit.h>
4
5void pesieve::util::print_in_color(int color, const std::string & text, bool is_error)
6{
7 int descriptor = is_error ? STD_ERROR_HANDLE : STD_OUTPUT_HANDLE;
8 paramkit::print_in_color(color, text, descriptor);
9}
void print_in_color(int color, const std::string &text, bool is_error=false)