Sha256: bc4a3380e8c805a7f58def62c34241f4c7146d93ef6a58521a144e9ea1121432

Contents?: true

Size: 1.02 KB

Versions: 14

Compression:

Stored size: 1.02 KB

Contents

<%=
    if vector.respond_to?( :source ) && !vector.source.to_s.empty?
        code_highlight( vector.source, :html, anchor_id: "#{id}-vector-source" )
    end
%>

<table class="table">
    <tr>
        <th>Type</th>
        <th>In</th>
        <th>Action</th>

        <% if vector.respond_to? :inputs %>
        <th>Default inputs</th>
        <th>Updated inputs</th>
        <% end %>
    </tr>
    <tr>
        <td><code><%= vector.type %></code></td>
        <td>
            <a href="<%= escapeHTML vector.url %>">
                <%= escapeHTML vector.url %>
            </a>
        </td>
        <td>
            <a href="<%= escapeHTML vector.action %>">
                <%= escapeHTML vector.action %>
            </a>
        </td>

        <% if vector.respond_to? :inputs %>
        <td>
            <%= erb 'shared/hash.erb', object: vector.default_inputs, code: true %>
        </td>
        <td>
            <%= erb 'shared/hash.erb', object: vector.inputs, code: true %>
        </td>
        <% end %>
    </tr>
</table>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
arachni-1.6.1.3 components/reporters/html/default/issue/vector.erb
arachni-1.6.1.2 components/reporters/html/default/issue/vector.erb
arachni-1.6.1.1 components/reporters/html/default/issue/vector.erb
arachni-1.6.1 components/reporters/html/default/issue/vector.erb
arachni-1.6.0 components/reporters/html/default/issue/vector.erb
arachni-1.5.1 components/reporters/html/default/issue/vector.erb
arachni-1.5 components/reporters/html/default/issue/vector.erb
arachni-1.4 components/reporters/html/default/issue/vector.erb
arachni-1.3.2 components/reporters/html/default/issue/vector.erb
arachni-1.3.1 components/reporters/html/default/issue/vector.erb
arachni-1.3 components/reporters/html/default/issue/vector.erb
arachni-1.2.1 components/reporters/html/default/issue/vector.erb
arachni-1.2 components/reporters/html/default/issue/vector.erb
arachni-1.1 components/reporters/html/default/issue/vector.erb