Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
Hello Everybody,

I want to create an application using C# which will detect and store which sites are opening in a particular time interval whatever browser used by the that should not matters.

I don't know how to start regarding the topic. please help me.
Posted

1 solution

A session in something else, at least in the .net vision :).

So you want to know what websites are accesed in a particulat time interval. This translates to knowing what addresses are accesed in the specified time interval by a list of interfaces.

The only way to achive this that I can think of is to attach to all the network interfaces and peek at the network communication interceptiong the tcp/ip packages and checking the address of the destionation. Starting with the address you could obtain the domain name.

See articles like this one Network Sniffer[^].
 
Share this answer
 
Comments
[no name] 31-May-11 5:56am    
Yes exactly what you got.
But the answer is not sufficient for me. because I don't have much Idea regarding this concept.
Please give me some more information, how to communicate with TCP/IP or how to collect information from all the browser.

thanks in advance.
Stanciu Vlad 31-May-11 6:02am    
There is a lot to talk about this topic.
The basic ideea is that you must use sniffing and must know something about TCP\IP.

I would recommend you to search for these topics on CP or why not even on good old Google.
[no name] 31-May-11 6:23am    
thanks for your reply

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900