From 694a6a609fd780fcc2df218bfb4919f50965f076 Mon Sep 17 00:00:00 2001 From: Jai A Date: Wed, 8 May 2024 00:07:35 -0700 Subject: [PATCH] Update blog post link --- README.md | 5 +++++ src/app.rs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..500c242 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Oracle + +Oracle is a simple malware detection tool. Currently, it only detects the "Windows Borderless" malware. + +See our blog post for more information: https://blog.modrinth.com/p/windows-borderless-malware-disclosure \ No newline at end of file diff --git a/src/app.rs b/src/app.rs index b406f82..fb0ab79 100644 --- a/src/app.rs +++ b/src/app.rs @@ -189,7 +189,7 @@ impl eframe::App for TemplateApp { ui.horizontal_wrapped(|ui| { ui.spacing_mut().item_spacing.x = 0.0; ui.colored_label(Color32::RED, "Malware has been detected on your computer. We recommend changing all passwords for all accounts signed in on this computer and saved in browsers (including apps like Discord). Check out the "); - ui.hyperlink_to("blog post", "https://github.com/modrinth/oracle"); + ui.hyperlink_to("blog post", "https://blog.modrinth.com/p/windows-borderless-malware-disclosure"); ui.colored_label(Color32::RED, " for more information."); });