1
0
mirror of https://github.com/LOLBAS-Project/LOLBAS synced 2025-03-15 03:48:33 +01:00

9 lines
175 B
Plaintext

private void Button_click(object sender, RoutedEventArgs e)
{
if (RadioButton1.IsChecked == true)
{
Process.Start("C:\\poc\\evil.exe");
MessageBox.Show("BHello.");
}
}