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