{% extends 'base/base.html' %} {% load static %} {% block title %} Add New Wordlist {% endblock title %} {% block custom_js_css_link %} {% endblock custom_js_css_link %} {% block breadcrumb_title %} {% endblock breadcrumb_title %} {% block page_title %} Add New Wordlist for Bruteforce {% endblock page_title %} {% block main_content %}

Wordlist can be used for directory bruteforce or subdomain bruteforce. Instructions on how to use the wordlist are found here

{% csrf_token %}
{{ form.name }}
{{ form.short_name }} {% if form.errors.short_name %}
{{ form.errors.short_name|striptags }}
{% endif %}

Please keep the short names without spaces, like my-wordlist or my_wordlist. The short names will be later used to reference wordlist in the YAML settings.

Select the wordlist file

Your wordlist must be a *.txt file and wordlists must be separated by a new line.

{{ form.upload_file }}
{% endblock main_content %} {% block page_level_script %} {% endblock page_level_script %}