Click here to Skip to main content
15,887,421 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to make Monitoring software for parental control ,where parents can monitor their activities. plz help me ..
i want feature that reports about how much time has been spent on a website .
Posted

1 solution

There's a couple of options here.

If you can limit "your children" to a single browser like Chrome you could write a Chrome extension. But this is nothing new and there are already tools available.

If you're looking to create a commercial product, something a bit more generic then you may need to switch that c# to c++.

You'd need to create a WinSock2 layered service provider and add it to the TCP/IP stack and then interrogate the TCP/IP traffic to identify HTTP requests.

There may be other ways, if so, I'm not aware of them.

Unraveling the Mysteries of Writing a Winsock 2 Layered Service Provider.[^]
 
Share this answer
 
Comments
Member 12282487 28-Jan-16 9:16am    
do i have to make a windows service for this type of project?
Stephen Hewison 28-Jan-16 10:08am    
No, it will be a DLL which is installed and registered against the stack. If you google "Writing a winsock layered service provider" you should find a number of articles which will take you through the basics.

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