Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
use warnings; use strict; use Win32::NetAdmin qw(GetServers SV_TYPE_ALL ); use Win32::TieRegistry qw(KEY_READ); use Data::Dumper; use Fcntl; my %bad_stuff = ( KaZaA => qr/kazaa/i, Gnucleus => qr/gnucleus/i, Napster => qr/napster/i, #Most of these are guessw +ork, BearShare => qr/bearshare/i, #pulled from http://www.g +nutelliums.com/ LimeWire => qr/limewire/i, Morpheus => qr/morpheus/i, Phex => qr/phex/i, Swapper => qr/swapper/i, XoloX => qr/xolox/i, eDonkey => qr/edonkey/i, BitTorrent => qr/bittorrent/i, iMesh => qr/imesh/i, "Comet Systems" => qr/comet\s*systems/i, "Gator.com" => qr/gator/i, ); $Registry->Delimiter("/"); my $domain; ($domain = Win32::DomainName) or die "Unable to obtain the domain name +"; my %machines; my %installed_software; GetServers("", $domain, SV_TYPE_ALL, \%machines) or die "GetServers fa +iled: $!\n"; foreach my $machine (sort keys %machines) { #print "Attempting to connect to registry on $machine\n"; my $remKey= $Registry->Connect($machine, "HKEY_USERS/", { Acce +ss=>KEY_READ, Delimiter=>"/" } ); unless($remKey) { warn "Couldn't connect to $machine: $^E\n"; next; } foreach my $user_sid ($remKey->SubKeyNames) { next if($user_sid =~ /_classes$/i); #There's always +a sid....._classes key - skip it. my $user_key = $Registry->Connect($machine, "HKEY_USER +S/$user_sid/SOFTWARE/", { Access=>KEY_READ, Delimiter=>"/" } ); unless($user_key) { warn "Couldn't get a software key for sid $use +r_sid on machine $machine\n"; next; } my $software_key = $Registry->Connect($machine, "HKEY_ +LOCAL_MACHINE/SOFTWARE/", { Access=>KEY_READ, Delimiter=>"/" } ); unless($software_key) { warn "Couldn't get a software key from HKEY_LO +CAL_MACHINE on machine $machine\n"; next; } foreach my $subkey ($user_key->SubKeyNames, $software_ +key->SubKeyNames) { foreach my $software (keys %bad_stuff) { if($subkey =~ $bad_stuff{$software}) { next if($installed_software{$m +achine.$software}++); print "Machine $machine could +have $software installed\n"; } } } } }

In reply to Scan Win32 Machines in domain for P2P software by davis

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-04-24 01:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found