yes Remote Procedure Call AAAAAAACK!
goto the link I posted above for FALLOUT, there is a DCOM-bobulator app to automatically close DCOM components of winnt-2k-xp or just close dcom services manually.
Also, I wrote a batch that runs at startup to close all of win 2k/xp default shares, which the OS opens for networking purposes. If you are not linked to another pc where you are trying to share files explicitly, you can close these.
If you have 2k/xp, start a command window and type NET SHARE<enter>
you will see a share open for each physical drive and then ipc and admin. so it will look like
LETTER$ (for each physical drive)
ADMIN$
IPC$
use a bat file at startup to close the default shares. look in the net share help (NET SHARE /?) for the DELETE syntax. DELETE will close the share this session but reboot will automatically re-enable the shares. I actually made a vb6 exe which prompts me at startup to close the shares or not. If no, VB app exits, no bat run--If YES vb app calls batch to close all shares, vb app exits, batch re-reports to screen the net share status. When there are no open shares, NET SHARE will report "NO ENTRIES IN LIST", otherwise it will list the share name. Yes I am paranoid but I am not having all the problems I read about here and elsewhere concerning hacking etc etc
Good luck
-RUST-