Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Spyware and other unwanted net access

Spyware and other unwanted net access

Scheduled Pinned Locked Moved The Lounge
sysadminhelplearning
15 Posts 11 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Michael P Butler

    Anybody know of any cheap or free apps that will tell me exactly what ips and sites may internet connection is accessing. I'm looking for something to log exactly what my server is talking to. Partly to determine if I've got any spyware installed and what it might be sending. Any suggestions for books or articles which would help me in learning more about tcp/ip communications. I'd quiet like to have a go at writing an app similar to what I described. cheers, Michael :-)

    R Offline
    R Offline
    Reno Tiko
    wrote on last edited by
    #4

    Try SysInternals.com: TCPView http://www.sysinternals.com/ntw2k/source/tcpview.shtml PortMon http://www.sysinternals.com/ntw2k/freeware/portmon.shtml

    M 1 Reply Last reply
    0
    • R Reno Tiko

      Try SysInternals.com: TCPView http://www.sysinternals.com/ntw2k/source/tcpview.shtml PortMon http://www.sysinternals.com/ntw2k/freeware/portmon.shtml

      M Offline
      M Offline
      Michael P Butler
      wrote on last edited by
      #5

      Thanks for the links. They both look like they'll be useful, cheers, Michael :-)

      1 Reply Last reply
      0
      • M Michael P Butler

        Anybody know of any cheap or free apps that will tell me exactly what ips and sites may internet connection is accessing. I'm looking for something to log exactly what my server is talking to. Partly to determine if I've got any spyware installed and what it might be sending. Any suggestions for books or articles which would help me in learning more about tcp/ip communications. I'd quiet like to have a go at writing an app similar to what I described. cheers, Michael :-)

        R Offline
        R Offline
        Rafik Robeal
        wrote on last edited by
        #6

        Your situation sounds familiar to me! you see you are uploading tons of data while you can't figure why!? even if you disable all your LAN connections you will notice that it won't stop!! Try it. If you got this situation, then one of the spamers is using your server for emails relying, hence the continuous sending of data won't stop. Relaying can be disabled by 2 methods.. 1- disable the SMTP service (if you don’t have exchange) 2- Configure your exchange server to stop relaying Check this: http://www.microsoft.com/technet/security/bulletin/ms01-037.asp Hope that helps // RM

        1 Reply Last reply
        0
        • M Michael P Butler

          Anybody know of any cheap or free apps that will tell me exactly what ips and sites may internet connection is accessing. I'm looking for something to log exactly what my server is talking to. Partly to determine if I've got any spyware installed and what it might be sending. Any suggestions for books or articles which would help me in learning more about tcp/ip communications. I'd quiet like to have a go at writing an app similar to what I described. cheers, Michael :-)

          P Offline
          P Offline
          Pavlos Touboulidis
          wrote on last edited by
          #7

          If you don't require a GUI app, you can always use the netstat.exe. Try netstat /? for help. netstat -n to get ips. If you need a log file, you could try a batch file like this: @echo off :loop netstat -n|find ":" >>log.txt sleep 30000 goto loop Of course, you'll have to create a utility named 'sleep', that takes one command line parameter (milliseconds) and calls the WINAPI Sleep(theparam). Not the best solution but it works ;)

          G 1 Reply Last reply
          0
          • P Pavlos Touboulidis

            If you don't require a GUI app, you can always use the netstat.exe. Try netstat /? for help. netstat -n to get ips. If you need a log file, you could try a batch file like this: @echo off :loop netstat -n|find ":" >>log.txt sleep 30000 goto loop Of course, you'll have to create a utility named 'sleep', that takes one command line parameter (milliseconds) and calls the WINAPI Sleep(theparam). Not the best solution but it works ;)

            G Offline
            G Offline
            Giles
            wrote on last edited by
            #8

            Thats a very cunning way of logging connections. Its one of those clever things that is blindingly obvious. Nice.:-D Giles

            1 Reply Last reply
            0
            • M Michael P Butler

              Anybody know of any cheap or free apps that will tell me exactly what ips and sites may internet connection is accessing. I'm looking for something to log exactly what my server is talking to. Partly to determine if I've got any spyware installed and what it might be sending. Any suggestions for books or articles which would help me in learning more about tcp/ip communications. I'd quiet like to have a go at writing an app similar to what I described. cheers, Michael :-)

              C Offline
              C Offline
              cdr
              wrote on last edited by
              #9

              at the command prompt: netstat -an 5 will update a list of active IP connections every 5 seconds. You will find the worst offenders to be: a) real audio b) all IM apps --- cdr@encapsule.com http://www.encapsule.com novus ordo seclorum

              Z 1 Reply Last reply
              0
              • M Michael P Butler

                Anybody know of any cheap or free apps that will tell me exactly what ips and sites may internet connection is accessing. I'm looking for something to log exactly what my server is talking to. Partly to determine if I've got any spyware installed and what it might be sending. Any suggestions for books or articles which would help me in learning more about tcp/ip communications. I'd quiet like to have a go at writing an app similar to what I described. cheers, Michael :-)

                M Offline
                M Offline
                Mark Otway
                wrote on last edited by
                #10

                Get ZoneAlarm from ZoneLabs (www.zonelabs.com). They have a superb free firewall, so you can know exactly what is accessing your connection and when. ________________________ http://www.webreaper.net

                H 1 Reply Last reply
                0
                • M Mark Otway

                  Get ZoneAlarm from ZoneLabs (www.zonelabs.com). They have a superb free firewall, so you can know exactly what is accessing your connection and when. ________________________ http://www.webreaper.net

                  H Offline
                  H Offline
                  Harold Bamford
                  wrote on last edited by
                  #11

                  Learning about such things is critical to surviving the internet experience. Your best starting point is at grc.com. He has a LOT of stuff on spyware, trojans, firewalls, and the like along with a number of utilities to make preliminary tests on your machine. A real eye opener! And I heartily second the endorsement for ZoneAlarm!

                  J 1 Reply Last reply
                  0
                  • H Harold Bamford

                    Learning about such things is critical to surviving the internet experience. Your best starting point is at grc.com. He has a LOT of stuff on spyware, trojans, firewalls, and the like along with a number of utilities to make preliminary tests on your machine. A real eye opener! And I heartily second the endorsement for ZoneAlarm!

                    J Offline
                    J Offline
                    John Fisher
                    wrote on last edited by
                    #12

                    I use ZoneAlarm at home, and recently I've seen my cable modem flashing the activity light while I'm doing nothing -- even when ZoneAlarm has all internet activity locked down. ZoneAlaram doesn't know what's going on there, and turning off my computer (modem stays on) stops the activity. Does anyone know of a way to figure this out (and prevent it)?

                    P 1 Reply Last reply
                    0
                    • C cdr

                      at the command prompt: netstat -an 5 will update a list of active IP connections every 5 seconds. You will find the worst offenders to be: a) real audio b) all IM apps --- cdr@encapsule.com http://www.encapsule.com novus ordo seclorum

                      Z Offline
                      Z Offline
                      Zyxil
                      wrote on last edited by
                      #13

                      b) all IM apps he he he,, i got into the habit of leaving icq on at work (where most ppl don't have unrestricted net access), in one month i built up 39mb of log files,, more than a quarter of the organizations log data was mine!! in an organization of 3000 users, ;P needless to say, the network security guys were annoyed with me... icq was like 90% of the traffic... -John

                      1 Reply Last reply
                      0
                      • J John Fisher

                        I use ZoneAlarm at home, and recently I've seen my cable modem flashing the activity light while I'm doing nothing -- even when ZoneAlarm has all internet activity locked down. ZoneAlaram doesn't know what's going on there, and turning off my computer (modem stays on) stops the activity. Does anyone know of a way to figure this out (and prevent it)?

                        P Offline
                        P Offline
                        Pavlos Touboulidis
                        wrote on last edited by
                        #14

                        Could it be that you have ZoneAlarm's auto-check-for-updates enabled? Don't think so but who knows... :)

                        J 1 Reply Last reply
                        0
                        • P Pavlos Touboulidis

                          Could it be that you have ZoneAlarm's auto-check-for-updates enabled? Don't think so but who knows... :)

                          J Offline
                          J Offline
                          John Fisher
                          wrote on last edited by
                          #15

                          I finally looked at things really hard last night. As far as the computer was concerned, nothing was going on, but the cable modem's activity light was still blinking rather consistently. So, I did another test. I rebooted the computer, and during the whole process, I watched the activity light. It kept on going just as strong as it was before -- even during the system wake-up before the boot even begins. Not knowing for sure how cable modem systems work, I'm of the impression that they are similar to etherlink networks where the card flashes the activity light even when the message is for some other computer. Apparently I had been the only one on our cable segment for a while, and when some other people started using it, the behaviour of our activity light changed. :confused: John

                          1 Reply Last reply
                          0
                          Reply
                          • Reply as topic
                          Log in to reply
                          • Oldest to Newest
                          • Newest to Oldest
                          • Most Votes


                          • Login

                          • Don't have an account? Register

                          • Login or register to search.
                          • First post
                            Last post
                          0
                          • Categories
                          • Recent
                          • Tags
                          • Popular
                          • World
                          • Users
                          • Groups