Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions hash-id.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# encoding: utf-8
# Hash Identifier
# By Zion3R
# www.Blackploit.com
# [email protected]

from builtins import input
from sys import argv, exit
from sys import argv

version = 1.2
VERSION = 1.3

logo=''' #########################################################################
LOGO = f''' #########################################################################
# __ __ __ ______ _____ #
# /\ \/\ \ /\ \ /\__ _\ /\ _ `\ #
# \ \ \_\ \ __ ____ \ \ \___ \/_/\ \/ \ \ \/\ \ #
# \ \ _ \ /'__`\ / ,__\ \ \ _ `\ \ \ \ \ \ \ \ \ #
# \ \ \ \ \/\ \_\ \_/\__, `\ \ \ \ \ \ \_\ \__ \ \ \_\ \ #
# \ \_\ \_\ \___ \_\/\____/ \ \_\ \_\ /\_____\ \ \____/ #
# \/_/\/_/\/__/\/_/\/___/ \/_/\/_/ \/_____/ \/___/ v'''+str(version)+''' #
# \/_/\/_/\/__/\/_/\/___/ \/_/\/_/ \/_____/ \/___/ v{VERSION} #
# By Zion3R #
# www.Blackploit.com #
# [email protected] #
Expand Down Expand Up @@ -552,7 +552,7 @@ def WhirlpoolHMAC(hash):
jerar.append("122080")


print(logo)
print(LOGO)
try:
first = str(argv[1])
except:
Expand Down