... | ... | @@ -156,6 +156,7 @@ instance.call( 'framework.lsmod' ) |
|
|
|
|
|
Which will return something like:
|
|
|
|
|
|
```
|
|
|
[
|
|
|
[ 0] {
|
|
|
:name => "Code injection",
|
... | ... | @@ -245,6 +246,7 @@ Which will return something like: |
|
|
},
|
|
|
[...and many more...]
|
|
|
]
|
|
|
```
|
|
|
|
|
|
### <a id="retrieve_plugins" href="#retrieve_plugins">Plugins (framework.lsplug)</a>
|
|
|
|
... | ... | @@ -254,6 +256,7 @@ To retrieve all available plugins |
|
|
instance.call( 'framework.lsplug' )
|
|
|
```
|
|
|
|
|
|
```
|
|
|
[
|
|
|
[ 0] {
|
|
|
:name => "Resolver",
|
... | ... | @@ -283,6 +286,7 @@ instance.call( 'framework.lsplug' ) |
|
|
},
|
|
|
[...and many more...]
|
|
|
]
|
|
|
```
|
|
|
|
|
|
<a id="options" href="#options">Set the options you want</a>
|
|
|
------------------------------------
|
... | ... | @@ -315,6 +319,7 @@ You can use any of the available options that will be presented later in the ``` |
|
|
**Default**: <n/a>
|
|
|
|
|
|
To set the URL of the site you want to audit:
|
|
|
|
|
|
```ruby
|
|
|
p instance.call( 'opts.url=', 'http://demo.testfire.net' )
|
|
|
#=> "http://demo.testfire.net"
|
... | ... | |