Skip to content

Commit

Permalink
Merge pull request #90 from H4ckForJob/dev
Browse files Browse the repository at this point in the history
[+] Dev分支合并
  • Loading branch information
H4ckForJob authored Oct 24, 2024
2 parents 5e2394d + 448b47d commit 020eec1
Show file tree
Hide file tree
Showing 6 changed files with 623 additions and 601 deletions.
13 changes: 10 additions & 3 deletions dirmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@Author: xxlin
@LastEditors: xxlin
@Date: 2019-04-10 13:27:59
@LastEditTime: 2019-05-01 17:57:11
@LastEditTime: 2023-07-25 15:56:04
'''

import os
Expand All @@ -26,7 +26,10 @@ def main():
"""
main fuction of dirmap
"""

# Make sure the version of python you are using is high enough
if sys.version_info < (3, 8):
outputscreen.error("Sorry, dirmap requires Python 3.8 or higher\n")
sys.exit(1)
# anyway output thr banner information
banner()

Expand All @@ -42,7 +45,11 @@ def main():
initOptions(cmdLineOptions)

# run!
run()
try:
run()
except KeyboardInterrupt:
outputscreen.success("[+] exit")
sys.exit(1)

if __name__ == "__main__":
main()
Binary file modified doc/dirmap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 020eec1

Please sign in to comment.