Monitor a process for actions applied on a file [closed] - windows

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to monitor a process in windows to check what actions it performs on a particular file including renaming it, or encrypt it. I want to generate events for these actions.

its easier to monitor the file than the process. Take a look at FileSystemWatcher class. http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx

Related

Encrypted Text - Where to Start [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
So I have an encrypted text I need to decrypt, where do I start and is there a program that automatically recognizes an algorithm ? Here is a snippet of what I need decrypted:
e302446c4b62c02dc77b3c896ef385c64244a83bd6702b215882d3f1b599ff69
Encrypted text is designed to resemble random numbers. Cryptographic algorithms are designed specifically to keep you from doing exactly what you are trying to do.

Reverse engineering [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a binary-only copy of an application written in Delphi 7; as part of its execution, it writes some data into a text file (not in plain text).
Is it possible to extract the data from the file if I know part of the input data and have a copy of this file? (What if it's encrypted?) I have no idea about the structure of the mentioned file.
And no, I don't have source code for the application -- I think that's obvious.
Yes it's possible, you would have to reverse engineer this application first (IDA, HIEW) and/or debug it while it stores the data to the file, contact me if you need more help.

Console based menu in bash [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
can anyone tell me how can i build console based menu in which i can navigate by direction keys to select options. Code should be in bash or shell script.
Look at pdmenu. It is pretty simple to use.
Or in case you need go deeper there is whiptail tool. It also allow you to build dialog box and so on. But it is a little bit harder to use comparing to pdmenu.
What about the dialog command?

Disable orientation change when user want to [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to give to users my app an options that they can lock/disable orientation screen.
How can I do that?
You cannot prevent the rotation. But you can try use this:
http://pagerotationwp.codeplex.com/
see also
http://answers.microsoft.com/en-us/winphone/forum/wp7-wptips/auto-rotate-of-the-screen/d61a7b68-6941-41f9-a4f3-375e25669032?msgId=2ace87af-b04f-405e-b949-f85f861af740
Regards

Algorithm to "learn" from user input [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Like the 20Q, is there a published algorithm that allows a program to "learn" from user input?
Programs like junk mail filters learn from what you tell it and uses that information to make more insightful choices in the future when classifying an email as junk.
Mahout is one open source machine learning library. It has implementations of a few different algorithms

Resources