Skip to content

Commit

Permalink
Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
p0dalirius committed Nov 30, 2022
1 parent 36ac2d6 commit 361b332
Show file tree
Hide file tree
Showing 64 changed files with 10,390 additions and 8,406 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ clean:
@rm -rf `find ./ -type d -name "*__pycache__"`
@rm -rf ./build/ ./dist/ ./coercer.egg-info/

documentation:
@cd ./documentation/; pdoc --html ../coercer/ --force
docs:
@python3 -m pip install pdoc
@echo "[$(shell date)] Generating docs ..."
@python3 -m pdoc -d markdown -o ./documentation/ ./coercer/
@echo "[$(shell date)] Done!"

install: build
python3 setup.py install
Expand Down
9 changes: 9 additions & 0 deletions coercer/core/MethodFilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ def __init__(self, filter_method_name=None, filter_protocol_name=None):
self.filter_protocol_name = filter_protocol_name

def matches_filter(self, instance):
"""
Function matches_filter
Parameters:
?:instance
Return:
bool:outcome
"""
outcome = True
#
if self.filter_method_name is not None:
Expand Down
9 changes: 9 additions & 0 deletions coercer/core/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@


def find_and_load_coerce_methods(debug=False):
"""
Function find_and_load_coerce_methods()
Parameters:
bool:debug Enable or disable debug output
Returns:
list:coerce_methods
"""
coerce_methods = {}
search_dir = os.path.dirname(__file__) + os.path.sep + ".." + os.path.sep + "methods"
if debug:
Expand Down
244 changes: 244 additions & 0 deletions documentation/coercer.html

Large diffs are not rendered by default.

242 changes: 242 additions & 0 deletions documentation/coercer/methods.html

Large diffs are not rendered by default.

251 changes: 251 additions & 0 deletions documentation/coercer/network.html

Large diffs are not rendered by default.

595 changes: 595 additions & 0 deletions documentation/coercer/network/DCERPCSession.html

Large diffs are not rendered by default.

346 changes: 346 additions & 0 deletions documentation/coercer/network/DCERPCSessionError.html

Large diffs are not rendered by default.

521 changes: 521 additions & 0 deletions documentation/coercer/network/Listener.html

Large diffs are not rendered by default.

456 changes: 456 additions & 0 deletions documentation/coercer/network/authentications.html

Large diffs are not rendered by default.

621 changes: 621 additions & 0 deletions documentation/coercer/network/smb.html

Large diffs are not rendered by default.

480 changes: 480 additions & 0 deletions documentation/coercer/network/utils.html

Large diffs are not rendered by default.

249 changes: 249 additions & 0 deletions documentation/coercer/protocols.html

Large diffs are not rendered by default.

963 changes: 963 additions & 0 deletions documentation/coercer/protocols/MS_DFSNM.html

Large diffs are not rendered by default.

2,190 changes: 2,190 additions & 0 deletions documentation/coercer/protocols/MS_EFSR.html

Large diffs are not rendered by default.

834 changes: 834 additions & 0 deletions documentation/coercer/protocols/MS_FSRVP.html

Large diffs are not rendered by default.

536 changes: 536 additions & 0 deletions documentation/coercer/protocols/MS_RPRN.html

Large diffs are not rendered by default.

248 changes: 248 additions & 0 deletions documentation/coercer/utils.html

Large diffs are not rendered by default.

736 changes: 736 additions & 0 deletions documentation/coercer/utils/RPCProtocol.html

Large diffs are not rendered by default.

307 changes: 307 additions & 0 deletions documentation/coercer/utils/Reporter.html

Large diffs are not rendered by default.

493 changes: 493 additions & 0 deletions documentation/coercer/utils/smb.html

Large diffs are not rendered by default.

169 changes: 0 additions & 169 deletions documentation/html/coercer/core/MethodFilter.html

This file was deleted.

Loading

0 comments on commit 361b332

Please sign in to comment.