diff --git a/Aaru.Localization/UI.resx b/Aaru.Localization/UI.resx
index fa017cf6b..d405f3e7b 100644
--- a/Aaru.Localization/UI.resx
+++ b/Aaru.Localization/UI.resx
@@ -288,6 +288,9 @@ In you are unsure, please press N to not continue.
Do you have want to try MediaTek vendor command F1h subcommand 06h?
+
+
+ Do you have want to try Lite-On vendor commands?
THIS IS DANGEROUS AND CAN IRREVERSIBLY DESTROY YOUR DRIVE (IF IN DOUBT PRESS 'N')
diff --git a/Aaru/Commands/Device/DeviceReport.cs b/Aaru/Commands/Device/DeviceReport.cs
index 21180daad..76aa9ebec 100644
--- a/Aaru/Commands/Device/DeviceReport.cs
+++ b/Aaru/Commands/Device/DeviceReport.cs
@@ -699,6 +699,14 @@ sealed class DeviceReportCommand : AsyncCommand
false);
}
+ if(!tryLiteOn)
+ {
+ tryLiteOn |=
+ AnsiConsole
+ .Confirm($"[italic]{UI.Do_you_want_to_try_LiteOn_commands} [red]{UI.This_is_dangerous}[/][/]",
+ false);
+ }
+
tryMediaTekF106 =
AnsiConsole
.Confirm($"[italic]{UI.Do_you_want_to_try_MediaTek_commands} [red]{UI.This_is_dangerous}[/][/]",