Forum: C# May 29th, 2009 |
| Replies: 0 Views: 310 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: 694 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: 694 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: 694 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: 694 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 13th, 2009 |
| Replies: 7 Views: 295 You could be facing the problem at either of these lines :
cin >> User;
cin >> option;
Most probably, they would leave a newline behind, in the input stream. Hence, the first getline() used... |
Forum: C# May 11th, 2009 |
| Replies: 7 Views: 329 yup..i got it...i will link in the posts from now. :) |
Forum: C# May 11th, 2009 |
| Replies: 7 Views: 1,113 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,113 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: 329 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: 694 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: 329 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,113 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: 329 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,113 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: 907 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: 441 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: 373 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: 373 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,483 yupp...sure.i will do it. |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,483 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,483 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,483 you may want to refer to the following site :
www.os-monitor.com |
Forum: C# May 6th, 2009 |
| Replies: 15 Views: 1,483 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,483 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,483 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,483 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,483 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... |
Forum: Java Mar 29th, 2009 |
| Replies: 0 Views: 255 I have written the following java applet code, mainly with the aim of suspending a thread instead of nullifying it and creating an another instance of it.
I want to know if the below written code is... |
Forum: Shell Scripting Mar 24th, 2009 |
| Replies: 4 Views: 985 lol..i couldnt help myself from laughing when i saw your solution :D
a good one; but certainly not applicable for me :)
anyways thanks for that too :) |
Forum: Shell Scripting Mar 23rd, 2009 |
| Replies: 4 Views: 985 i have come across a question which asks to write an awk command that displays all records having 2nd and 3rd characters same.
i could write the solution in sed, using tagged regular expression,... |
Forum: C++ Dec 23rd, 2008 |
| Replies: 3 Views: 605 hey .i got my problem solved.thanks for help |
Forum: C++ Dec 22nd, 2008 |
| Replies: 3 Views: 605 I am dealing with multiple monitors in which i required to use EnumDisplayDevices() API.
However, the linker gives me following error log (i am using VC++ 6.0) :
Linking...
SourceCode.obj :... |
Forum: C++ Dec 20th, 2008 |
| Replies: 4 Views: 409 @salem :
i apologise for cross-posting. As such i was confused in which forum to post. Hence i did so. however i didnt read the forum rules which was my mistake.
@ cikara21 : i didnt say any... |
Forum: C++ Dec 19th, 2008 |
| Replies: 4 Views: 409 I have been working on a program which requires to retrieve the names of all the current windows on the desktop. I can retrieve the name using the Windows API function GetWindowText(). But i require... |
Forum: Visual Basic 4 / 5 / 6 Dec 18th, 2008 |
| Replies: 3 Views: 1,438 but then i would like to ask if you have seen the attachments i provided. They are the sample reports i need to prepare. Please let me know if they are possible to make in data report designer. If... |
Forum: Visual Basic 4 / 5 / 6 Dec 16th, 2008 |
| Replies: 3 Views: 1,438 is there anyone who can solve my query??
:|
its almost urgent.. |
Forum: Visual Basic 4 / 5 / 6 Dec 16th, 2008 |
| Replies: 3 Views: 1,438 i am developing a project in vb 6 which deals with printing lots of forms and invoices - all containing user-filled details.
The invoices have different structures - some are tabular (with... |
Forum: C++ Nov 13th, 2008 |
| Replies: 0 Views: 598 I am developing a peer-to-peer RAT tool.
The mechanism i use is as follows :
client-side : connect to the server.
server-side : listen and accept the incoming connection.
The related code is as... |
Forum: C++ Nov 13th, 2008 |
| Replies: 1 Views: 801 Hey i have got the solution to my problem.. :)
Moderators may delete this post. |