ExclamationComputer Detecting program that dont is on.

Posts 13 of 3 · Page 1 of 1
Computer Detecting program that dont is on.
Hello, im currently working with a block program that automaticly ban you if you have any cracking programs open.
The problem is that people that use my program getting banned for some reason without have any of thoose programs open.
What program could it be that banning them?
Code:
If p.MainWindowTitle.Contains("Fiddler") Then...
If p.MainWindowTitle.Contains("SimpleAssemblyExplorer") Then...
If p.MainWindowTitle.Contains("Reflector") Then...
If p.MainWindowTitle.Contains("HxD") Then...
If p.MainWindowTitle.Contains("Ollydb") Then...
If p.MainWindowTitle.Contains("Wireshark") Then...
If p.MainWindowTitle.Contains("Depends") Then...
If p.MainWindowTitle.Contains("idaq") Then...
If p.MainWindowTitle.Contains("ida") Then...
If p.ProcessName.Contains("SbieSvc") Then...
Could it possibly be something else banning them?

also, why don't you have a ban reason? so then you can see what program it is???

Edit 2:
instead of having a bunch of if statements, you could use a for loop with a array of different title texts. Be much easier to add more detected process titles then.
really old thread but avoid using Contains.
for example any program can contain the letters("ida") but its not actually the IDA software , use EQUALS instead.
use a for loop with arrays with program names
Posts 13 of 3 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?