| Home | Trees | Indices | Help |
|
|---|
|
|
Author: Andres Riancho ( andres.riancho@gmail.com )
|
|||
| __init__(self) | ||
|
discover(self,
fuzzableRequest) GET's local files one by one until done. |
||
|
_generateReport(self) Generates a report based on: |
||
|
_compareDir(self,
arg,
dir,
flist) This function is the callback function called from os.path.walk, from the python help function: walk(top, func, arg) Directory tree walk with callback function. |
||
|
_checkContent(self,
response,
file) Check if the contents match. |
||
|
_easyGet(self,
url) An easy way to get a URL using HEAD or GET depending on available methods. |
||
|
getOptionsXML(self) This method returns a XML containing the Options that the plugin has. |
||
|
setOptions(self,
optionsMap) This method sets all the options that are configured using the user interface generated by the framework using the result of getOptionsXML(). |
||
| getPluginDeps(self) | ||
|
_verifyHeadEnabled(self,
url) Verifies if the requested URL permits a HEAD request. |
||
| _headEnabled(self) | ||
| getLongDesc(self) | ||
|
Inherited from Inherited from Inherited from Inherited from |
|||
|
|||
|
|
|
This function is the callback function called from os.path.walk, from the python
help function:
walk(top, func, arg)
Directory tree walk with callback function.
For each directory in the directory tree rooted at top (including top
itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
dirname is the name of the directory, and fnames a list of the names of
the files and subdirectories in dirname (excluding '.' and '..'). func
may modify the fnames list in-place (e.g. via del or slice assignment),
and walk will only recurse into the subdirectories whose names remain in
fnames; this can be used to implement a filter, or to impose a specific
order of visiting. No semantics are defined for, or required of, arg,
beyond that arg is always passed to func. It can be used, e.g., to pass
a filename pattern, or a mutable object designed to accumulate
statistics. Passing None for arg is common.
|
|
|
|
|
|
Verifies if the requested URL permits a HEAD request. This was saved inside the KB by the plugin allowedMethods @return : Sets self._head to the correct value, nothing is returned. |
|
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0alpha3 on Thu Oct 18 19:41:33 2007 | http://epydoc.sourceforge.net |