Skip to content

Commit

Permalink
Merge pull request #146 from jtpereyda/fix-manifest
Browse files Browse the repository at this point in the history
Fix manifest
  • Loading branch information
jtpereyda authored May 7, 2017
2 parents 8161820 + a37e082 commit 1fd6875
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 15 deletions.
32 changes: 20 additions & 12 deletions INSTALL.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,18 +81,26 @@ If you want to use process\_monitor.py, follow these additional steps:

3. Verify that process\_monitor.py runs:

::

C:\Users\IEUser\Downloads\boofuzz>python process_monitor.py
ERR> USAGE: process_monitor.py
[-c|--crash_bin FILENAME] filename to serialize crash bin class to
[-p|--proc_name NAME] process name to search for and attach to
[-i|--ignore_pid PID] PID to ignore when searching for target process
[-l|--log_level LEVEL] log level: default 1, increase for more verbosity
[--port PORT] TCP port to bind this agent to


C:\Users\IEUser\Downloads\boofuzz>
::

C:\Users\IEUser\Downloads\boofuzz>python process_monitor.py -h
usage: procmon [-h] [--debug] [--quiet] [-f STR] [-c FILENAME] [-i PID]
[-l LEVEL] [-p NAME] [-P PORT]

optional arguments:
-h, --help show this help message and exit
--debug toggle debug output
--quiet suppress all output
-f STR, --foo STR the notorious foo option
-c FILENAME, --crash_bin FILENAME
filename to serialize crash bin class to
-i PID, --ignore_pid PID
PID to ignore when searching for target process
-l LEVEL, --log_level LEVEL
log level: default 1, increase for more verbosity
-p NAME, --proc_name NAME
process name to search for and attach to
-P PORT, --port PORT TCP port to bind this agent to

\*\* Building pydasm on Windows requires the `Visual C++ Compiler for
Python 2.7`_.
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include *.txt
recursive-include boofuzz *.md
recursive-include boofuzz *.py
recursive-include examples *.py
recursive-include new_examples *.py
recursive-include examples *.md
recursive-include requests *.html
recursive-include requests *.py
recursive-include unit_tests *.feature
Expand Down
2 changes: 1 addition & 1 deletion unit_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

import unit_tests

unit_tests.blocks.run()
unit_tests.test_blocks.run()
unit_tests.legos.run()
unit_tests.primitives.run()
2 changes: 1 addition & 1 deletion unit_tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import blocks
import test_blocks
import legos
import primitives
File renamed without changes.

0 comments on commit 1fd6875

Please sign in to comment.