美文网首页Ethical Hackers
hashID:hash算法识别工具

hashID:hash算法识别工具

作者: 一点也不想吃辣 | 来源:发表于2017-08-24 22:53 被阅读21次

    参考:
    http://bobao.360.cn/learning/detail/4312.html (主要参考)
    http://psypanda.github.io/hashID/ (工具官网)
    更多参考:
    http://pythonhosted.org/passlib/index.html
    http://openwall.info/wiki/john
    http://openwall.info/wiki/john/sample-hashes
    http://hashcat.net/wiki/doku.php?id=example_hashes

    安装:
    $ pip install hashid
    $ pip install --upgrade hashid
    $ pip uninstall hashid
    
    $ sudo apt-get install python3 git
    $ git clone https://github.com/psypanda/hashid.git
    $ cd hashid
    $ sudo install -g 0 -o 0 -m 0644 doc/man/hashid.7 /usr/share/man/man7/
    $ sudo gzip /usr/share/man/man7/hashid.7
    
    使用:
    $ ./hashid.py '$P$8ohUJ.1sdFw09/bMaAQPTGDNi2BIUt1'
    Analyzing '$P$8ohUJ.1sdFw09/bMaAQPTGDNi2BIUt1'
    [+] Wordpress ≥ v2.6.2
    [+] Joomla ≥ v2.5.18
    [+] PHPass' Portable Hash
     
    $ ./hashid.py -mj '$racf$*AAAAAAAA*3c44ee7f409c9a9b'
    Analyzing '$racf$*AAAAAAAA*3c44ee7f409c9a9b'
    [+] RACF [Hashcat Mode: 8500][JtR Format: racf]
     
    $ ./hashid.py hashes.txt
    --File 'hashes.txt'--
    Analyzing '*85ADE5DDF71E348162894C71D73324C043838751'
    [+] MySQL5.x
    [+] MySQL4.1
    Analyzing '$2a$08$VPzNKPAY60FsAbnq.c.h5.XTCZtC1z.j3hnlDFGImN9FcpfR1QnLq'
    [+] Blowfish(OpenBSD)
    [+] Woltlab Burning Board 4.x
    [+] bcrypt
    --End of file 'hashes.txt'--
    

    相关文章

      网友评论

      本文标题:hashID:hash算法识别工具

      本文链接:https://www.haomeiwen.com/subject/ctsydxtx.html