mirror of
https://github.com/LOLBAS-Project/LOLBAS
synced 2024-12-27 15:28:34 +01:00
9 lines
175 B
Plaintext
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.");
|
|
}
|
|
}
|