Thread: URL history for software

  1. #1
    Registered User
    Join Date
    Feb 2010
    Posts
    98

    URL history for software

    Is it possible to find out what urls are being called by installed software? As in automatic updates need to connect to the internet... I want to see the "browsing history" of any program on my computer.

    (I am a C++ programming newbie, and this the the only forum I could think of to help me.)

    Thanks

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    Wireshark · Go deep.
    Or more specifically, libpcap which sits underneath it. This is the thing that captures all the packets.

    After that, it's up to you to do some packet analysis to work out what is going on....
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  3. #3
    spurious conceit MK27's Avatar
    Join Date
    Jul 2008
    Location
    segmentation fault
    Posts
    8,300
    I found pcap interesting. You can, in fact, see not only all the data coming to and from your computer, but all the data within a LAN (such as a coffee shop or library wifi):

    Programming with pcap
    C programming resources:
    GNU C Function and Macro Index -- glibc reference manual
    The C Book -- nice online learner guide
    Current ISO draft standard
    CCAN -- new CPAN like open source library repository
    3 (different) GNU debugger tutorials: #1 -- #2 -- #3
    cpwiki -- our wiki on sourceforge

  4. #4
    Registered User
    Join Date
    Feb 2010
    Posts
    98
    Wireshark is what I'm looking for... but I will also remember pcap for the future.
    Thank-you both.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. URL splitter
    By monki000 in forum C Programming
    Replies: 10
    Last Post: 02-18-2010, 12:36 AM
  2. How to make URL connection and read from URL
    By abmirayo in forum C Programming
    Replies: 3
    Last Post: 02-15-2010, 04:59 PM
  3. URL escape issue
    By George2 in forum C# Programming
    Replies: 2
    Last Post: 08-12-2008, 11:45 AM
  4. Interpreter.c
    By moussa in forum C Programming
    Replies: 4
    Last Post: 05-28-2008, 05:59 PM
  5. best way to search through 'history'
    By anykey in forum C++ Programming
    Replies: 2
    Last Post: 08-16-2005, 04:31 PM