Search Results

Showing results 1 to 40 of 52
Search took 0.01 seconds.
Search: Posts Made By: Bhoot
Forum: C# May 29th, 2009
Replies: 0
Views: 310
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
yup..i got it...i will link in the posts from now. :)
Forum: C# May 11th, 2009
Replies: 7
Views: 1,113
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
yupp...sure.i will do it.
Forum: C# May 6th, 2009
Replies: 15
Views: 1,483
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
you may want to refer to the following site :
www.os-monitor.com
Forum: C# May 6th, 2009
Replies: 15
Views: 1,483
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
hey .i got my problem solved.thanks for help
Forum: C++ Dec 22nd, 2008
Replies: 3
Views: 605
Posted By Bhoot
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
Posted By Bhoot
@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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
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
Posted By Bhoot
Hey i have got the solution to my problem.. :)
Moderators may delete this post.
Showing results 1 to 40 of 52

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC