December 2017
Intermediate to advanced
364 pages
7h 30m
English
This includes basic checks for WordPress security misconfigurations. Some of them include:
- name: update the file permissions file: path: "{{ WordPress_install_directory }}" recurse: yes owner: "{{ new_user_name }}" group: www-data - name: updating file and directory permissions shell: "{{ item }}" with_items: - "find {{ WordPress_install_directory }} -type d -exec chmod 755 {} \;" - "find {{ WordPress_install_directory }} -type f -exec chmod 644 {} \;"
# Username enumeration block if ($args ~ "^/?author=([0-9]*)"){ return 403; } # Attachment enumeration block if ($query_string ...