diff --git a/modules/generators/structured_content/hackerbot_config/authentication/authentication.pp b/modules/generators/structured_content/hackerbot_config/authentication/authentication.pp
new file mode 100644
index 000000000..e69de29bb
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/manifests/.no_puppet b/modules/generators/structured_content/hackerbot_config/authentication/manifests/.no_puppet
new file mode 100644
index 000000000..e69de29bb
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/secgen_local/local.rb b/modules/generators/structured_content/hackerbot_config/authentication/secgen_local/local.rb
new file mode 100644
index 000000000..d27b66c76
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/secgen_local/local.rb
@@ -0,0 +1,33 @@
+#!/usr/bin/ruby
+require_relative '../../../../../../lib/objects/local_hackerbot_config_generator.rb'
+
+class HB < HackerbotConfigGenerator
+
+ def initialize
+ super
+ self.module_name = 'Hackerbot Config Generator Integrity'
+ self.title = 'Integrity management: protecting integrity'
+
+ self.local_dir = File.expand_path('../../',__FILE__)
+ self.templates_path = "#{self.local_dir}/templates/"
+ self.config_template_path = "#{self.local_dir}/templates/integrity_lab.xml.erb"
+ self.html_template_path = "#{self.local_dir}/templates/labsheet.html.erb"
+
+ self.server_ip = []
+ end
+
+ def get_options_array
+ super + [['--server_ip', GetoptLong::REQUIRED_ARGUMENT]]
+ end
+
+ def process_options(opt, arg)
+ super
+ case opt
+ when '--server_ip'
+ self.server_ip << arg;
+ end
+ end
+
+end
+
+HB.new.run
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/secgen_metadata.xml b/modules/generators/structured_content/hackerbot_config/authentication/secgen_metadata.xml
new file mode 100644
index 000000000..4f58fadee
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/secgen_metadata.xml
@@ -0,0 +1,43 @@
+
+
+
+ Hackerbot config for a authentication lab
+ Z. Cliffe Schreuders
+ GPLv3
+ Generates a config file for a hackerbot for an integrity lab.
+ Topics covered: .
+
+ hackerbot_config
+ linux
+
+ accounts
+ flags
+ root_password
+
+
+
+
+
+
+ vagrant
+
+
+
+
+
+
+
+
+
+
+
+
+
+ puppet
+
+
+ hackerbot
+
+
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/shared/labsheet.html.erb b/modules/generators/structured_content/hackerbot_config/authentication/shared/labsheet.html.erb
new file mode 100644
index 000000000..72dab611a
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/shared/labsheet.html.erb
@@ -0,0 +1,29 @@
+
+
+ <%= self.title %>
+
+
+
+
+
+
+
+ <%= self.html_rendered %>
+
+
+
+
+
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/shared/license.md.erb b/modules/generators/structured_content/hackerbot_config/authentication/shared/license.md.erb
new file mode 100644
index 000000000..8e89ace31
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/shared/license.md.erb
@@ -0,0 +1,4 @@
+## License
+This lab by [*Z. Cliffe Schreuders*](http://z.cliffe.schreuders.org) at Leeds Beckett University is licensed under a [*Creative Commons Attribution-ShareAlike 3.0 Unported License*](http://creativecommons.org/licenses/by-sa/3.0/deed.en_GB).
+
+Included software source code is also licensed under the GNU General Public License, either version 3 of the License, or (at your option) any later version.
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/templates/authentication.md b/modules/generators/structured_content/hackerbot_config/authentication/templates/authentication.md
new file mode 100644
index 000000000..a755e866b
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/templates/authentication.md
@@ -0,0 +1,494 @@
+# Authentication
+
+## Getting started
+### VMs in this lab
+
+==Start these VMs== (if you haven't already):
+- hackerbot_server (leave it running, you don't log into this)
+- desktop
+
+### Your login details for the "desktop" and "server" VMs
+User: <%= $main_user %>
+Password: tiaspbiqe2r (**t**his **i**s **a** **s**ecure **p**assword **b**ut **i**s **q**uite **e**asy **2** **r**emember)
+
+You won't login to the hackerbot_server, but the VM needs to be running to complete the lab.
+
+### For marks in the module
+1. **You need to submit flags**. Note that the flags and the challenges in your VMs are different to other's in the class. Flags will be revealed to you as you complete challenges throughout the module. Flags look like this: ==flag{*somethingrandom*}==. Follow the link on the module page to submit your flags.
+2. **You need to document the work and your solutions in a Log Book**. This needs to include screenshots (including the flags) of how you solved each Hackerbot challenge and a writeup describing your solution to each challenge, and answering any "Log Book Questions". The Log Book will be submitted later in the semester.
+
+## Meet Hackerbot!
+
+
+This exercise involves interacting with Hackerbot, a chatbot who will attack your system. If you satisfy Hackerbot by completing the challenges she will reveal flags to you.
+
+**On the desktop VM:**
+
+==Open Pidgin and send some messages to Hackerbot:==
+
+- Try asking Hackerbot some questions
+- Send "help"
+- Send "list"
+- Send "hello"
+> If Hackerbot seems to be waiting/halted, simply say 'hi'
+
+Work through the below exercises, completing the Hackerbot challenges as noted.
+
+---
+
+## Introduction to authentication
+
+Authentication plays the important role of verifying an identity. For example, when someone gets into an airplane, sits down at a computer, picks up a mobile device, or uses a website, authentication is what is used to confirm that the person is who they claim to be. Authentication is an important first step *before* deciding how the system should act and what to allow.
+
+### Identity: users and groups
+
+Most computer systems have the concept of a user account. Although some devices such as mobile phones typically only have one user account, most modern computers can support having multiple users, each with their own identity. For example, a computer can have a separate account for each person that uses it, and if configured to do so may enable each user to have their own account preferences, and access to different resources.
+
+On Unix/Linux systems every user account is identified by a user ID number (UID), which is a 32-bit integer (whole number), and can have one or more user names, which are human readable strings of text.
+
+Open a terminal console.
+
+> One way to do this is to start Konsole from KDEMenu
+
+Assuming you have already logged in, you have already authenticated yourself on this system.
+
+==Log Book Question: When and how did you authenticate yourself?==
+
+Use these commands to find out about your current identity (or more accurately the identity of the software you are interacting with):
+
+```bash
+whoami
+
+groups
+
+id
+```
+
+==Make a note of your UID and username.==
+
+Note that your account is also a member of one or more groups. A primary group, and a list of other groups. Some Linux systems, such as Debian, create a new seperate primary group for each user, others such as openSUSE have a shared group (named "users") that all normal users are a member of. Similar to the relationship between user names and UIDs, each group has a group name, and a group ID (GID).
+
+Information about user accounts is stored in the /etc/passwd file, which typically all users can read.
+
+==View the /etc/passwd file:==
+
+```bash
+less /etc/passwd
+```
+
+==Find the line that describes your user account.==
+
+This line defines the username, password (well, it used to be stored here… we will come back to this), UID, primary group GID, full name, home directory, and shell for your account.
+
+Confirm this matches the information you recorded earlier.
+
+==Find the line that describes the root user account.==
+
+Where is the root user's home directory?
+
+> Press 'q' to quit less.
+
+==View the /etc/group file:==
+
+```bash
+less /etc/group
+```
+
+Groups are defined in this file, along with which users are members.
+
+==Which users are members of the "tftp" group?
+
+Remember, primary groups do not appear in this file; for example, on openSUSE the "users" group, which all normal users are a member of, may not appear in the /etc/group file.
+
+The "su" program can be used to run a program (usually a shell; that is, a command prompt) as another user, effectively enabling users to switch between user accounts at the command prompt.
+
+==Change your identity to root==. Run:
+
+```bash
+su -
+```
+
+Enter the root password.
+
+Use these commands to ==find out about your new identity:==
+
+```bash
+whoami
+
+groups
+
+id
+```
+
+==What is the UID of root? What does this mean about this user?==
+
+==Lab Book Question: What gives this user special privileges: the name of the account, or the UID?==
+
+==Use the useradd command to create a new user account "fred"==
+
+> Hint: refer to the man page for useradd, by running "man useradd".
+
+==Set a password for the user fred.==
+
+> Hint: `sudo passwd fred`
+
+==Change identity to fred.==
+
+> Hint: `su - fred`
+
+==Run:(after su)==
+
+```bash
+id
+```
+
+==Compare the result to the previous output.==
+
+==How does this compare to your other normal user account? What is different, and what about it is the same?==
+
+Run the single command "id" as root:
+
+```bash
+sudo id
+```
+
+==Log Book Question: What is the difference between sudo and su? Which is most likely protect against accidental damage and also log the commands used?==
+
+### Users and SSH
+
+==Log in to the server via ssh:==
+
+```bash
+ssh <%= $main_user %>@<%= $server_ip %>
+```
+
+==Display details of all users logged on to the system:==
+
+```bash
+who
+```
+
+==List all the processes run by all users:==
+
+```bash
+ps -eo user,comm
+```
+
+==List all the processes running as root:==
+
+```bash
+ps -o user,comm -u root
+```
+
+==Run a command to list all the processes running as *your* normal user.==
+
+==Lab Book Question: How is this server authenticating users? What user accounts exist?==
+
+### Passwords, hashes and salt
+
+Given that important security decisions are made based on the user accounts, it is important to authenticate users, to ensure that the subjects are associated with the correct identity.
+
+==What are the kinds of factors that can be used to verify a user's identity? Hint: for example, "something they have".==
+
+==Which category of authentication factors is a password considered to be?==
+
+Originally passwords were stored "in the clear" (not enciphered). For example, Multics stored passwords in a file, and once at MIT a software bug caused the password file to be copied to the motd file (message of the day), which was printed every time anyone logged into the system. A solution is not to store the password in the clear. Instead a hash can be computed, using a one way hash function, and stored. When the user enters a password, a new hash is computed and compared to the original.
+
+On Linux, the command "shasum" can be used to check the integrity of files (hash functions have many uses), and works on the same principle. We can use it to generate a hash for any given string, for example a password:
+
+```bash
+shasum
+```
+
+> Type "hello" without the quotes. Press Ctrl-D (which indicates "EOF"; that is, end of input).
+
+Repeat the above, with the same password ("hello"), and with a slight difference ("hello.").
+
+Are the outputs the same?
+
+Are the different hashes similar?
+
+Is this good? Why?
+
+Which one-way hash function does the shasum program use? Would this be a good option for hashing passwords?
+
+For password authentication, the hash still needs to be stored. On Unix, password hashes were once stored in the world-readable file /etc/passwd, now they are typically stored in /etc/shadow, which only root (the superuser) can access.
+
+==View the shadow file:==
+
+```bash
+sudo less /etc/shadow
+```
+
+The format of the shadow file is:
+
+> username:**password**:last-changed(since 1-1-1970):days-until-may-change:days-until-must-change:days-warning-notice:days-since-expired-account-disabled:date-disable:reserved-field
+
+==Find the hash of your user account's password.==
+
+> Exit less ("q").
+
+Use the passwd command to ==change your password:==
+
+```bash
+passwd
+```
+
+> When prompted, enter a new password of your choosing.
+
+View the shadow file, and confirm that the stored password has changed.
+
+With reference to the shadow file, and the man page for crypt (Hint: "man crypt"), ==answer these Log Book questions==:
+
+- On Linux, the password hash stored in /etc/shadow has a prefix that specifies the hash function used.\
+ > ==What hash function is used for your password?==
+
+- ==When was the root password last changed?==
+
+- ==Do any accounts have a setting that will force a password change at a specific date?==
+
+A salt is a random string, used as further input into a one-way hash function (concatenated to the password). The salt is typically stored along with the hash. As a result the same password will have different hashes, so long as the salt is different.
+
+Why is that a good thing?
+
+What kind of attack does a salt defend against?
+
+What is the current salt for your account? Hint: it is stored after the second "\$".
+
+### Password weaknesses
+
+The strength of a password depends on its entropy: its degree of randomness. If a user chooses a word from a dictionary, it would not take long to attempt every dictionary word until finding one that results in the same hash.
+
+Try your hand at cracking passwords using the Kali virtual machine.
+
+Add some new users with these passwords:
+> Hello
+>
+> hellothere
+>
+> H3ll0
+>
+> hello1
+>
+> 12hell012356
+
+==Use john the ripper to crack the passwords.==
+> Hint: `man john`, on the Kali Linux system.
+
+- Which passwords are cracked the fastest?
+
+- How long did they take?
+
+# ------
+# ------
+# ------
+
+### Pluggable Authentication Modules (PAM)
+
+In the past all Linux/Unix programs that required the user to enter a password for authentication (such as su, sudo, and login) would access and interpret /etc/passwd using its own code. However, it was hard to maintain all this code, since any change in the way the passwords were stored (such as using a shadow file, or using new hash functions) would mean all the software that provides authentication needed to be changed. The solution to the problem was PAM.
+
+*Pluggable Authentication Modules (PAM)* enables applications that make use of authentication to be independent of the specific authentication schemes in use. For example, a program such as a login screen that uses PAM can be configured to authenticate using a password, smartcard, and/or biometrics, simply by changing PAM configuration files.
+
+PAM is supported in most distributions of Linux, Mac OS X, FreeBSD, and many other Unix-like systems.
+
+View which PAM modules are available on the desktop system:
+
+> /usr/sbin/pam-config --list-modules
+
+The .so files are typically in /lib/security or /lib64/security. List them:
+
+> ls /lib\*/security/
+
+As you can see, there are lots of different features and authentication schemes, and these can be used with *any* PAM compatible program. This includes not only typical authentication schemes, such as pam\_unix2.so, which does the usual password comparison with /etc/passwd and /etc/shadow, but also can impose time limits (pam\_time.so) or simply display messages to the user (pam\_motd.so).
+
+It is possible to determine whether a specific program is compiled to use PAM, by checking what dynamic libraries it uses. (On Linux .so shared objects are similar to DLL files on Windows, they contain library code that programs can reuse). Check what shared objects the passwd program uses:
+
+```bash
+which passwd
+>
+> ldd *path\_to\_passwd*
+```
+
+> Where path\_to\_password is the output from the "which passwd" command above, which identifies the absolute path to a program. For example, `ldd /usr/bin/passwd`
+
+Note that the output will include a line starting with "libpam.so", such as:
+
+> **libpam.so**.0 => /lib64/libpam.so.0 (0x00007fcc4afe6000)
+
+This would indicate that the program loads code from "/lib64/libpam.so.0", and does indeed make use of PAM.
+
+PAM configuration is located in /etc/pam.d. Take a look at which programs currently have pam configuration files:
+
+```bash
+ls /etc/pam.d
+```
+
+Depending on what is installed on the system, there will be a few configuration files. Each file contains a PAM configuration for the program it is named after. If a PAM-aware program does not have a configuration file the "other" file is used, which should deny access by default.
+
+View the "other" file:
+
+```bash
+less /etc/pam.d/other
+```
+
+{width="3.53125in" height="2.0416666666666665in"}
+
+The output contains instructions to log the attempt to Syslog (which is what pam\_warn.so does) and deny access (using pam\_deny.so) any attempt to authenticate (the lines starting with "auth"), request access to anything (account), change passwords (password), or starting a session (session).
+
+The syntax of the configuration file is that each line starts with is typically:
+
+> *type control module-path module-arguments*
+
+The type is auth, password, account or session. The control (such as "required" or "optional") defines whether the module needs to pass or not before moving on to the next module, then the module name is defined. It is not shown in this example, but the module-path can be followed with some settings for the module.
+
+All the modules for a type (such as auth) are called a module stack. When the program requests PAM perform authentication each of the auth modules in the module stack are run in the order they appear. If a "required" module fails, the authentication process tries the next module to see if it passes, if no required modules pass, then the authentication fails. Note that in the example above, pam\_warn.so returns "PAM\_IGNORE". Therefore the next module pam\_deny.so is started, which returns an error, and the authentication fails.
+
+Possible control values include:
+
+> **required**
+>
+> failure of such a PAM will ultimately lead to the PAM-API returning failure but only after the remaining stacked modules (for this service and type) have been invoked.
+>
+> **requisite**
+>
+> like required, however, in the case that such a module returns a failure, control is directly returned to the application.
+>
+> **sufficient**
+>
+> success of such a module is enough to satisfy the authentication requirements of the stack of modules (if a prior required module has failed the success of this one is ignored). A failure of this module is not deemed as fatal to satisfying the application that this type has succeeded. If the module succeeds the PAM framework returns success to the application immediately without trying any other modules.
+>
+> **optional**
+>
+> the success or failure of this module is only important if it is the only module in the stack associated with this service+type.
+>
+> **include**
+>
+> include all lines of given type from the configuration file specified as an argument to this control.
+>
+> -- from the man page for pam.conf
+
+There is also a more complex rule syntax available, described in the man page.
+
+Information about each module is available in The Linux-PAM System Administrators' Guide:
+
+> [*http://linux-pam.org/Linux-PAM-html/Linux-PAM\_SAG.html*](http://linux-pam.org/Linux-PAM-html/Linux-PAM_SAG.html)
+
+Look at which authentication methods are used by passwd:
+
+```bash
+less /etc/pam.d/passwd
+```
+
+Note that this indicates that PAM will apply the rules in "/etc/pam.d/common-auth", "common-account", "common-password", and "common-session" for the passwd program.
+
+Edit the rules in common-password:
+
+```bash
+sudo vi /etc/pam.d/common-password
+```
+
+Edit the line (adding "minlen=10" to the end of the line):
+
+> password requisite pam\_cracklib.so **minlen=10**
+
+**Reminder**: Vi is 'modal': it has an insert mode, where you can type text into the file, and normal mode, where what you type is interpreted as commands. Press the "i" key to enter "insert mode". Type your changes to the file, then exit back to "normal mode" by pressing the Esc key. Now to exit and save the file press the ":" key, followed by "wq" (write quit), and press Enter.
+
+Change a password using passwd.
+
+Confirm that normal users can no longer use a password that is less than 10 characters long.
+
+View the man page for this PAM module[^1]:
+
+```bash
+man pam_cracklib
+```
+
+Based on the options described in the man page, configure the pam\_cracklib module to require at least one non-alphanumeric character.
+
+Confirm that normal users can no longer use passwords that contain only alphanumeric characters.
+
+Note that there is likely no lockout for failed password attempts when using su to change user. Confirm this by running this command a few times:
+
+```bash
+su - student; su - student; su - student; su - student;
+```
+
+When prompted each time, enter an incorrect password.
+
+Now, let's assume our aim is to add a 5 minute lockout time for when a user enters the wrong password 3 times in a row when using "su". Log-tally lockouts can be achieved using pam\_tally2.
+
+View the man page for this PAM module:
+
+```bash
+man pam\_tally2
+```
+
+Edit /etc/pam.d/su-l, and insert this line as the first module (after the comment at the start of the file):
+
+auth required pam\_tally2.so deny=3 unlock\_time=300
+
+Verify that this change has been successful by running the following command again:
+
+```bash
+su - student; su - student; su - student; su - student;
+```
+
+Enter the wrong password the first 3 times, and then the correct password on the 4th attempt.
+
+Create a new user named "dropbear".
+
+Finally, apply what you have learned to **configure PAM to only allow:**
+
+- **The user "dropbear" to login between 9am and 5pm**
+
+- **And only on a Tuesday**
+
+For testing purposes add another rule that allows a user to log in only 10 minutes from the current time
+
+> Hint: use pam\_time.so and edit /etc/security/time.conf (and read the documentation in the configuration file to figure out how to set the correct limits)
+>
+> Another hint: try the "account" type.
+
+Configure a cron job to force the user to logout at the end of their allowed time
+
+> Hint: as root, "crontab -e" and add a job to run at 5pm on Tuesday killing all of their processes
+>
+> For example, to disconnect dropbear on Wednesday at 4pm, add this line to cron (run "crontab -e", then press "i" to add):
+>
+> 00 16 \* root \* wed skill-KILL-u dropbear
+>
+> Try to figure out how to also send a warning to the user 10 minutes before they are kicked off (Hint: add another cron job, you could send a message via "wall", etc)
+
+### securetty and security
+
+Backup the "securetty" file, which specifies which virtual terminals root is allowed to login to:
+
+```bash
+cp /etc/securetty /etc/securetty.backup
+```
+
+Edit /etc/securetty and place a "\#" in front of "tty3"
+
+Press Ctrl-Alt-F3 and try to login as root
+
+Press Ctrl-Alt-F4 and try to login as root
+
+Press Ctrl-Alt-F7 to return to the desktop
+
+### Conclusion
+
+At this point you have:
+
+- Applied authentication concepts to Unix/Linux
+
+- Experimented with user accounts and identity
+
+- Experimented with one-way hash functions, salts, and password storage
+
+- Cracked passwords with low entropy using dictionary attacks
+
+- Configured PAM to apply various authentication techniques to programs such as passwd
+
+Well done!
+
+[^1]: Yes, this makes it a "Pluggable Authentication Modules module", an unfortunate redundancy...
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/templates/file_permissions.md.erb b/modules/generators/structured_content/hackerbot_config/authentication/templates/file_permissions.md.erb
new file mode 100644
index 000000000..41882b82a
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/templates/file_permissions.md.erb
@@ -0,0 +1,89 @@
+### Protecting integrity with file permissions
+#### Getting to know file permissions
+
+File permissions enable users to control the access that other users have to their files.
+
+We will cover the topic in depth elsewhere. This just provides an introduction to Unix file permissions.
+
+Open a terminal console (such as "Konsole" from KDEMenu / Applications / System / Konsole).
+
+Start by creating a file with some content.
+
+==Run:==
+
+```bash
+cat > /home/<%= $main_user %>/example
+```
+> (Type some content, then press Ctrl-D to finish and return to the
+prompt.)
+> The output is sent to the file /home/<%= $main_user %>/example
+>
+> Note that in bash **you can type *~* as shorthand for your home directory** ("/home/*<%= $main_user %>*"), but for the sake of clarity these instructions list the entire name.
+
+You can read the content:
+
+```bash
+cat /home/<%= $main_user %>/example
+```
+
+Or replace the content:
+
+```bash
+cat > /home/<%= $main_user %>/example
+```
+> (Type some content, then press Ctrl-D to finish and return to the
+prompt.)
+
+You can view the file permissions with:
+
+```bash
+ls -la /home/<%= $main_user %>/example
+```
+`` -rw-r--r-- 1 user user 20 Feb 7 17:38 /home/<%= $main_user %>/example ``
+
+This shows that the file is owned by *user*, and that the user has read-write access ("rw-"), others on the system have read access ("r--").
+
+By default new files can only be edited by the owner of the file (more on file permissions and umask another time). However, by default other users of the system can likely *read* your files.
+
+You can remove the ability of *anyone* changing the content. ==Run:==
+
+```bash
+chmod -w /home/<%= $main_user %>/example
+```
+> -w means "remove write access (for everyone)"
+
+Try changing the content. ==Run:==
+
+```bash
+cat > /home/<%= $main_user %>/example
+```
+
+You can't.
+
+You can remove the ability of **everyone else** changing the content. ==Run:==
+
+```bash
+chmod u+w,go-rw /home/<%= $main_user %>/example
+```
+> u+w: user who owns the file, add write access
+> go-rw: group and others, remove read and write access
+
+
+You can view the file permissions with:
+
+```bash
+ls -la /home/<%= $main_user %>/example
+```
+`` -rw-------- 1 user user 20 Feb 7 17:38 /home/<%= $main_user %>/example ``
+
+Note that **the root user can access any files**, regardless of file permissions.
+
+```bash
+chmod -w /home/<%= $main_user %>/example
+sudo cat /home/<%= $main_user %>/example
+```
+> Enter your password, and note that as root you can access the file regardless of permissions.
+
+"sudo" runs a command as another user (typically root). On Unix the root user (or any user with an uid of 0) is a superuser (i.e. administator) with extra privileges.
+
+Exploring Unix file permissions further is outside the scope of this lab, but will be covered elsewhere.
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/templates/integrity.md b/modules/generators/structured_content/hackerbot_config/authentication/templates/integrity.md
new file mode 100644
index 000000000..6fa8301ef
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/templates/integrity.md
@@ -0,0 +1,959 @@
+# Integrity Management: Protecting Against and Detecting Change
+
+## Introduction
+
+These tasks can be completed on the openSUSE\_42.1 VM.
+
+This lab could be completed on most RPM-based Linux systems with these
+tools installed: rsync, md5sum, md5deep, Perl, ssh server (if working
+together).
+
+## Preparation
+
+If you are working on campus in the IMS labs using the oVirt online
+labs, [*click here for instructions on how to login on campus in the IMS
+labs and create VMs from
+templates*](https://docs.google.com/document/d/1SZQmZ8tEmwqzlya5zMCuwTh_C1EqHfMRif09CyilYAE/edit?usp=sharing).
+
+If you are working remotely using the oVirt online labs, [*click here
+for instructions on how to login via VPN and create VMs from
+templates*](https://docs.google.com/document/d/1zhANC_pz7fNwc_cALxGwPEn3_vls2YjWJUAkUV0BwlI/edit?usp=sharing).
+
+The oVirt system is a new online lab infrastructure hosted here at Leeds
+Beckett. This infrastructure is **currently on trial, as a pilot**.
+There is a good chance there will be some technical issues, and not
+every lab will be available via this system. However, if you are happy
+to benefit from this experiment, please keep in mind that you may need
+to fall back to one of the above methods.
+
+If you are working remotely having downloaded our VMs or by copying them
+when you were on campus, [*click here for instructions on how to
+download VMware Player and configure the VMs to run
+remotely*](https://drive.google.com/open?id=1mZSvF9Gc76mKQ5mW9Lsq2fWGIZd8-rE7RqmRXy1ICLY).
+
+If you are on campus using the IMS system, [*click here for instructions
+on how to use the IMS system and VM download
+scripts*](https://drive.google.com/open?id=1E03Q7cPrUEk_YZ8syvo-sk6FGv2SlJT1u9KwGOFWdFA).
+
+Start these VMs:
+
+- openSUSE\_42.1 (user: student password: student)
+
+ - Two copies if working alone (Hint: change the desktop background
+ > of one VM so that you can easily keep track of which VM you
+ > are working on)
+
+Note: The root password on the openSUSE\_Leap\_42.1-- **which should NOT
+be used to log in graphically** -- is “tiaspbiqe2r” (**t**his **i**s **a** **s**ecure **p**assword **b**ut **i**s **q**uite **e**asy **2** **r**emember). Again, never log in to the desktop environment using the
+root account -- that is bad practice, and should always be avoided.
+
+Some of these exercises can be completed with a classmate (or simply
+using two VMs), and assumes root access is available to each other's
+systems via an ssh server.
+
+> *Distance learning students*: If you would like to work with someone
+> else from the course, please contact each other via the course Google
+> group and share IP addresses.
+
+**On openSUSE**:
+
+Install the required packages:
+
+> sudo zypper install rsync md5deep perl openssh
+
+## Integrity
+
+Security is often described in terms of confidentiality, integrity, and
+availability. Protecting the integrity of information involves
+preventing and detecting unauthorised changes. In many commercial
+organisations integrity of information is the highest priority security
+goal. Managing who is authorised to make changes to databases or files,
+and monitoring the integrity of resources for unauthorised changes is an
+important task in managing information security.
+
+## Protecting integrity
+
+Protecting the integrity of resources, such as the files on a system,
+involves successfully managing a variety of security mechanisms, such as
+authentication, access controls and file permissions, firewalls, and so
+on.
+
+> On Linux systems this can include managing passwords, packet filtering
+> IPTables rules, standard Unix file permissions (rwx), Linux extended
+> attributes (including ACLs for detailed authentication, labels for
+> mandatory access control (MAC), and Linux Capabilities). Linux (like
+> other Unix-like and Unix-based systems) has a long history of adding
+> new security features as and when they are required.
+>
+> Note that many security controls such as those listed above are very
+> important for protecting the integrity of files, but are beyond the
+> scope of this lab. Here the focus is on techniques that are *entirely*
+> focussed on integrity rather than confidentiality or availability.
+
+There are precautions that can be taken to reduce the chances of
+unauthorised changes.
+
+### Protecting integrity with file attributes
+
+Unix systems (such as Linux or FreeBSD) include file attributes that,
+amongst other features, can make files immutable or append only. Setting
+these file attributes can provide an effective layer of security, and
+yet could be considered one of the more obscure Unix security
+features[^1]. Note that this feature is dependent on the use of a
+compatible filesystem (most Unix filesystems, such as ext, are
+compatible with file attributes). Once configured, file attributes can
+even prevent root (the all-powerful Unix superuser) from making changes
+to certain files.
+
+Open a terminal console (such as Konsole from
+ KDEMenu → System → Konsole).
+
+Start by creating a file with some content. Run:
+
+``
+ sudo bash -c 'cat > /var/log/mylogfile'
+ ``
+>
+> (Type some content, then press Ctrl-D to finish and return to the
+> prompt.)
+
+Look at the details of the file:
+
+> ls -la /var/log/mylogfile
+>
+> -rw-r--r-- 1 root root 20 Feb 7 17:38 /var/log/mylogfile
+
+As we can see above, the file is owned by root, who has read-write
+access – exploring Unix file permissions further is outside the scope of
+this lab, but will be covered elsewhere.
+
+Run:
+
+> lsattr /var/log/mylogfile
+>
+> -------------e- /var/log/mylogfile
+
+The ‘e’ flag is common on ext filesystems, may or may not be present
+when you run the above, and does not really concern us. From a security
+perspective the ‘a’ and ‘i’ flags are the most interesting. Read the man
+page for chattr to find out more about these flags and what they do:
+
+> man chattr
+>
+> (Press q to leave the manual page)
+
+Set the ‘i’ flag using the chattr command:
+
+> sudo chattr +i /var/log/mylogfile
+
+Now try to delete the file and see what happens:
+
+> rm /var/log/mylogfile
+
+Denied! Opps, that’s right, root owns the file (since you created it
+with sudo)! Use root to try to delete the file:
+
+> sudo rm /var/log/mylogfile
+
+It still didn’t work! That’s right, even root can’t delete the file,
+without changing the file’s attributes back first.
+
+Use some commands to remove the ‘i’ flag (hint: “-i”, instead of “+i”).
+
+Now run a command to set the ‘a’ flag on /var/log/mylogfile.
+
+If you have done so correctly, attempting to overwrite the file with a
+test message should fail:
+
+> sudo bash -c 'echo "test message" > /var/log/mylogfile'
+>
+> This should produce an error, since ‘>’ causes the output of the
+> program to be written to the specified log file, which is not allowed
+> due to the chattr command you have run.
+
+Yet you should be able to append messages to the end of the file:
+
+> sudo bash -c 'echo "*your-name*: test message" **>>**
+> /var/log/mylogfile'
+>
+> This should succeed, since ‘>>’ causes the output of the program
+> to be appended (added to the end of) to the specified log file, which
+> is allowed. Use your name above, for example “echo "Cliffe: test
+> message" >> /var/log/mylogfile”.
+
+View your changes at the end of the file:
+
+> tail /var/log/mylogfile
+
+This has obvious security benefits, this feature can be used to allow
+files to be written to without altering existing content. For example,
+for ensuring that log files can be written to, but avoiding giving
+everyone who can write to the file the ability to alter its contents.
+
+
+### Protecting integrity with read-only filesystems
+
+On Unix, a filesystem is mounted to a particular point in the directory
+structure; for example, a USB thumb drive may be mounted to
+/media/myUSB/. Some filesystems will automatically mount read-only; for
+example, if you insert a CD-ROM, since those disks are physically
+read-only. It is possible to optionally mount almost any filesystem,
+such as a USB or even a directory, in read-only mode, which will make it
+practically impossible to write changes to it (without remounting or
+accessing the drive/directory in other ways, which normally only root
+can do).
+
+> In a command prompt, run:
+>
+> mount
+>
+> Note that many of the devices and directories have been mounted for
+> read and write access (**rw**). For security reasons, it can be safer
+> to mount things as read-only, when we don’t need to be able to make
+> changes to the contents.
+>
+> Ordinary users can only read the /etc directory but the superuser root
+> who owns the /etc directory can read and write to it. In the following
+> example, you are going to mount the /etc directory to a mount point
+> (another directory within the filesystem) and the contents of the /etc
+> directory will be accessible via the mount point.
+>
+> List the contents of the /etc directory so you are familiar with its
+> contents:
+>
+> ls /etc
+>
+> Create a new directory to be the mount point:
+>
+> mkdir /home/student/test
+>
+> Mount the /etc directory to the new mount point:
+>
+> sudo mount -o bind /etc /home/student/test
+>
+> Make sure the /etc directory is accessible via the test directory
+> mount point:
+>
+> ls /home/student/test
+>
+> Ordinary users can only read but the superuser root can still write to
+> the directory. Test this by creating a new file as the superuser root
+> in the /home/student/test directory:
+>
+> sudo touch /home/student/test/file1
+>
+> Check that a new file has been created using the following commands
+>
+> ls -l /home/student/test/fi\*
+>
+> ls -l /etc/fi\*
+>
+> We can use this techniques to make filesystems and directories
+> read-only. In the next example you will remount the etc in read-only
+> mode so that even the superuser root who owns the /etc directory
+> cannot make changes to its contents via the mount point.
+>
+> sudo mount -o remount,ro,bind /etc /home/student/test
+>
+> Test this by trying creating a new file as the superuser root in the
+> /home/student/test directory:
+>
+> sudo touch /home/student/test/file2
+>
+> This should prevent changes being accidently being made to important
+> configuration files in the /etc directory.
+>
+> Remount the the /etc directory as read-only to itself:
+>
+> sudo mount -o remount,ro,bind /etc /etc
+
+Mounting read-only can be an effective way of protecting resources that
+you don’t need to make any changes to. Read-only mounting is
+particularly effective when an actual disk resides externally, and can
+be enforced remotely. For example, when sharing files over the network.
+
+Note that mounting read-only may be circumvented by root (or a user with
+enough privilege) via direct access to the device files (/dev/sdc1 in
+the example above), or by re-mounting as read-write.
+
+Aside: in new versions of Linux, it is also possible to have a directory
+(one part of what is on a disk) present in the directory structure twice
+with different mount options (for example, /home/cliffe and
+/home/cliffe-read-only). This can be achieved by bind mounting, and then
+remounting to set the bind mount to read only. More information:
+[*http://lwn.net/Articles/281157/*](http://lwn.net/Articles/281157/)
+
+## Detecting changes to resources
+
+Although we can aim to protect integrity, eventually even the strongest
+defenses can fail, and when they do we want to know about it! In order
+to respond to a security incident we need to detect that one has
+occurred. One way we do so, is to detect changes to files on our system.
+
+### Detecting changes to resources using backups
+
+One technique is to compare files to a backup known to represent the
+system or resources in a clean state. One advantage of this approach is
+that we cannot only detect that files have changed, but also see exactly
+how they differ.
+
+You can (and, if possible, should) **conduct this exercise with a
+classmate**.
+
+Make a backup of your /etc/passwd file:
+
+> cp /etc/passwd /tmp/passwd\_backup
+
+This file (/etc/passwd) is an important file on Unix systems, which
+lists the user accounts on the system. Although historically the hashes
+of passwords were once stored here, they are now typically stored in
+/etc/shadow. Changes to the /etc/passwd file are usually infrequent –
+such as when new user accounts are created – and changes should only be
+made for authorised purposes.
+
+At this point, also make sure you have a backup of any work.
+
+If you are working with a classmate or using two VMs, once you (and your
+classmate or on the other VM) have saved a backup copy of your own
+passwd file using the above command, then connect to your classmate’s
+computer (other VM) using ssh:
+
+> Set your root password to a password you will share with your
+> classmate:
+>
+> sudo passwd
+>
+> Enable your SSH server:
+>
+> sudo /sbin/service sshd start
+>
+> Open port 22 for ssh access to your computer
+>
+> Click KDEMenu → System → Yast
+>
+> Click Firewall in the Security and Users section
+>
+> Click “Allowed Services”
+>
+> Choose “Secure Shell Server” from the “Service to Allow” drop down
+> list
+>
+> Click Add to add ssh to the list of allowed services.
+>
+> Click Next → Finish and close Yast
+>
+> Find your IP address using ifconfig, and tell your classmate your IP
+> address and root password.
+>
+> ssh *their-ip-address*
+>
+> (Where *their-ip-address* is as noted earlier.) You will be prompted
+> for student account password.
+>
+> Switch to the root user (you will be prompted for the root password):
+>
+> su -
+>
+> If you do not know each other’s root password, then feel free to log
+> each other in on an ssh session as root.
+
+Now that you have root access to their system[^2], add a new user to
+their computer... Your aim is to make the new account hard to notice. If
+you are working alone, just do this on your own system:
+
+> useradd *new-username*
+>
+> Where new-username, is some new name. Don’t tell your classmate the
+> name of the account you have created. You may want to create a
+> username that looks innocent.
+
+To make things even more interesting, edit the /etc/passwd file and move
+the new user account line somewhere other than right at the bottom, so
+that it is less obvious:
+
+> vi /etc/passwd
+>
+> Move the cursor onto the line representing your new account (probably
+> at the bottom).
+>
+> In vi type:
+>
+> :m *-number*
+>
+> Where number is the number of lines to move up, for example: “:m -20”
+> will move the currently selected line up 20 lines, “hiding” the new
+> user account amongst the others.
+>
+> Save your changes and exit vi by typing:
+>
+> :wq
+
+Now exit ssh:
+
+> exit
+
+If you are working with a together, look at the changes your classmate
+made on your computer, and try to spot the new user account:
+
+> less /etc/passwd
+>
+> (q to exit)
+
+It’s not as easy as it sounds, especially if your system has lots of
+user accounts.
+
+Since you have a backup of your passwd file, you can compare the backup
+with the current passwd file to determine it has been modified. One such
+tool for determining changes is diff. Diff is a standard Unix command.
+Run:
+
+> diff -q /tmp/passwd\_backup /etc/passwd
+
+Diff should report that the two files differ. Diff can also produce an
+easy to read description of exactly how the file has changed. This is a
+popular format used by programmers for sharing changes to source code:
+
+> diff -u /tmp/passwd\_backup /etc/passwd
+
+There are many advantages to the comparison of backups approach to
+detecting changes, but it also has its limitations. To apply this
+approach to an entire system, you will need a fairly large amount of
+either local or network shared storage, and writes need to be controlled
+to protect the backups, yet written to whenever authorised changes are
+made to keep the backup up-to-date. Also, when the comparisons are made
+substantial disk/network access is involved, since both both sources
+need to be read at the same time in order to do the comparison.
+
+In the example above, the backup was stored on the same computer. Did
+you think of editing your classmates backup passwd file? This is related
+to a major issue when checking for changes to the system: if your system
+has been compromised, then you can’t necessarily trust any of the local
+software or files, since they may have been replaced or modified by an
+attacker. For that reason, it can be safer to run software (such as
+diff) from a separate read-only storage. Yet that still may not be
+enough, the entire operating system could be infected by a rootkit.
+
+Aside: Filesystems, such as btrfs, that support history and snapshots
+can also be helpful for investigating breaches in integrity.
+
+### Detecting changes to resources using hashes and file integrity checkers
+
+Another technique for detecting modifications to files is to use hashes
+of files in their known good state. Rather than storing and comparing
+complete copies, a one way hash function can be used to produce a fixed
+length hash (or “digest”), which can be used for later comparisons.
+Hashes have security properties that enable this use:
+
+- Each hash is unique to the input
+
+- It is extremely difficult (practically impossible) to find another
+ > input that produces the same hash output
+
+- Any change to the input (no matter how minor) changes the output
+ > hash dramatically
+
+We can store a hash and later recompute the hash, to determine whether
+the file has changed (if the hash is different), or it is exactly the
+same (if the hash is the same). If you have studied digital forensics,
+many of these concepts will be familiar to you, since hashes are also
+commonly used for verifying the integrity of digital evidence.
+
+Generate an MD5 hash of your backup password file, which you copied
+above:
+
+> md5sum /tmp/passwd\_backup
+
+Now calculate a hash of your current passwd file:
+
+> md5sum /etc/passwd
+
+If the generated hashes are different, you know the files do not have
+exactly the same content.
+
+Note that using hashes, there is no need to have the backup on-hand in
+order to check the integrity of files, you can just compare a newly
+generated hash to a previous one.
+
+Repeat the above two commands using shasum rather than md5sum. SHA1 and
+SHA2 are considered to be more secure than the “cryptographically
+broken” MD5 algorithm. Although MD5 is still in use today, it is safer
+to use a stronger hash algorithm, since MD5 is not collision-resistant,
+meaning it is possible to find multiple files that result in the same
+hash. SHA1 is considered partially broken, so a new algorithm such as
+SHA2 is currently a good option. There are a number of related commands
+for generating hashes, named md5sum, shasum, sha224sum, sha256sum, and
+so on. These commands (as well as those in the next section) are readily
+available on most Unix systems, and are also available for Windows.
+
+#### File integrity checkers
+
+A file integrity checker is a program that compares files to previously
+generated hashes. A number of these kinds of tools exist, and these can
+be considered a form of host-based intrusion detection system (HIDS),
+particularly if the checking happens automatically. One of the most well
+known integrity checkers is Tripwire, which was previously released open
+source; although, new versions are closed source and maintained by
+Tripwire, Inc, with a more holistic enterprise ICT change management
+focus. There are other tools similar to Tripwire, such as AIDE (Advanced
+Intrusion Detection Environment), and OSSEC (Open Source Host-based
+Intrusion Detection System).
+
+The above md5sum, shasum (and so on) programs can also be used to check
+a list of file hashes.
+
+Create an empty file, where *your-name*, is your actual name:
+
+> touch *your-name*
+
+Run the following to generate a file containing hashes of files we can
+later check against:
+
+> shasum *your-name* >> /tmp/hash.sha
+>
+> shasum /etc/passwd >> /tmp/hash.sha
+>
+> sudo shasum /etc/shadow >> /tmp/hash.sha
+>
+> shasum /bin/bash >> /tmp/hash.sha
+>
+> shasum /bin/ls >> /tmp/hash.sha
+
+Look at the contents of our new hashes file (Q to quit when done):
+
+> less /tmp/hash.sha
+
+Now use your new hash list to check that nothing has changed since we
+generated the hashes:
+
+> shasum -c /tmp/hash.sha
+
+Why does shasum fail to check the integrity of the shadow file?
+
+Make a change to our empty “*your-name*” file:
+
+> echo "hello" > *your-name*
+
+Check whether anything has changed since we generated hashes:
+
+> shasum -c /tmp/hash.sha
+
+You should see a nice explanation of the files that have changed since
+generating the hashes.
+
+#### Scripted integrity checking
+
+The above can also be accomplished via a simple script (in this case a
+Perl script):
+
+ #!/usr/bin/perl
+
+ # Copyleft 2012, Z. Cliffe Schreuders
+
+ # Licenced under the terms of the GPLv3
+
+ use warnings;
+
+ use strict;
+
+ my %files\_hashes = (
+
+ "/bin/ls"=>"9304c5cba4e2a7dc25c2d56a6da6522e929eb848",
+
+ "/bin/bash"=>"54d0d9610e49a654843497c19f6211b3ae41b7c0",
+
+ "/etc/passwd"=>"69773dcef97bca8f689c5bc00e9335f7dd3d9e08"
+
+ );
+
+ foreach my \$file\_entry (keys %files\_hashes) {
+
+ my \$hash = \`sha1sum \$file\_entry|awk '{print \\\$1}'|head -n1\`;
+
+ chomp(\$hash);
+
+ if(\$hash ne \$files\_hashes{\$file\_entry}){
+
+ warn "FILE CHANGED: \$file\_entry (hash was \$hash, expected
+ \$files\_hashes{\$file\_entry})\\n";
+
+ } else {
+
+ print "File unmodified: \$file\_entry (hash was \$hash, as
+ expected)\\n";
+
+ }
+
+ }
+
+This script simply iterates over a list of file paths with SHA1 hashes
+(stored in an associative array), and runs sha1sum for each one to check
+whether the files are still the same.
+
+Save the script as checker.pl (Help: you may wish to install the default
+KDE GUI text editor Kate, if it is not already installed under the
+Utlities menu. You should be able to copy the script and paste it into
+Kate to save it as checker.pl. Kate can be installed using the following
+command: “sudo zypper install kate”)
+
+Then run the script with:
+
+> perl checker.pl
+
+Are the files reported as unmodified, or have they changed? Why might
+they be different to when I wrote the script?
+
+##### Recursive file integrity checkers
+
+The md5deep program (also known as sha1deep, sha256deep, and so on for
+different hash algorithms) can recursively walk through directories (and
+into all contained subdirectories) to generate and check lists of
+hashes.
+
+Run:
+
+> sudo sha1deep -r /etc
+>
+> If the md5deep command is not available, install it:
+>
+> On openSUSE this can be done by first running “cnf sha1deep”, to find
+> the name of the package containing the program, then run the install
+> command it gives you, such as “sudo zypper install md5deep”.
+>
+> If you get “PackageKit is blocking zypper”, then select “no”, and kill
+> PackageKit, by running “kill -9 *pid*”, where *pid* is the number
+> reported by the previous command. Now run the above again.
+>
+> If the zypper command is stuck on refreshing a repository, then press
+> “Ctrl-C”, “a” (for abort), then proceed with the installation as per
+> normal.
+>
+> Once the required software is installed, try the sha1deep command
+> again.
+
+The output of the above command will include hashes of every file in
+/etc, which is where system-wide configuration files are stored on Unix.
+
+Read the sha1deep manual to understand the above command:
+
+> man sha1deep
+>
+> Figure out what the -r flag does.
+>
+> (Q to quit)
+
+We can save (redirect) this output to a file so that we have a record of
+the current state of our system’s configuration:
+
+> sudo sha1deep -r /etc > /tmp/etc\_hashes
+
+This may take a minute or so, while the program calculates the hashes
+and sends them to standard out (known as stdout), which is then
+redirected to the etc\_hashes file.
+
+Next, let's compare the size of our list of hashes, with the actual
+content that we have hashed...
+
+See how big our list of hashes is:
+
+> ls -hs /tmp/etc\_hashes
+>
+> (-h = human readable, -s = size)
+
+This is likely to be in the Kilobytes.
+
+And for the size of all of the files in /etc:
+
+> sudo du -hs /etc
+>
+> (-h = human readable, -s summarise)
+
+This is likely in the Megabytes (or maybe even Gigabytes).
+
+Clearly, the list of hashes is much smaller.
+
+If you are **working with a classmate**, log into their system using ssh
+(as done previously). If you are working alone, simply run all the
+commands on your own system.
+
+Create a new file somewhere in /etc/, containing your name. Name the
+file whatever you like (for example /etc/test), although the more
+inconspicuous the better.
+
+> Hint: “sudo vi /etc/test”, “i” to enter insert mode, and after typing
+> your name, “Esc”, “:wq”.
+
+Also, change an existing file in /etc on their system, but please do be
+careful to only make a minor change that will **not cause damage to
+their system**. For example, you could use vi to edit /etc/hostname
+(“sudo vi /etc/hostname”), and add a comment to the file such as
+“\#your-name: bet you can’t find this comment!”
+
+You can now “exit” the ssh session.
+
+**On your own system**, lets try to identify what the “attacker” has
+done to our system...
+
+Now that we have a list of hashes of our files, use shasum to check if
+anything has changed using our newly generated list of hashes
+(/tmp/etc\_hashes).
+
+> Hint: look at the previous command using shasum to check hashes.
+
+Does this detect our the changed file AND the new file? Why not?
+
+Md5deep/sha1deep takes a different approach to checking integrity, by
+checking all of the files it is told to check (possibly recursing over
+all files in a directory) against a list of hashes, and reporting
+whether any files it checked did not (or did, depending on the flags
+used) have its hash somewhere in the hash list.
+
+Run sha1deep to check whether any files in /etc/ do not match a hash
+previously generated:
+
+> sudo sha1deep -X /tmp/etc\_hashes -r /etc
+
+This should detect both modified files, both new and modified.
+
+But would sha1deep detect a copy of an existing file, to a new location?
+
+Try it:
+
+> sudo cp /etc/passwd /etc/passwd.backup
+
+Now rerun the previous sha1deep command. Was the copy detected? Why not?
+
+What about copying one file over another? Which out of shasum or
+sha1deep would detect that?
+
+Another tool, hashdeep, which is included with md5deep, provides more
+coverage when it comes to detecting files that have moved, changed, or
+created.
+
+Generate a hash list for /etc using hashdeep:
+
+> sudo hashdeep -r /etc > /tmp/etc\_hashdeep\_hashes
+
+Hashdeep stores hashes in a different format than the previous tools.
+Have a look:
+
+> less /tmp/etc\_hashdeep\_hashes
+>
+> (q to quit)
+>
+> Note that the output includes some more information, such as the file
+> size for each file.
+
+Delete the new file that your “attacker” (the person who sshed into your
+system) created earlier:
+
+> sudo rm /etc/*whatever-the-filename-was*
+
+Conduct a hashdeep audit to detect any changes:
+
+> sudo hashdeep -r -a -k /tmp/etc\_hashdeep\_hashes /etc
+>
+> Note, that this can take a while, so feel free to start working
+> through the next section in another terminal, if you like.
+
+After, run it again, this time asking for more details, since the
+default message does not provide any information as to why an audit has
+failed:
+
+> sudo hashdeep -ra**vv** -k /tmp/etc\_hashdeep\_hashes /etc
+
+Consult the man page for information about what each of the above flags
+do.
+
+#### Detecting changes to resources using package management
+
+On Linux systems, package management systems are used to organise,
+install, and update software. The package management system has a
+database that keeps track of all the files for each program or software
+package. Depending on the package management system used, the database
+may maintain hashes in order to detect changes to files since install.
+RPM-based systems (such as Red Hat, Fedora, and OpenSUSE), store hashes
+of each file that is included in software packages. There are commands
+that can be used to detect changes to files that have occurred since
+being installed by the package management software.
+
+Note that there are times where it is perfectly normal for a number of
+files to not match the “fresh” versions that were installed: for
+example, configuring a system for use will involve editing configuration
+files that were distributed with software packages.
+
+The “rpm” command has a -V flag for verifying the integrity of packages.
+
+Choose any system file on the computer, such as /etc/securetty. To
+determine which package the file belongs to:
+
+> rpm -q --whatprovides *any-file-you-chose*
+>
+> Where any-file-you-chose is any file such as /etc/securetty.
+
+The output of that command the package-name, and is required in the next
+step.
+
+Check the integrity of the file:
+
+> rpm -V *package-name*
+>
+> Where package-name is the output from the previous command.
+
+An example from the output would be:
+
+> 5S.T..... c /etc/securetty
+
+Which means, it is a config file (c), and:
+
+- S – file Size differs
+
+- M – Mode differs (includes permissions and file type)
+
+- 5 – MD5 sum differs
+
+- D – Device major/minor number mismatch
+
+- L – readLink(2) path mismatch
+
+- U – User ownership differs
+
+- G – Group ownership differs
+
+- T – mTime differs
+
+- P – caPabilities differ
+
+Use the above information to understand the output from your above rpm
+-V command.
+
+Next verify the integrity of all of the packages on the entire system
+(this may take a while):
+
+> rpm -Va
+
+Try to understand the cause of any files failing the integrity checks.
+
+Consider the limitations of this approach: what files will (and won’t)
+this approach to integrity management cover?
+
+#### Limitations of integrity checking
+
+Perhaps the greatest limitation to all of these approaches, is that if a
+system is compromised, you may not be able to trust any of the tools on
+the system, or even the operating system itself to behave as expected.
+In the case of a security compromise, your configuration files may have
+been altered, including any hashes you have stored locally, and tools
+may have been replaced by Trojan horses. For this reason it is safer to
+run tools over the network or from a removable drive, with read-only
+access to protect your backups and hashes. Even then, the
+OS/kernel/shell may not be telling you the truth about what is
+happening, since a rootkit could be concealing the truth from other
+programs.
+
+### Problem-based tasks
+
+#### Choosing files for integrity checking
+
+Fill in the table below with a number of files on a Unix or Windows
+system whose integrity should be monitored for security purposes:
+
+ **Filename** **Description** **Security reason for monitoring integrity**
+ --------------------- ------------------------- ---------------------------------------------------------------------------------------------------------------------
+ *Unix: /etc/passwd* *List of user accounts* *Adding or modifying users is security sensitive, since rogue user accounts could present a backdoor to the system*
+
+
+
+
+
+
+
+
+
+
+
+**Complete the table above, with a number of Unix/Windows files that
+should be monitored for integrity, as evidence that you have completed
+this part of the task.**
+
+**Label it or save it as “Integrity-A1”.**
+
+Add an integrity monitoring solution (md5sum, md5deep, or hashdeep) to a
+cron job, so that every hour the integrity of some important files are
+checked, and any errors are emailed to root.
+
+Hints: Any output on standard error (stderr) on a cron job results in a
+local email to root. As root, type “mail” to read the local emails. Run
+“crontab -e” to add scheduled tasks. Google will certainly help here.
+
+Help: You may find the following links if you have not used cron before
+to run scheduled tasks.
+
+[*Click here for an openSUSE
+Video*](https://www.youtube.com/watch?v=bQfza9aLjss)
+
+[*Click here for a cron
+tutorial*](http://www.computerhope.com/unix/ucrontab.htm)
+
+[*Click here for cron
+examples*](http://www.thegeekstuff.com/2009/06/15-practical-crontab-examples/comment-page-1/)
+
+**Take screenshots of an hourly cronjob rule, and email with an
+integrity report from md5sum/deep or hashdeep, as evidence that you have
+completed this part of the task.**
+
+**Label it or save it as “Integrity-A2”.**
+
+Add to your above solution, by considering and implementing some
+protection against modifications to your hash file/database.
+
+**Take a screenshot of your configuration for protection of the hash
+file (and include a one sentence description), as evidence that you have
+completed this part of the task.**
+
+**Label it or save it as “Integrity-A3”.**
+
+Install either OSSEC (Open Source Host-based Intrusion Detection
+System), AIDE (Advanced Intrusion Detection Environment), or Tripwire
+(if you can find a copy), and use it to monitor the integrity of your
+files. Modify a file named *your-name* (your actual name) and view a
+report or alert that the integrity of the file has been compromised.
+
+**Take a screenshot of a report from OSSEC or AIDE that a file named
+after you has been altered, as evidence that you have completed this
+part of the task.**
+
+**Label it or save it as “Integrity-A4”.**
+
+Add to the integrity monitoring script given earlier, to store and
+retrieve the hashes from a file.
+
+For extra marks, protect the hashes using a HMAC, with user interaction
+to enter a password.
+
+**Save your modifications of the script, as evidence that you have
+completed this part of the task.**
+
+**Label it or save it as “Integrity-A5”.**
+
+### Resources
+
+An excellent resource on the subject of integrity management is Chapter
+20 of the excellent book *Practical Unix & Internet Security, 3rd Ed*,
+by Garfinkel et al (2003).
+
+[^1]: Setting a file to immutable (and therefore impossible to simply
+ delete) can be an effective prank against the uninitiated in Unix
+ ways.
+
+[^2]: It is obvious that there are risks associated with knowing each
+ other’s root passwords! Obviously, use this knowledge responsibly to
+ work together to complete the tasks.
+
+## License
+
+
+
+This work by [*Z. Cliffe Schreuders*](http://z.cliffe.schreuders.org) at Leeds Beckett University is licensed under a [*Creative Commons
+Attribution-ShareAlike 3.0 Unported License*](http://creativecommons.org/licenses/by-sa/3.0/deed.en_GB).
+
+
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/templates/intro.md.erb b/modules/generators/structured_content/hackerbot_config/authentication/templates/intro.md.erb
new file mode 100644
index 000000000..a755e866b
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/templates/intro.md.erb
@@ -0,0 +1,494 @@
+# Authentication
+
+## Getting started
+### VMs in this lab
+
+==Start these VMs== (if you haven't already):
+- hackerbot_server (leave it running, you don't log into this)
+- desktop
+
+### Your login details for the "desktop" and "server" VMs
+User: <%= $main_user %>
+Password: tiaspbiqe2r (**t**his **i**s **a** **s**ecure **p**assword **b**ut **i**s **q**uite **e**asy **2** **r**emember)
+
+You won't login to the hackerbot_server, but the VM needs to be running to complete the lab.
+
+### For marks in the module
+1. **You need to submit flags**. Note that the flags and the challenges in your VMs are different to other's in the class. Flags will be revealed to you as you complete challenges throughout the module. Flags look like this: ==flag{*somethingrandom*}==. Follow the link on the module page to submit your flags.
+2. **You need to document the work and your solutions in a Log Book**. This needs to include screenshots (including the flags) of how you solved each Hackerbot challenge and a writeup describing your solution to each challenge, and answering any "Log Book Questions". The Log Book will be submitted later in the semester.
+
+## Meet Hackerbot!
+
+
+This exercise involves interacting with Hackerbot, a chatbot who will attack your system. If you satisfy Hackerbot by completing the challenges she will reveal flags to you.
+
+**On the desktop VM:**
+
+==Open Pidgin and send some messages to Hackerbot:==
+
+- Try asking Hackerbot some questions
+- Send "help"
+- Send "list"
+- Send "hello"
+> If Hackerbot seems to be waiting/halted, simply say 'hi'
+
+Work through the below exercises, completing the Hackerbot challenges as noted.
+
+---
+
+## Introduction to authentication
+
+Authentication plays the important role of verifying an identity. For example, when someone gets into an airplane, sits down at a computer, picks up a mobile device, or uses a website, authentication is what is used to confirm that the person is who they claim to be. Authentication is an important first step *before* deciding how the system should act and what to allow.
+
+### Identity: users and groups
+
+Most computer systems have the concept of a user account. Although some devices such as mobile phones typically only have one user account, most modern computers can support having multiple users, each with their own identity. For example, a computer can have a separate account for each person that uses it, and if configured to do so may enable each user to have their own account preferences, and access to different resources.
+
+On Unix/Linux systems every user account is identified by a user ID number (UID), which is a 32-bit integer (whole number), and can have one or more user names, which are human readable strings of text.
+
+Open a terminal console.
+
+> One way to do this is to start Konsole from KDEMenu
+
+Assuming you have already logged in, you have already authenticated yourself on this system.
+
+==Log Book Question: When and how did you authenticate yourself?==
+
+Use these commands to find out about your current identity (or more accurately the identity of the software you are interacting with):
+
+```bash
+whoami
+
+groups
+
+id
+```
+
+==Make a note of your UID and username.==
+
+Note that your account is also a member of one or more groups. A primary group, and a list of other groups. Some Linux systems, such as Debian, create a new seperate primary group for each user, others such as openSUSE have a shared group (named "users") that all normal users are a member of. Similar to the relationship between user names and UIDs, each group has a group name, and a group ID (GID).
+
+Information about user accounts is stored in the /etc/passwd file, which typically all users can read.
+
+==View the /etc/passwd file:==
+
+```bash
+less /etc/passwd
+```
+
+==Find the line that describes your user account.==
+
+This line defines the username, password (well, it used to be stored here… we will come back to this), UID, primary group GID, full name, home directory, and shell for your account.
+
+Confirm this matches the information you recorded earlier.
+
+==Find the line that describes the root user account.==
+
+Where is the root user's home directory?
+
+> Press 'q' to quit less.
+
+==View the /etc/group file:==
+
+```bash
+less /etc/group
+```
+
+Groups are defined in this file, along with which users are members.
+
+==Which users are members of the "tftp" group?
+
+Remember, primary groups do not appear in this file; for example, on openSUSE the "users" group, which all normal users are a member of, may not appear in the /etc/group file.
+
+The "su" program can be used to run a program (usually a shell; that is, a command prompt) as another user, effectively enabling users to switch between user accounts at the command prompt.
+
+==Change your identity to root==. Run:
+
+```bash
+su -
+```
+
+Enter the root password.
+
+Use these commands to ==find out about your new identity:==
+
+```bash
+whoami
+
+groups
+
+id
+```
+
+==What is the UID of root? What does this mean about this user?==
+
+==Lab Book Question: What gives this user special privileges: the name of the account, or the UID?==
+
+==Use the useradd command to create a new user account "fred"==
+
+> Hint: refer to the man page for useradd, by running "man useradd".
+
+==Set a password for the user fred.==
+
+> Hint: `sudo passwd fred`
+
+==Change identity to fred.==
+
+> Hint: `su - fred`
+
+==Run:(after su)==
+
+```bash
+id
+```
+
+==Compare the result to the previous output.==
+
+==How does this compare to your other normal user account? What is different, and what about it is the same?==
+
+Run the single command "id" as root:
+
+```bash
+sudo id
+```
+
+==Log Book Question: What is the difference between sudo and su? Which is most likely protect against accidental damage and also log the commands used?==
+
+### Users and SSH
+
+==Log in to the server via ssh:==
+
+```bash
+ssh <%= $main_user %>@<%= $server_ip %>
+```
+
+==Display details of all users logged on to the system:==
+
+```bash
+who
+```
+
+==List all the processes run by all users:==
+
+```bash
+ps -eo user,comm
+```
+
+==List all the processes running as root:==
+
+```bash
+ps -o user,comm -u root
+```
+
+==Run a command to list all the processes running as *your* normal user.==
+
+==Lab Book Question: How is this server authenticating users? What user accounts exist?==
+
+### Passwords, hashes and salt
+
+Given that important security decisions are made based on the user accounts, it is important to authenticate users, to ensure that the subjects are associated with the correct identity.
+
+==What are the kinds of factors that can be used to verify a user's identity? Hint: for example, "something they have".==
+
+==Which category of authentication factors is a password considered to be?==
+
+Originally passwords were stored "in the clear" (not enciphered). For example, Multics stored passwords in a file, and once at MIT a software bug caused the password file to be copied to the motd file (message of the day), which was printed every time anyone logged into the system. A solution is not to store the password in the clear. Instead a hash can be computed, using a one way hash function, and stored. When the user enters a password, a new hash is computed and compared to the original.
+
+On Linux, the command "shasum" can be used to check the integrity of files (hash functions have many uses), and works on the same principle. We can use it to generate a hash for any given string, for example a password:
+
+```bash
+shasum
+```
+
+> Type "hello" without the quotes. Press Ctrl-D (which indicates "EOF"; that is, end of input).
+
+Repeat the above, with the same password ("hello"), and with a slight difference ("hello.").
+
+Are the outputs the same?
+
+Are the different hashes similar?
+
+Is this good? Why?
+
+Which one-way hash function does the shasum program use? Would this be a good option for hashing passwords?
+
+For password authentication, the hash still needs to be stored. On Unix, password hashes were once stored in the world-readable file /etc/passwd, now they are typically stored in /etc/shadow, which only root (the superuser) can access.
+
+==View the shadow file:==
+
+```bash
+sudo less /etc/shadow
+```
+
+The format of the shadow file is:
+
+> username:**password**:last-changed(since 1-1-1970):days-until-may-change:days-until-must-change:days-warning-notice:days-since-expired-account-disabled:date-disable:reserved-field
+
+==Find the hash of your user account's password.==
+
+> Exit less ("q").
+
+Use the passwd command to ==change your password:==
+
+```bash
+passwd
+```
+
+> When prompted, enter a new password of your choosing.
+
+View the shadow file, and confirm that the stored password has changed.
+
+With reference to the shadow file, and the man page for crypt (Hint: "man crypt"), ==answer these Log Book questions==:
+
+- On Linux, the password hash stored in /etc/shadow has a prefix that specifies the hash function used.\
+ > ==What hash function is used for your password?==
+
+- ==When was the root password last changed?==
+
+- ==Do any accounts have a setting that will force a password change at a specific date?==
+
+A salt is a random string, used as further input into a one-way hash function (concatenated to the password). The salt is typically stored along with the hash. As a result the same password will have different hashes, so long as the salt is different.
+
+Why is that a good thing?
+
+What kind of attack does a salt defend against?
+
+What is the current salt for your account? Hint: it is stored after the second "\$".
+
+### Password weaknesses
+
+The strength of a password depends on its entropy: its degree of randomness. If a user chooses a word from a dictionary, it would not take long to attempt every dictionary word until finding one that results in the same hash.
+
+Try your hand at cracking passwords using the Kali virtual machine.
+
+Add some new users with these passwords:
+> Hello
+>
+> hellothere
+>
+> H3ll0
+>
+> hello1
+>
+> 12hell012356
+
+==Use john the ripper to crack the passwords.==
+> Hint: `man john`, on the Kali Linux system.
+
+- Which passwords are cracked the fastest?
+
+- How long did they take?
+
+# ------
+# ------
+# ------
+
+### Pluggable Authentication Modules (PAM)
+
+In the past all Linux/Unix programs that required the user to enter a password for authentication (such as su, sudo, and login) would access and interpret /etc/passwd using its own code. However, it was hard to maintain all this code, since any change in the way the passwords were stored (such as using a shadow file, or using new hash functions) would mean all the software that provides authentication needed to be changed. The solution to the problem was PAM.
+
+*Pluggable Authentication Modules (PAM)* enables applications that make use of authentication to be independent of the specific authentication schemes in use. For example, a program such as a login screen that uses PAM can be configured to authenticate using a password, smartcard, and/or biometrics, simply by changing PAM configuration files.
+
+PAM is supported in most distributions of Linux, Mac OS X, FreeBSD, and many other Unix-like systems.
+
+View which PAM modules are available on the desktop system:
+
+> /usr/sbin/pam-config --list-modules
+
+The .so files are typically in /lib/security or /lib64/security. List them:
+
+> ls /lib\*/security/
+
+As you can see, there are lots of different features and authentication schemes, and these can be used with *any* PAM compatible program. This includes not only typical authentication schemes, such as pam\_unix2.so, which does the usual password comparison with /etc/passwd and /etc/shadow, but also can impose time limits (pam\_time.so) or simply display messages to the user (pam\_motd.so).
+
+It is possible to determine whether a specific program is compiled to use PAM, by checking what dynamic libraries it uses. (On Linux .so shared objects are similar to DLL files on Windows, they contain library code that programs can reuse). Check what shared objects the passwd program uses:
+
+```bash
+which passwd
+>
+> ldd *path\_to\_passwd*
+```
+
+> Where path\_to\_password is the output from the "which passwd" command above, which identifies the absolute path to a program. For example, `ldd /usr/bin/passwd`
+
+Note that the output will include a line starting with "libpam.so", such as:
+
+> **libpam.so**.0 => /lib64/libpam.so.0 (0x00007fcc4afe6000)
+
+This would indicate that the program loads code from "/lib64/libpam.so.0", and does indeed make use of PAM.
+
+PAM configuration is located in /etc/pam.d. Take a look at which programs currently have pam configuration files:
+
+```bash
+ls /etc/pam.d
+```
+
+Depending on what is installed on the system, there will be a few configuration files. Each file contains a PAM configuration for the program it is named after. If a PAM-aware program does not have a configuration file the "other" file is used, which should deny access by default.
+
+View the "other" file:
+
+```bash
+less /etc/pam.d/other
+```
+
+{width="3.53125in" height="2.0416666666666665in"}
+
+The output contains instructions to log the attempt to Syslog (which is what pam\_warn.so does) and deny access (using pam\_deny.so) any attempt to authenticate (the lines starting with "auth"), request access to anything (account), change passwords (password), or starting a session (session).
+
+The syntax of the configuration file is that each line starts with is typically:
+
+> *type control module-path module-arguments*
+
+The type is auth, password, account or session. The control (such as "required" or "optional") defines whether the module needs to pass or not before moving on to the next module, then the module name is defined. It is not shown in this example, but the module-path can be followed with some settings for the module.
+
+All the modules for a type (such as auth) are called a module stack. When the program requests PAM perform authentication each of the auth modules in the module stack are run in the order they appear. If a "required" module fails, the authentication process tries the next module to see if it passes, if no required modules pass, then the authentication fails. Note that in the example above, pam\_warn.so returns "PAM\_IGNORE". Therefore the next module pam\_deny.so is started, which returns an error, and the authentication fails.
+
+Possible control values include:
+
+> **required**
+>
+> failure of such a PAM will ultimately lead to the PAM-API returning failure but only after the remaining stacked modules (for this service and type) have been invoked.
+>
+> **requisite**
+>
+> like required, however, in the case that such a module returns a failure, control is directly returned to the application.
+>
+> **sufficient**
+>
+> success of such a module is enough to satisfy the authentication requirements of the stack of modules (if a prior required module has failed the success of this one is ignored). A failure of this module is not deemed as fatal to satisfying the application that this type has succeeded. If the module succeeds the PAM framework returns success to the application immediately without trying any other modules.
+>
+> **optional**
+>
+> the success or failure of this module is only important if it is the only module in the stack associated with this service+type.
+>
+> **include**
+>
+> include all lines of given type from the configuration file specified as an argument to this control.
+>
+> -- from the man page for pam.conf
+
+There is also a more complex rule syntax available, described in the man page.
+
+Information about each module is available in The Linux-PAM System Administrators' Guide:
+
+> [*http://linux-pam.org/Linux-PAM-html/Linux-PAM\_SAG.html*](http://linux-pam.org/Linux-PAM-html/Linux-PAM_SAG.html)
+
+Look at which authentication methods are used by passwd:
+
+```bash
+less /etc/pam.d/passwd
+```
+
+Note that this indicates that PAM will apply the rules in "/etc/pam.d/common-auth", "common-account", "common-password", and "common-session" for the passwd program.
+
+Edit the rules in common-password:
+
+```bash
+sudo vi /etc/pam.d/common-password
+```
+
+Edit the line (adding "minlen=10" to the end of the line):
+
+> password requisite pam\_cracklib.so **minlen=10**
+
+**Reminder**: Vi is 'modal': it has an insert mode, where you can type text into the file, and normal mode, where what you type is interpreted as commands. Press the "i" key to enter "insert mode". Type your changes to the file, then exit back to "normal mode" by pressing the Esc key. Now to exit and save the file press the ":" key, followed by "wq" (write quit), and press Enter.
+
+Change a password using passwd.
+
+Confirm that normal users can no longer use a password that is less than 10 characters long.
+
+View the man page for this PAM module[^1]:
+
+```bash
+man pam_cracklib
+```
+
+Based on the options described in the man page, configure the pam\_cracklib module to require at least one non-alphanumeric character.
+
+Confirm that normal users can no longer use passwords that contain only alphanumeric characters.
+
+Note that there is likely no lockout for failed password attempts when using su to change user. Confirm this by running this command a few times:
+
+```bash
+su - student; su - student; su - student; su - student;
+```
+
+When prompted each time, enter an incorrect password.
+
+Now, let's assume our aim is to add a 5 minute lockout time for when a user enters the wrong password 3 times in a row when using "su". Log-tally lockouts can be achieved using pam\_tally2.
+
+View the man page for this PAM module:
+
+```bash
+man pam\_tally2
+```
+
+Edit /etc/pam.d/su-l, and insert this line as the first module (after the comment at the start of the file):
+
+auth required pam\_tally2.so deny=3 unlock\_time=300
+
+Verify that this change has been successful by running the following command again:
+
+```bash
+su - student; su - student; su - student; su - student;
+```
+
+Enter the wrong password the first 3 times, and then the correct password on the 4th attempt.
+
+Create a new user named "dropbear".
+
+Finally, apply what you have learned to **configure PAM to only allow:**
+
+- **The user "dropbear" to login between 9am and 5pm**
+
+- **And only on a Tuesday**
+
+For testing purposes add another rule that allows a user to log in only 10 minutes from the current time
+
+> Hint: use pam\_time.so and edit /etc/security/time.conf (and read the documentation in the configuration file to figure out how to set the correct limits)
+>
+> Another hint: try the "account" type.
+
+Configure a cron job to force the user to logout at the end of their allowed time
+
+> Hint: as root, "crontab -e" and add a job to run at 5pm on Tuesday killing all of their processes
+>
+> For example, to disconnect dropbear on Wednesday at 4pm, add this line to cron (run "crontab -e", then press "i" to add):
+>
+> 00 16 \* root \* wed skill-KILL-u dropbear
+>
+> Try to figure out how to also send a warning to the user 10 minutes before they are kicked off (Hint: add another cron job, you could send a message via "wall", etc)
+
+### securetty and security
+
+Backup the "securetty" file, which specifies which virtual terminals root is allowed to login to:
+
+```bash
+cp /etc/securetty /etc/securetty.backup
+```
+
+Edit /etc/securetty and place a "\#" in front of "tty3"
+
+Press Ctrl-Alt-F3 and try to login as root
+
+Press Ctrl-Alt-F4 and try to login as root
+
+Press Ctrl-Alt-F7 to return to the desktop
+
+### Conclusion
+
+At this point you have:
+
+- Applied authentication concepts to Unix/Linux
+
+- Experimented with user accounts and identity
+
+- Experimented with one-way hash functions, salts, and password storage
+
+- Cracked passwords with low entropy using dictionary attacks
+
+- Configured PAM to apply various authentication techniques to programs such as passwd
+
+Well done!
+
+[^1]: Yes, this makes it a "Pluggable Authentication Modules module", an unfortunate redundancy...
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/templates/lab.xml.erb b/modules/generators/structured_content/hackerbot_config/authentication/templates/lab.xml.erb
new file mode 100644
index 000000000..b02467b6f
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/templates/lab.xml.erb
@@ -0,0 +1,118 @@
+<%
+ require 'json'
+ require 'securerandom'
+ require 'digest/sha1'
+ require 'fileutils'
+ require 'erb'
+
+ if self.accounts.empty?
+ abort('Sorry, you need to provide an account')
+ end
+
+ $first_account = JSON.parse(self.accounts.first)
+
+ $main_user = $first_account['username'].to_s
+ $main_user_pass = $first_account['password'].to_s
+
+ $server_ip = self.server_ip.first
+ $root_password = self.root_password
+ $flags = self.flags
+
+ REQUIRED_FLAGS = 2
+ while $flags.length < REQUIRED_FLAGS
+ $flags << "flag{#{SecureRandom.hex}}"
+ Print.err "Warning: Not enough flags provided to hackerbot_config generator, some flags won't be tracked/marked!"
+ end
+
+ def get_binding
+ binding
+ end
+%>
+
+
+
+
+
+ Hackerbot
+
+ config/AIML
+
+
+ sshpass -p <%= $root_password %> ssh -oStrictHostKeyChecking=no root@{{chat_ip_address}} /bin/bash
+
+
+
+
+ Hi there. I'm your boss of sorts. I need you to do some system adminstration for me and check the security of our server. Help out and I'll give you some flags.
+
+
+ When you are ready, simply say 'ready'.
+ 'Ready'?
+ Ok, I'll do what I can to move things along...
+ Moving things along to the next one...
+ Ok, I'll do what I can to back things up...
+ Ok, backing up.
+ Ok, skipping it along.
+ Let me see what I can do to goto that attack.
+ That was the last one for now. You can rest easy, until next time... (End.)
+ That was the last one. Game over?
+ You are back to the beginning!
+ This is where it all began.
+ Doing my thing...
+ Here we go...
+ ...
+ ....
+ Let me know when you are 'ready', if you want to move on say 'next', or 'previous' and I'll move things along.
+ Say 'ready', 'next', or 'previous'.
+
+
+ I am waiting for you to say 'ready', 'next', 'previous', 'list', 'goto *X*', or 'answer *X*'
+ Say "The answer is *X*".
+ There is no question to answer
+ Correct
+ Incorrect
+ That's not possible.
+ Wouldn't you like to know.
+
+
+ Oh no. Failed to get shell... You need to let us in.
+
+
+
+ Authentication
+ <%= ERB.new(File.read self.templates_path + 'intro.md.erb').result(self.get_binding) %>
+
+
+ true
+
+
+
+
+<% $rand_name1 = SecureRandom.hex(3)
+ $flag1 = $flags.pop
+ $flag2 = $flags.pop
+%>
+
+ Create a list of the potentially trojanised executables on the compromised system, save to your Desktop VM in /home/<%= $main_user %>/evidence/<%= $rand_name1 %>. Use full pathnames, one per line.
+
+
+ asdfasdf
+ :( Only include the programs that are typically found on a Linux system, but that seem to have been replaced with Trojans horses.
+
+
+
+ :( List is incomplete...
+
+
+
+
+
+
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/templates/labsheet.html.erb b/modules/generators/structured_content/hackerbot_config/authentication/templates/labsheet.html.erb
new file mode 100644
index 000000000..0bb7cc90a
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/templates/labsheet.html.erb
@@ -0,0 +1,114 @@
+
+
+ <%= self.title %>
+
+
+
+
+
+
+ <%= self.html_TOC_rendered %>
+
+
+
+ <%= self.html_rendered %>
+
+
+
+
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/templates/license.md.erb b/modules/generators/structured_content/hackerbot_config/authentication/templates/license.md.erb
new file mode 100644
index 000000000..c11478e8e
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/templates/license.md.erb
@@ -0,0 +1,6 @@
+## License
+This lab by [*Z. Cliffe Schreuders*](http://z.cliffe.schreuders.org) at Leeds Beckett University is licensed under a [*Creative Commons Attribution-ShareAlike 3.0 Unported License*](http://creativecommons.org/licenses/by-sa/3.0/deed.en_GB).
+
+Included software source code is also licensed under the GNU General Public License, either version 3 of the License, or (at your option) any later version.
+
+
diff --git a/modules/generators/structured_content/hackerbot_config/authentication/templates/resources.md.erb b/modules/generators/structured_content/hackerbot_config/authentication/templates/resources.md.erb
new file mode 100644
index 000000000..374803e00
--- /dev/null
+++ b/modules/generators/structured_content/hackerbot_config/authentication/templates/resources.md.erb
@@ -0,0 +1,5 @@
+## Resources
+
+An excellent resource on the subject of integrity management is Chapter 20 of the excellent book *Practical Unix & Internet Security, 3rd Ed*, by Garfinkel et al (2003).
+
+Bind mounting: [http://lwn.net/Articles/281157/](http://lwn.net/Articles/281157/)
\ No newline at end of file
diff --git a/scenarios/labs/ads_1_authentication.xml b/scenarios/labs/ads_1_authentication.xml
new file mode 100644
index 000000000..805e55171
--- /dev/null
+++ b/scenarios/labs/ads_1_authentication.xml
@@ -0,0 +1,310 @@
+
+
+
+
+ Authentication lab
+ Z. Cliffe Schreuders
+ A Hackerbot lab. Work through the labsheet, then when prompted interact with Hackerbot. Topics covered: Protecting integrity with file attributes; Protecting integrity with read-only filesystems.
+
+ ctf-lab
+ hackerbot-lab
+ lab-sheet
+ intermediate
+
+
+ desktop
+
+
+
+ 172.16.0.2
+ 172.16.0.3
+ 172.16.0.4
+
+
+
+
+
+
+
+ mythical_creatures
+
+
+
+
+
+ mythical_creatures
+
+
+
+
+ mythical_creatures
+
+
+
+
+ mythical_creatures
+
+
+
+
+ mythical_creatures
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ usernames
+
+
+ tiaspbiqe2r
+
+
+ true
+
+
+
+
+
+ usernames
+
+
+ weak_passwords
+
+
+
+
+ usernames
+
+
+ weak_passwords
+
+
+
+
+ usernames
+
+
+ weak_passwords
+
+
+
+
+ usernames
+
+
+ weak_passwords
+
+
+
+
+
+
+
+
+
+
+
+ user_accounts_desktop
+
+
+
+
+
+ usernames
+
+
+ user_accounts_desktop
+
+
+ true
+
+
+
+
+
+
+
+ user_accounts_desktop
+
+
+ true
+
+
+ IP_addresses
+
+
+
+
+
+ IP_addresses
+
+
+ accounts
+
+
+
+
+
+ desktop_root_password
+
+
+
+
+
+ IP_addresses
+
+
+
+
+
+ server
+
+
+
+
+
+
+
+ usernames
+
+
+ tiaspbiqe2r
+
+
+ false
+
+
+
+
+
+ usernames
+
+
+ weak_passwords
+
+
+ flag
+
+
+
+
+
+
+
+ usernames
+
+
+ weak_passwords
+
+
+ flag
+
+
+
+
+
+
+
+ usernames
+
+
+ weak_passwords
+
+
+ flag
+
+
+
+
+
+
+
+ usernames
+
+
+ weak_passwords
+
+
+ flag
+
+
+
+
+
+
+
+
+
+
+ user_accounts_server
+
+
+
+
+
+
+
+ desktop_root_password
+
+
+
+
+
+ IP_addresses
+
+
+
+
+
+ hackerbot_server
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ user_accounts_server
+
+
+ desktop_root_password
+
+
+
+
+
+
+
+ IP_addresses
+
+
+
+
+
+
+
+
+
+
+