예제 #1
0
def hashToMD5crackDotCom(argv=None):
    ''' 
        Method that checks if the given hash is stored in the md5crack.com.

        :param argv:    hash to verify.

    '''
    me = MaltegoTransform(argv)

    # Recovering the phone value
    try:
        query = me.getVar("@value")
    except:
        query = me.getValue()

    newEntities = md5crack.checkIfHashIsCracked(hash=query)

    # This returns a dictionary like:
    """ 
        [
          {
            "attributes": [
              {
                "attributes": [], 
                "type": "i3visio.text", 
                "value": "DE"
              }
            ], 
            "type": "i3visio.location.country", 
            "value": "Germany"
          }, 
          {
            "attributes": [], 
            "type": "i3visio.text", 
            "value": "1&1 Internet AG"
          }, 
          {
            "attributes": [], 
            "type": "i3visio.ipv4", 
            "value": "217.160.129.99"
          }, 
          {
            "attributes": [], 
            "type": "i3visio.location.geo", 
            "value": "51, 9"
          }
        ]
    """

    # Adding the new entities
    me.addListOfEntities(newEntities)

    # Returning the output text...
    me.returnOutput()
예제 #2
0
def hashToMD5crackDotCom(argv=None):
    ''' 
        Method that checks if the given hash is stored in the md5crack.com.

        :param argv:    hash to verify.

    '''
    me = MaltegoTransform(argv)
    
    # Recovering the phone value
    try:
        query = me.getVar("@value")
    except:
        query = me.getValue()       

    newEntities = md5crack.checkIfHashIsCracked(hash=query)

    # This returns a dictionary like:
    """ 
        [
          {
            "attributes": [
              {
                "attributes": [], 
                "type": "i3visio.text", 
                "value": "DE"
              }
            ], 
            "type": "i3visio.location.country", 
            "value": "Germany"
          }, 
          {
            "attributes": [], 
            "type": "i3visio.text", 
            "value": "1&1 Internet AG"
          }, 
          {
            "attributes": [], 
            "type": "i3visio.ipv4", 
            "value": "217.160.129.99"
          }, 
          {
            "attributes": [], 
            "type": "i3visio.location.geo", 
            "value": "51, 9"
          }
        ]
    """

    # Adding the new entities
    me.addListOfEntities(newEntities)

    # Returning the output text...
    me.returnOutput()
예제 #3
0
                        '--query',
                        metavar='<hash>',
                        action='store',
                        help='query to be performed to md5crack.com.',
                        required=True)
    parser.add_argument('-a',
                        '--api_key',
                        action='store',
                        help='API key in md5crack.com to be used.',
                        required=False,
                        default=None)

    groupAbout = parser.add_argument_group(
        'About arguments',
        'Showing additional information about this program.')
    groupAbout.add_argument('-h',
                            '--help',
                            action='help',
                            help='shows this help and exists.')
    groupAbout.add_argument(
        '--version',
        action='version',
        version='%(prog)s 0.1.0',
        help='shows the version of the program and exists.')

    args = parser.parse_args()

    print json.dumps(md5crack_com.checkIfHashIsCracked(hash=args.query,
                                                       api_key=args.api_key),
                     indent=2)
예제 #4
0
#	This program is distributed in the hope that it will be useful,
#	but WITHOUT ANY WARRANTY; without even the implied warranty of
#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#	GNU General Public License for more details.
#
#	You should have received a copy of the GNU General Public License
#	along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
##################################################################################

import argparse

import osrframework.thirdparties.md5crack_com.checkIfHashIsCracked as md5crack_com

if __name__ == "__main__":
	parser = argparse.ArgumentParser(description='A library that wraps a search onto md5crack.com.', prog='checkIfHashIsCracked.py', epilog="NOTE: if not provided, the API key will be searched in the config_api_keys.py file.", add_help=False)
	# Adding the main options
	# Defining the mutually exclusive group for the main options
	parser.add_argument('-q', '--query', metavar='<hash>', action='store', help='query to be performed to md5crack.com.', required=True)		
	parser.add_argument('-a', '--api_key', action='store', help='API key in md5crack.com to be used.', required=False, default=None)
	
	groupAbout = parser.add_argument_group('About arguments', 'Showing additional information about this program.')
	groupAbout.add_argument('-h', '--help', action='help', help='shows this help and exists.')
	groupAbout.add_argument('--version', action='version', version='%(prog)s 0.1.0', help='shows the version of the program and exists.')

	args = parser.parse_args()		
	
	print json.dumps(md5crack_com.checkIfHashIsCracked(hash=args.query, api_key=args.api_key), indent=2)