Skip to content

Commit

Permalink
Added gitignore, cleaned up usage text
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKD committed Jan 1, 2013
1 parent f66fb82 commit b9dca3a
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 6 deletions.
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
*.py[cod]

# C extensions
*.so

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib
lib64

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox
nosetests.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject
8 changes: 2 additions & 6 deletions GooDork.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self,args):
with open("rc.goo") as f:
f.close()
except IOError,e:
sys.stderr.write("\n[!] Please supply either a rc.goo file or some commandline arguments for me to work with!")
sys.stderr.write("\n[!] Please supply either a rc.goo file or some commandline arguments for GooDork to work with!")
usage()
self.conf.parseRcFile("rc.goo")
#for key in self.conf.options:
Expand Down Expand Up @@ -51,11 +51,7 @@ def usage():
--in : supply an input file of urls to run gooDork on
--out: supply a path to an output file, to dump results to
--format: supply a format for the output file, default is goodork's
own output, options include
*XML
*CSV
*HTML
*JSON
own output, options include: (XML/CSV/HTML/JSON)
if there are any other format's you'd like give me a shout ;)
MISC
-v : specify the verbosity level
Expand Down

0 comments on commit b9dca3a

Please sign in to comment.