Skip to content

Commit

Permalink
protoscan small error and added dnspython to help
Browse files Browse the repository at this point in the history
  • Loading branch information
fportantier committed Jul 27, 2018
1 parent 6734cce commit 64bc55b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pip install -e .

for cmd in $(whereis habu | tr " " "\n" | grep "habu\." | grep -v "/usr/")
for cmd in $(whereis habu | tr " " "\n" | grep "habu\.")
do
echo $cmd
$cmd --help > /dev/null
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Habu requires Python3 and the following packages:
- beautifulsoup4
- click
- cryptography
- dnspython
- lxml
- prompt\_toolkit
- pygments
Expand Down Expand Up @@ -1218,7 +1219,7 @@ Usage: habu.xor [OPTIONS]
Options:
-k TEXT Encryption key
-i FILENAME Input file
-o FILENAME Output file
-i FILENAME Input file (default: stdin)
-o FILENAME Output file (default: stdout)
--help Show this message and exit.
```
1 change: 1 addition & 0 deletions README_header.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Habu requires Python3 and the following packages:
- beautifulsoup4
- click
- cryptography
- dnspython
- lxml
- prompt\_toolkit
- pygments
Expand Down
2 changes: 1 addition & 1 deletion habu/cli/cmd_protoscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ def cmd_protoscan(ip, iface, timeout, all_protocols, verbose):


if __name__ == '__main__':
cmd_ipscan()
cmd_protoscan()
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='habu',
version='0.0.77',
version='0.0.79',
description='Python Network Hacking Toolkit',
long_description=readme,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -44,7 +44,7 @@
habu.crack.luhn=habu.cli.cmd_crack_luhn:cmd_crack_luhn
habu.crack.snmp=habu.cli.cmd_crack_snamp:cmd_crack_snmp
habu.ctfr=habu.cli.cmd_ctfr:cmd_ctfr
habu.cve.2018-9995=habu.cli.cmd_cve_2018_9995:cmd_cve_2018_9995
habu.cve.2018.9995=habu.cli.cmd_cve_2018_9995:cmd_cve_2018_9995
habu.dhcp.discover=habu.cli.cmd_dhcp_discover:cmd_dhcp_discover
habu.dhcp.starvation=habu.cli.cmd_dhcp_starvation:cmd_dhcp_starvation
habu.eicar=habu.cli.cmd_eicar:cmd_eicar
Expand Down

0 comments on commit 64bc55b

Please sign in to comment.