Projects STRLCPY PCredz Commits 05ae40f8
🤬
  • ■ ■ ■ ■ ■ ■
    Pcredz
    1 1  #! /usr/bin/env python
    2  -# Pcredz 0.9
     2 +# Pcredz 1.0.0
    3 3  # Created by Laurent Gaffie
    4 4  #
    5 5  # This program is free software: you can redistribute it and/or modify
    skipped 16 lines
    22 22   exit()
    23 23  import logging
    24 24  import argparse
    25  -#import string
    26 25  import os
    27 26  import re
    28 27  import socket
    skipped 6 lines
    35 34  from threading import Thread
    36 35   
    37 36  def ShowWelcome():
    38  - Message = 'Pcredz 0.9\nAuthor: Laurent Gaffie\nPlease send bugs/comments/pcaps to: [email protected]\nThis script will extract NTLM (http,ldap,smb,sql,etc), Kerberos,\nFTP, HTTP Basic and credit card data from a given pcap file or from a live interface.\n'
     37 + Message = 'Pcredz 1.0.0\nAuthor: Laurent Gaffie\nPlease send bugs/comments/pcaps to: [email protected]\nThis script will extract NTLM (http,ldap,smb,sql,etc), Kerberos,\nFTP, HTTP Basic and credit card data from a given pcap file or from a live interface.\n'
    39 38   print Message
    40 39   
    41  -parser = argparse.ArgumentParser(description='Pcredz 0.9\nAuthor: Laurent Gaffie')
     40 +parser = argparse.ArgumentParser(description='Pcredz 1.0.0\nAuthor: Laurent Gaffie')
    42 41  m_group=parser.add_mutually_exclusive_group()
    43 42  m_group.add_argument('-f', type=str, dest="fname", default=None, help="Pcap file to parse")
    44 43  m_group.add_argument('-d', type=str, dest="dir_path", default=None, help="Pcap directory to parse recursivly")
    skipped 636 lines
    681 680   
    682 681  Run()
    683 682   
    684  - 
    685  - 
Please wait...
Page is in error, reload to recover