Here's the thing , i have a python interpreter and i want to run sqlmap using cmd with C# . Now the thing is i know how to run a normal cmd command from c# , if i run the following command on cmd
python sqlmap.py -u http://www.eastodissa.ac.in/news-and-events.php?id=22 --dbs
it asks for some user inputin the form of
[y/n]
and then it continues processing.
My question is that if i want to automate this process using C# that is bypassing these [y/n]'s with the default value i set and how to check whether the command has been executed or not , how will this be done. I'm kind of new to c#.
Thanks in advance