Skip to content

Commit

Permalink
Merge pull request #11 from markgacoka/v1.2.4
Browse files Browse the repository at this point in the history
Import r3c0n.engines bugfix
  • Loading branch information
markgacoka authored Mar 6, 2022
2 parents bb445e0 + 1468b35 commit ac64614
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion r3c0n/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Version of the r3c0n package
__version__ = "1.2.3"
__version__ = "1.2.4"
4 changes: 2 additions & 2 deletions r3c0n/__main__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import sys
from r3c0nutils.engines import anubis
from r3c0n.engines import anubis
import r3c0nutils.viewer as viewer

def main():
if len(sys.argv) > 1:
subdomains = anubis.anubis_script(str(sys.argv[1]))
viewer.show(subdomains)
else:
help = 'HELP SECTION'
help = 'Usage: r3c0n -d example.com --engines=all'
viewer.show(help)

if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# The text of the README file
README = (PATH / "README.md").read_text()

VERSION="1.2.3"
VERSION="1.2.4"
DESCRIPTION="A tool for performing reconnaissance on web targets in Python."
LONG_DESCRIPTION="A tool for finding subdomain and directory information for various web targets."

Expand Down

0 comments on commit ac64614

Please sign in to comment.