Forum: C# May 29th, 2009 |
| Replies: 0 Views: 367 Inorder to list all the workstations on a LAN, i have used NetServerEnum() after importing it.
On running the program, it seemed to work fine. The two existing machines were detected correctly.... |
Forum: C# May 17th, 2009 |
| Replies: 5 Views: 761 ya..to simplify my problem i would like to add the following :
The keylogger basically works perfectly (no slowdowns and every keystroke is logged) if i install the hook in the main thread (for... |
Forum: C# May 17th, 2009 |
| Replies: 5 Views: 761 Could anyone help me out?? :|
I am stuck at this point since last 5 days and now i am pulling my hairs off. |
Forum: C# May 15th, 2009 |
| Replies: 5 Views: 761 ok..i am attaching the compilable and executable code of the keylogger.
The interface is too much primary, so dont get bothered by it :)
"Connect 1" button would connect to your own PC (the... |
Forum: C# May 14th, 2009 |
| Replies: 5 Views: 761 sorry for a late reply. I was out for last 2 days. :)
anyways, you mentioned about some variable going out-of-scope. I have checked it out, but couldnt find one. Also, connection is not getting... |
Forum: C# May 11th, 2009 |
| Replies: 7 Views: 345 yup..i got it...i will link in the posts from now. :) |
Forum: C# May 11th, 2009 |
| Replies: 7 Views: 1,156 yaaa...i got it.
you are right.I wont make a nested namespace.
I will go as follows :
NetworkTracker.Common - the assembly containing the common code.
NetworkTracker.Tracker namespace for the... |
Forum: C# May 11th, 2009 |
| Replies: 7 Views: 1,156 ohk..i got it.
i will implement what you said. Infact , that would make my project easier to handle. :)
But, then wouldnt it affect the namespaces i have already structured?
Or just refactoring... |
Forum: C# May 11th, 2009 |
| Replies: 7 Views: 345 ohk..yup..i know the enum type.
I thought to follow the same method. Indeed, i would follow what you suggested.
i will just use the switch case to direct the command to some function that handles... |
Forum: C# May 11th, 2009 |
| Replies: 5 Views: 761 First of all, the keylogger that i am developing is not at all for offensive and destructive purposes. :)
I am developing a client monitoring application in C#.NET.
Keylogging is one of the... |
Forum: C# May 10th, 2009 |
| Replies: 7 Views: 345 i am developing it in C#.NET, using the helper classes - TcpClient, TcpListener. (i mean no direct use of Socket).
Also i am using asynchronous method of communication.
The project i am developing... |
Forum: C# May 10th, 2009 |
| Replies: 7 Views: 1,156 yaa..i tried that out.
But then its not letting me add references to both the projects saying that it would create a circular dependency.
How do i deal with that? |
Forum: C# May 10th, 2009 |
| Replies: 7 Views: 345 In my client-server architecture, the cilent-side application would send specific messages to the server-side application.
How should i handle those messages?
Previously, in a small project, i had... |
Forum: C# May 10th, 2009 |
| Replies: 7 Views: 1,156 i am developing a visual studio solution that contains two projects.
Each project has its own namespace :
Project1 : namespace MainProject.Project1
Project2 : namespace MainProject.Project2
My... |
Forum: C# May 8th, 2009 |
| Replies: 2 Views: 1,058 We are developing a client monitoring network application.
We would require IP addresses of all the computers in the network.
how do we retrieve these IP addresses ?
I have already seen some... |
Forum: C# May 8th, 2009 |
| Replies: 0 Views: 498 I am developing a client-server application.
However, here the situation is a bit different : There is only a single client that would connect to several servers that are listening for a connection.... |
Forum: C# May 7th, 2009 |
| Replies: 1 Views: 442 okay fine..it was a stupid question. After an hour or so, it clicked me to place the array in the class that i (infact, Visual Studio) would derive from Form class. :) |
Forum: C# May 7th, 2009 |
| Replies: 1 Views: 442 I am developing a form application (UI) through which I need to connect a client to multiple servers.
For that, i would require an array of either Socket objects or TcpClient objects.
My dilemma is... |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,697 yupp...sure.i will do it. |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,697 oh yaa! The thread pooling had just gone out of my mind actually.
And i had also overlooked the delegates - the event handler "dudes".
ok..now i am much clear. :)
And i will refer to the link you... |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,697 Ok. I agree with you. But would you recommend threading in this module? Yaa..async uses threading, but any chance of threading resulting into an overhead in my case? |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,697 you may want to refer to the following site :
www.os-monitor.com |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,697 as such its both a logging utility (keylogger, snapshots, etc) as well as a remote control utility (eg., I/O restrictions, web restrictions, USB forbiddance, s/w installation restrictions, etc.) |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,697 Very sorry to bother you with the following long list of details, i think i should make my situation more clear :
the administering machine would monitor all other machines as you know. That machine... |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,697 yes..i think now you got it right.
This is more like : a UI would keep a watch on all other machines and would ask to perform operations when required.
And based on this, i thought it to be a 1:1... |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,697 i would like to heed your attention to one thing here :
i would STRICTLY have ONLY ONE CLIENT (the User Interface which the administrator would be using) in this project; and there are multiple... |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,697 Currently I have started with my college project - Network monitoring, which may include features like keylogging, application blocking, h/w restrictions, catching snapshots, file operations... |