forked from andresriancho/w3af
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sha1hash
executable file
·63 lines (48 loc) · 1.55 KB
/
sha1hash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/python
'''
sha1hash.py
Copyright 2006 Andres Riancho
This file is part of w3af, w3af.sourceforge.net .
w3af is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
w3af 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 w3af; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
'''
from __future__ import print_function
import sha
import sys
import getopt
def usage():
print('w3af - sha1 hash calculator')
print('')
print('Options:')
print(' -h Print this help message.')
print(' -e String to be hashed.')
print('')
print('Example: sha1hash -e makeHash')
def main():
try:
opts, args = getopt.getopt(sys.argv[1:], "he:", ["help", "encode"])
except getopt.GetoptError:
# print help information and exit:
usage()
sys.exit(2)
encode = None
for o, a in opts:
if o in ("-e", "--encode"):
encode = a
if o in ("-h", "--help"):
usage()
sys.exit()
if encode is None:
usage()
sys.exit()
print( sha.new(encode).hexdigest() )
if __name__ == "__main__":
main()