forked from WADComs/WADComs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new filters and changed contribute page
- Loading branch information
1 parent
6ed145b
commit 5da4427
Showing
51 changed files
with
591 additions
and
652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
Linux: | ||
label: Linux | ||
description: Command can be run on Linux. | ||
|
||
Windows: | ||
label: Windows | ||
description: Command can be run on Windows. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
Enumeration: | ||
label: Enumeration | ||
description: Command focuses on enumeration. | ||
|
||
Exploitation: | ||
label: Exploitation | ||
description: Command focuses on exploitation. | ||
|
||
Persistance: | ||
label: Persistance | ||
description: Command focuses on persistence. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,33 @@ | ||
<ul class="filter-list"> | ||
{% for attack_pair in site.data.attack_types %} | ||
{% assign attack_id = attack_pair[0] %} | ||
{% assign attack = attack_pair[1] %} | ||
{% if include.bin.attack_types contains attack_id %} | ||
<li><a href="{{ include.bin.url }}#{{ attack_id }}">{{ attack.label }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
|
||
{% for item_pair in site.data.items %} | ||
{% assign item_id = item_pair[0] %} | ||
{% assign item = item_pair[1] %} | ||
{% unless include.bin.items[item_id] %}{% continue %}{% endunless %} | ||
{% if include.bin.items contains item_id %} | ||
<li><a href="{{ include.bin.url }}#{{ item_id }}">{{ item.label }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
|
||
{% for service_pair in site.data.services %} | ||
{% assign service_id = service_pair[0] %} | ||
{% assign service = service_pair[1] %} | ||
{% if include.bin.services contains service_id %} | ||
<li><a href="{{ include.bin.url }}#{{ service_id }}">{{ service.label }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
|
||
{% for filter_pair in site.data.filters %} | ||
{% assign filter_id = filter_pair[0] %} | ||
{% assign filter = filter_pair[1] %} | ||
{% unless include.bin.filters[filter_id] %}{% continue %}{% endunless %} | ||
<li><a href="{{ include.bin.url }}#{{ filter_id }}">{{ filter.label }}</a></li> | ||
{% for OS_pair in site.data.OS %} | ||
{% assign OS_id = OS_pair[0] %} | ||
{% assign OS = OS_pair[1] %} | ||
{% if include.bin.OS contains OS_id %} | ||
<li><a href="{{ include.bin.url }}#{{ OS_id }}">{{ OS.label }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
<dl> | ||
{% for filter_pair in site.data.filters %} | ||
{% for filter_pair in site.data.services %} | ||
{% assign filter = filter_pair[1] %} | ||
<dt class="filter-name">{{ filter.label }}</dt> | ||
<dd>{{ filter.description | markdownify }}</dd> | ||
{% endfor %} | ||
|
||
{% for attack_pair in site.data.attack_types %} | ||
{% assign attack = attack_pair[1] %} | ||
<dt class="filter-name">{{ attack.label }}</dt> | ||
<dd>{{ attack.description | markdownify }}</dd> | ||
{% endfor %} | ||
|
||
{% for os_pair in site.data.OS %} | ||
{% assign os = os_pair[1] %} | ||
<dt class="filter-name">{{ os.label }}</dt> | ||
<dd>{{ os.description | markdownify }}</dd> | ||
{% endfor %} | ||
</dl> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.