mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 22:40:10 +01:00
9 lines
323 B
HTML
9 lines
323 B
HTML
<ul class="function-list">
|
|
{% for function in site.data.functions %}
|
|
{% assign function_name = function[0] %}
|
|
{% if include.bin.functions[function_name] %}
|
|
<li><a href="{{ include.bin.url }}#{{ function_name }}">{{ site.data.functions[function_name].label }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|