mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-20 13:50:45 +00:00
CSL AES Lab (wip)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/ruby
|
||||
require_relative '../../../../../../lib/objects/local_hackerbot_config_generator.rb'
|
||||
|
||||
class Integrity1 < 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"
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
Integrity1.new.run
|
||||
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<generator xmlns="http://www.github/cliffe/SecGen/generator"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.github/cliffe/SecGen/generator">
|
||||
<name>Hackerbot config for a protecting integrity lab</name>
|
||||
<author>Z. Cliffe Schreuders</author>
|
||||
<module_license>GPLv3</module_license>
|
||||
<description>Generates a config file for a hackerbot for an integrity lab.
|
||||
Topics covered: Protecting integrity with file attributes;
|
||||
Protecting integrity with read-only filesystems.</description>
|
||||
|
||||
<type>hackerbot_config</type>
|
||||
<platform>linux</platform>
|
||||
|
||||
<read_fact>accounts</read_fact>
|
||||
<read_fact>flags</read_fact>
|
||||
<read_fact>root_password</read_fact>
|
||||
|
||||
<!--TODO: require input, such as accounts, or fail?-->
|
||||
|
||||
<default_input into="accounts">
|
||||
<generator type="account">
|
||||
<input into="username">
|
||||
<value>vagrant</value>
|
||||
</input>
|
||||
</generator>
|
||||
</default_input>
|
||||
|
||||
<default_input into="flags">
|
||||
<generator type="flag_generator"/>
|
||||
<generator type="flag_generator"/>
|
||||
<generator type="flag_generator"/>
|
||||
<generator type="flag_generator"/>
|
||||
</default_input>
|
||||
|
||||
<default_input into="root_password">
|
||||
<value>puppet</value>
|
||||
</default_input>
|
||||
|
||||
<output_type>hackerbot</output_type>
|
||||
|
||||
</generator>
|
||||
@@ -0,0 +1,29 @@
|
||||
<html>
|
||||
<head>
|
||||
<title><%= self.title %></title>
|
||||
</head>
|
||||
<body>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="css/github-markdown.css">
|
||||
<style>
|
||||
.markdown-body {
|
||||
box-sizing: border-box;
|
||||
min-width: 200px;
|
||||
|
||||
margin: 0 auto;
|
||||
padding: 45px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.markdown-body {
|
||||
padding: 15px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<article class="markdown-body">
|
||||
|
||||
<%= self.html_rendered %>
|
||||
|
||||
</article>
|
||||
<script src="js/code-prettify/loader/run_prettify.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -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.
|
||||
@@ -0,0 +1,3 @@
|
||||
## 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.
|
||||
@@ -0,0 +1,87 @@
|
||||
### 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 detect that files have changed, and also see *exactly* how they differ.
|
||||
|
||||
Make a directory to store your backups. ==Run:==
|
||||
|
||||
```bash
|
||||
mkdir /home/<%= $main_user %>/backups/
|
||||
```
|
||||
|
||||
==Make a backup copy of your /etc/passwd file:==
|
||||
|
||||
```bash
|
||||
cp /etc/passwd /home/<%= $main_user %>/backups/
|
||||
```
|
||||
|
||||
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.
|
||||
|
||||
==Add a new user== to your computer...
|
||||
|
||||
```bash
|
||||
sudo useradd new-username
|
||||
```
|
||||
> Where ==*new-username*==, is some new name.
|
||||
|
||||
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:
|
||||
|
||||
```bash
|
||||
sudo 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
|
||||
|
||||
Look at the changes in your accounts made on your computer, and try to spot the new user account:
|
||||
|
||||
```bash
|
||||
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:==
|
||||
|
||||
```bash
|
||||
diff -q /home/<%= $main_user %>/backups/passwd /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:
|
||||
|
||||
```bash
|
||||
diff -u /home/<%= $main_user %>/backups/passwd /etc/passwd
|
||||
```
|
||||
|
||||
The diff program can compare entire mirrored directory structures to each other. For example, if you wanted to know exactly what changes have happened since a backup.
|
||||
|
||||
Make a backup of your personal_secrets. ==Run:==
|
||||
|
||||
```bash
|
||||
cp -r <%= $example_dir %> /home/<%= $main_user %>/backups/personal
|
||||
```
|
||||
> The -r tells cp to copy directories and their contents recursively (including sub-directories)
|
||||
|
||||
==Make a change to a file== in <%= $example_dir %>
|
||||
|
||||
Then ==compare using diff:==
|
||||
|
||||
```bash
|
||||
diff -r -u <%= $example_dir %> /home/<%= $main_user %>/backups/personal/
|
||||
```
|
||||
> -r instructs diff to do a recursive comparison (searching through sub-directories)
|
||||
> You can add *--suppress-common-lines* to reduce the amount of output
|
||||
|
||||
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 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 as an attacker of editing the 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.
|
||||
@@ -0,0 +1,69 @@
|
||||
### Protecting integrity with file attributes
|
||||
#### Getting to know 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.
|
||||
|
||||
[^1]: Setting a file to immutable (and therefore impossible to simply delete) can be an effective prank against the uninitiated in Unix ways.
|
||||
|
||||
==Run:==
|
||||
|
||||
```bash
|
||||
lsattr <%= $example_file %>
|
||||
```
|
||||
``
|
||||
-------------e- <%= $example_file %>
|
||||
``
|
||||
|
||||
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:
|
||||
|
||||
```bash
|
||||
man chattr
|
||||
```
|
||||
> (Press q to leave the manual page)
|
||||
|
||||
==Set the 'i' flag== using the chattr command:
|
||||
|
||||
```bash
|
||||
sudo chattr +i <%= $example_file %>
|
||||
```
|
||||
|
||||
Now ==try to delete the file== and see what happens:
|
||||
|
||||
```bash
|
||||
rm <%= $example_file %>
|
||||
```
|
||||
Denied!
|
||||
|
||||
==Use root permissions== to try to delete the file:
|
||||
|
||||
```bash
|
||||
sudo rm <%= $example_file %>
|
||||
```
|
||||
|
||||
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 <%= $example_file %>.==
|
||||
|
||||
If you have done so correctly, attempting to overwrite the file with a test message should fail. ==Run:==
|
||||
|
||||
```bash
|
||||
sudo bash -c 'echo "test message" > <%= $example_file %>'
|
||||
```
|
||||
> 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:
|
||||
|
||||
```bash
|
||||
sudo bash -c 'echo "YOURNAME: test message" >> <%= $example_file %>'
|
||||
```
|
||||
> 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" >> <%= $example_file %>'.
|
||||
|
||||
==View your changes== at the end of the file:
|
||||
|
||||
```bash
|
||||
tail <%= $example_file %>
|
||||
```
|
||||
|
||||
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.
|
||||
@@ -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.
|
||||
@@ -0,0 +1,125 @@
|
||||
### 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 previously:
|
||||
|
||||
```bash
|
||||
md5sum /home/<%= $main_user %>/backups/passwd
|
||||
```
|
||||
|
||||
Now ==calculate a hash== of your current passwd file:
|
||||
|
||||
```bash
|
||||
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, SHA2, and SHA3 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, or the newest SHA3 are currently a good options. 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.
|
||||
|
||||
==Run the following== to generate a file containing hashes of files we can later check against:
|
||||
|
||||
```bash
|
||||
mkdir /home/<%= $main_user %>/hashes/
|
||||
|
||||
shasum <%= $example_file %> >> /home/<%= $main_user %>/hashes/hash.sha
|
||||
shasum /etc/passwd >> /home/<%= $main_user %>/hashes/hash.sha
|
||||
sudo shasum /etc/shadow >> /home/<%= $main_user %>/hashes/hash.sha
|
||||
shasum /bin/bash >> /home/<%= $main_user %>/hashes/hash.sha
|
||||
shasum /bin/ls >> /home/<%= $main_user %>/hashes/hash.sha
|
||||
```
|
||||
|
||||
==Look at the contents== of our new hashes file:
|
||||
|
||||
```bash
|
||||
less /home/<%= $main_user %>/hashes/hash.sha
|
||||
```
|
||||
> Press q to quit when done
|
||||
|
||||
Now use your new hash list to ==check that nothing has changed== since we generated the hashes:
|
||||
|
||||
```bash
|
||||
shasum -c /home/<%= $main_user %>/hashes/hash.sha
|
||||
```
|
||||
|
||||
==Lab book question: Why does shasum fail to check the integrity of the shadow file?==
|
||||
|
||||
==Make a change== to the end of <%= $example_file %>:
|
||||
|
||||
```bash
|
||||
echo "hello" >> *your-name*
|
||||
```
|
||||
|
||||
Check whether anything has changed since we generated hashes:
|
||||
|
||||
```bash
|
||||
shasum -c /home/<%= $main_user %>/hashes/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):
|
||||
|
||||
```perl
|
||||
#!/usr/bin/perl
|
||||
# Copyleft Z. Cliffe Schreuders
|
||||
# Licenced under the terms of the GPLv3
|
||||
|
||||
use warnings;
|
||||
use strict;
|
||||
|
||||
my %files_hashes = (
|
||||
"/etc/passwd"=>"69773dcef97bca8f689c5bc00e9335f7dd3d9e08",
|
||||
"/bin/ls"=>"9304c5cba4e2a7dc25c2d56a6da6522e929eb848",
|
||||
"/bin/bash"=>"54d0d9610e49a654843497c19f6211b3ae41b7c0",
|
||||
);
|
||||
|
||||
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 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==
|
||||
> Tip: you may wish to use the default KDE GUI text editor Kate. You should be able to copy the script and paste it into Kate to save it as checker.pl.
|
||||
>
|
||||
> Alternatively you can type:
|
||||
> "cat > checker.pl"
|
||||
> Paste with Ctrl-Shift-V.
|
||||
> Then, Ctrl-D, to end the input.
|
||||
|
||||
Then ==run the script== with:
|
||||
|
||||
```bash
|
||||
perl checker.pl
|
||||
```
|
||||
|
||||
==Lab book question: Are the files reported as unmodified, or have they changed? Why might they be different to when I wrote the script?==
|
||||
@@ -0,0 +1,53 @@
|
||||
#### 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. DEB-based systems (such as Debian, and Ubuntu) and RPM-based systems (such as Red Hat, Fedora, and OpenSUSE), typically 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.
|
||||
|
||||
==View the files containing MD5 hashes== stored for the packages on the system:
|
||||
```bash
|
||||
ls /var/lib/dpkg/info/*.md5sums
|
||||
```
|
||||
|
||||
==View the contents== of one of the files.
|
||||
|
||||
debsums is a program that can use those MD5 hashes to verify that files on a DEB-based system match the corresponding packages that are installed. By default it doesn't check configuration files (such as in /etc/).
|
||||
|
||||
Verify all files installed by all packages:
|
||||
```bash
|
||||
sudo debsums -ac
|
||||
```
|
||||
> Ctrl-C to end the program early.
|
||||
> Options for debsum include:
|
||||
> -a also check config files
|
||||
> -e *only* check config files
|
||||
> -c only report *changed* files
|
||||
|
||||
Verify the files installed by a specific package:
|
||||
```bash
|
||||
sudo debsums firefox
|
||||
```
|
||||
|
||||
Choose any system file on the computer, such as /etc/securetty. To determine which package the file belongs to:
|
||||
|
||||
```bash
|
||||
dpkg-query -S *any-file-you-chose*
|
||||
```
|
||||
> Where ==any-file-you-chose== is any file such as /etc/securetty.
|
||||
|
||||
The output of that command contains the package-name, and is required in the next
|
||||
step.
|
||||
|
||||
Check the integrity of the file:
|
||||
|
||||
```bash
|
||||
sudo debsums -a *package-name*
|
||||
```
|
||||
> Where package-name is the output from the previous command.
|
||||
|
||||
Try to understand the cause of any files failing the integrity checks.
|
||||
|
||||
==Log Book question: What are the limitations of this approach?==
|
||||
|
||||
- What files will (and won't) this approach to integrity management cover?
|
||||
- Are the hashes protected against tampering?
|
||||
@@ -0,0 +1,124 @@
|
||||
#### 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:==
|
||||
|
||||
```bash
|
||||
sudo sha1deep -r /etc/
|
||||
```
|
||||
> You can stop the program early by pressing Ctrl-C
|
||||
|
||||
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:
|
||||
|
||||
```bash
|
||||
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:
|
||||
|
||||
```bash
|
||||
sudo sha1deep -r /etc > /home/<%= $main_user %>/hashes/etc_hashes
|
||||
```
|
||||
|
||||
This may take a minute or so, while the program calculates all 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:
|
||||
|
||||
```bash
|
||||
ls -hs /home/<%= $main_user %>/hashes/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/:
|
||||
|
||||
```bash
|
||||
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**.
|
||||
|
||||
Create a new file somewhere in /etc/, containing your name. Name the file whatever you like (for example /etc/test).
|
||||
> Hint: 'sudo vi /etc/test', 'i' to enter insert mode, and after typing your name, 'Esc', ':wq'.
|
||||
|
||||
Also, change an existing file in /etc/, but do be careful to only make a minor change that will **not cause damage to your system**. For example, you could use vi to edit /etc/hostname ('sudo vi /etc/hostname'), and add a comment to the file such as '#find this comment!'
|
||||
|
||||
Lets try to identify what has changed on 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== (/home/<%= $main_user %>/hashes/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:
|
||||
|
||||
```bash
|
||||
sudo sha1deep -X /home/<%= $main_user %>/hashes/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:
|
||||
|
||||
```bash
|
||||
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:
|
||||
|
||||
```bash
|
||||
sudo hashdeep -r /etc/ > /home/<%= $main_user %>/hashes/etc_hashdeep_hashes
|
||||
```
|
||||
|
||||
Hashdeep stores hashes in a different format than the previous tools. Have a look:
|
||||
|
||||
```bash
|
||||
less /home/<%= $main_user %>/hashes/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 you created earlier:
|
||||
|
||||
```bash
|
||||
sudo rm /etc/*whatever-the-filename-was*
|
||||
```
|
||||
|
||||
Conduct a hashdeep audit to detect any changes:
|
||||
|
||||
```bash
|
||||
sudo hashdeep -r -a -k /home/<%= $main_user %>/hashes/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:
|
||||
|
||||
```bash
|
||||
sudo hashdeep -ravv /etc/ -k /home/<%= $main_user %>/hashes/etc_hashdeep_hashes
|
||||
```
|
||||
|
||||
Consult the man page for information about what each of the above flags do.
|
||||
@@ -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).
|
||||
|
||||
|
||||
@@ -0,0 +1,225 @@
|
||||
<%
|
||||
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)
|
||||
$second_account = JSON.parse(self.accounts[1])
|
||||
|
||||
$files = []
|
||||
$log_files = []
|
||||
if $first_account.key?("leaked_filenames") && $first_account['leaked_filenames'].size > 0
|
||||
$files = $first_account['leaked_filenames']
|
||||
$log_files = $first_account['leaked_filenames'].grep(/log/)
|
||||
end
|
||||
|
||||
if $files.empty?
|
||||
$files = ['myfile', 'afile', 'filee', 'thefile']
|
||||
end
|
||||
if $log_files.empty?
|
||||
$log_files = ['log', 'thelog', 'logs', 'frogonalog']
|
||||
end
|
||||
|
||||
$main_user = $first_account['username'].to_s
|
||||
$second_user = $second_account['username'].to_s
|
||||
$example_file = "/home/#{$main_user}/#{$files.sample}"
|
||||
$example_dir = "/home/#{$main_user}/personal_secrets/"
|
||||
|
||||
$root_password = self.root_password
|
||||
$flags = self.flags
|
||||
|
||||
REQUIRED_FLAGS = 5
|
||||
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
|
||||
-%>
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<hackerbot
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.github/cliffe/SecGen/hackerbot">
|
||||
<!--<hackerbot xmlns="http://www.github/cliffe/SecGen/hackerbotz"-->
|
||||
|
||||
<name>Hackerbot</name>
|
||||
|
||||
<AIML_chatbot_rules>config/AIML</AIML_chatbot_rules>
|
||||
|
||||
<!--Method for gaining shell access, can be overwritten per-attack-->
|
||||
<!--<get_shell>bash</get_shell>-->
|
||||
<get_shell>sshpass -p <%= $root_password %> ssh -oStrictHostKeyChecking=no root@{{chat_ip_address}} /bin/bash</get_shell>
|
||||
|
||||
<messages>
|
||||
<show_attack_numbers />
|
||||
|
||||
<greeting>Your system is about to be hacked. I'll do what I can hold them off, but you are going to have to work with me to protect yourself. I'll cough up some flags if you work with me.</greeting>
|
||||
|
||||
<!--Must provide alternatives for each message-->
|
||||
<say_ready>Let me know when you are 'ready', if you want to move on to another attack, say 'next', or 'previous' and I'll move things along.</say_ready>
|
||||
<say_ready>When you are ready, simply say 'ready'.</say_ready>
|
||||
<say_ready>'Ready'?</say_ready>
|
||||
<say_ready>Better hurry, the attack is imminent... Let me know when you're 'ready'.</say_ready>
|
||||
<next>Ok, I'll do what I can to move things along...</next>
|
||||
<next>Moving things along to the next attack...</next>
|
||||
<next>Ok, next attack...</next>
|
||||
<previous>Ok, I'll do what I can to back things up...</previous>
|
||||
<previous>Ok, previous attack...</previous>
|
||||
<previous>Ok, backing up.</previous>
|
||||
<goto>Ok, skipping it along.</goto>
|
||||
<goto>Let me see what I can do to goto that attack.</goto>
|
||||
<last_attack>That was the last attack for now. You can rest easy, until next time... (End.)</last_attack>
|
||||
<last_attack>That was the last attack. Game over?</last_attack>
|
||||
<first_attack>You are back to the beginning!</first_attack>
|
||||
<first_attack>This is where it all began.</first_attack>
|
||||
<getting_shell>Ok. Gaining shell access, and running post command...</getting_shell>
|
||||
<getting_shell>Hacking in progress...</getting_shell>
|
||||
<getting_shell>Attack underway...</getting_shell>
|
||||
<getting_shell>Here we go...</getting_shell>
|
||||
<got_shell>We are in to your system.</got_shell>
|
||||
<got_shell>You are pwned.</got_shell>
|
||||
<got_shell>We have shell.</got_shell>
|
||||
<repeat>Let me know when you are 'ready', if you want to move on to another attack, say 'next', or 'previous' and I'll move things along.</repeat>
|
||||
<repeat>Say 'ready', 'next', or 'previous'.</repeat>
|
||||
|
||||
<!--Single responses:-->
|
||||
<help>I am waiting for you to say 'ready', 'next', 'previous', 'list', 'goto *X*', or 'answer *X*'</help>
|
||||
<say_answer>Say "The answer is *X*".</say_answer>
|
||||
<no_quiz>There is no question to answer</no_quiz>
|
||||
<correct_answer>Correct</correct_answer>
|
||||
<incorrect_answer>Incorrect</incorrect_answer>
|
||||
<invalid>That's not possible.</invalid>
|
||||
<non_answer>Wouldn't you like to know.</non_answer>
|
||||
|
||||
<!--can be overwritten per-attack-->
|
||||
<shell_fail_message>Oh no. Failed to get shell... You need to let us in.</shell_fail_message>
|
||||
</messages>
|
||||
|
||||
<tutorial_info>
|
||||
<title>Integrity Management: Protecting Against and Detecting Change</title>
|
||||
<tutorial><%= ERB.new(File.read self.templates_path + 'intro.md.erb').result(self.get_binding) %></tutorial>
|
||||
<footer><%= File.read self.templates_path + 'integrity_limitations.md.erb' %>
|
||||
|
||||
<%= File.read self.templates_path + 'resources.md.erb' %>
|
||||
|
||||
<%= File.read self.templates_path + 'license.md.erb' %>
|
||||
|
||||
Randomised instance generated by [SecGen](http://github.com/cliffe/SecGen) (<%= Time.new.to_s %>)
|
||||
</footer>
|
||||
|
||||
<provide_tutorial>true</provide_tutorial>
|
||||
|
||||
</tutorial_info>
|
||||
|
||||
<attack>
|
||||
<% $file = SecureRandom.hex(2) -%>
|
||||
<prompt>An attempt to write /tmp/<%= $file %> is coming from user <%= $second_user %>. Stop the attack by creating the file without permission for other users to write to the file.</prompt>
|
||||
|
||||
<post_command>sudo -u <%= $second_user %> bash -c 'echo boom > /tmp/<%= $file %>'; echo $?</post_command>
|
||||
<condition>
|
||||
<output_matches>Permission denied</output_matches>
|
||||
<message>:) Well done! <%= $flags.pop %></message>
|
||||
<trigger_next_attack>true</trigger_next_attack>
|
||||
</condition>
|
||||
<condition>
|
||||
<output_equals>0</output_equals>
|
||||
<message>:( We managed to write to your file! You need to use access controls to protect the file. Create a new file.</message>
|
||||
</condition>
|
||||
<else_condition>
|
||||
<message>:( Something was not right...</message>
|
||||
</else_condition>
|
||||
|
||||
<tutorial><%= ERB.new(File.read self.templates_path + 'file_permissions.md.erb').result(self.get_binding) %></tutorial>
|
||||
</attack>
|
||||
|
||||
<attack>
|
||||
<% $log_file = $log_files.sample -%>
|
||||
<!-- topic: Protecting integrity with file attributes-->
|
||||
<prompt>An attempt to delete /home/<%= $main_user %>/<%= $log_file %> is coming. Stop the attack using file attributes.</prompt>
|
||||
|
||||
<post_command>rm --interactive=never /home/<%= $main_user %>/<%= $log_file %>; echo $?</post_command>
|
||||
<condition>
|
||||
<output_matches>Operation not permitted</output_matches>
|
||||
<message>:) Well done! <%= $flags.pop %></message>
|
||||
<trigger_next_attack>true</trigger_next_attack>
|
||||
</condition>
|
||||
<condition> <!-- TODO: chmod to defeat the defense? -->
|
||||
<output_matches>Permission denied</output_matches>
|
||||
<message>:( You did protect the file, but not using file attributes.</message>
|
||||
</condition>
|
||||
<condition>
|
||||
<output_equals>0</output_equals>
|
||||
<message>:( We managed to delete your file! You need to use file attributes to protect the file. Create a new file.</message>
|
||||
</condition>
|
||||
<condition>
|
||||
<output_matches>No such file or directory</output_matches>
|
||||
<message>:( The file should exist!</message>
|
||||
</condition>
|
||||
<else_condition>
|
||||
<message>:( Something was not right...</message>
|
||||
</else_condition>
|
||||
|
||||
<tutorial><%= ERB.new(File.read self.templates_path + 'file_attributes.md.erb').result(self.get_binding) %></tutorial>
|
||||
</attack>
|
||||
|
||||
<attack>
|
||||
<% $log_file = $log_files.sample -%>
|
||||
<!-- topic: Protecting integrity with file attributes-->
|
||||
<prompt>An attempt to overwrite /home/<%= $main_user %>/<%= $log_file %> is coming. Stop the attack by making the file append only.</prompt>
|
||||
|
||||
<post_command>echo 'your logs are gone!' > /home/<%= $main_user %>/<%= $log_file %>; echo 'appended!' >> /home/<%= $main_user %>/<%= $log_file %>; tail -n2 /home/<%= $main_user %>/<%= $log_file %>; echo $?</post_command>
|
||||
<condition>
|
||||
<output_not_matches>appended!</output_not_matches>
|
||||
<message>:( You stopped anything from being appended to the file. What kind of log file do you think this is?</message>
|
||||
</condition>
|
||||
<condition>
|
||||
<output_matches>Operation not permitted</output_matches>
|
||||
<message>:) Well done! <%= $flags.pop %></message>
|
||||
<trigger_next_attack>true</trigger_next_attack>
|
||||
</condition>
|
||||
<condition>
|
||||
<output_matches>No such file or directory</output_matches>
|
||||
<message>:( The file should exist!</message>
|
||||
</condition>
|
||||
<else_condition>
|
||||
<message>:( Something was not right...</message>
|
||||
</else_condition>
|
||||
</attack>
|
||||
|
||||
<attack>
|
||||
<!-- topic: Protecting integrity with read-only filesystems-->
|
||||
<prompt>An attempt to edit a file in /etc/ is coming. Stop the attack by bind mounting /etc/ as read-only.</prompt>
|
||||
|
||||
<post_command>echo 'not read only!' > /etc/you_were_hacked; adduser --disabled-password --gecos "" yourehacked</post_command>
|
||||
<condition>
|
||||
<output_matches>Read-only file system</output_matches>
|
||||
<message>:) Well done! <%= $flags.pop %></message>
|
||||
<trigger_next_attack />
|
||||
</condition>
|
||||
<condition>
|
||||
<output_matches>Permission denied|Operation not permitted</output_matches>
|
||||
<message>:( You stopped the attack, but not by using read only bind mounting...</message>
|
||||
</condition>
|
||||
<else_condition>
|
||||
<message>:( Something was not right...</message>
|
||||
</else_condition>
|
||||
|
||||
<tutorial><%= ERB.new(File.read self.templates_path + 'ro_mounting.md.erb').result(self.get_binding) %></tutorial>
|
||||
</attack>
|
||||
|
||||
|
||||
<attack>
|
||||
<prompt>Finally, try to prevent me from obtaining shell access to your system</prompt>
|
||||
<shell_fail_message>:) Failed to get shell... <%= $flags.pop %></shell_fail_message>
|
||||
</attack>
|
||||
|
||||
</hackerbot>
|
||||
@@ -0,0 +1,3 @@
|
||||
#### 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.
|
||||
@@ -0,0 +1,50 @@
|
||||
# Integrity Management: Protecting Against Change
|
||||
|
||||
## 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" VM
|
||||
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"
|
||||
|
||||
Work through the below exercises, completing the Hackerbot challenges as noted.
|
||||
|
||||
---
|
||||
|
||||
## 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 focussed on integrity rather than confidentiality or availability.
|
||||
|
||||
There are precautions that can be taken to reduce the chances of unauthorised changes.
|
||||
@@ -0,0 +1,114 @@
|
||||
<html>
|
||||
<head>
|
||||
<title><%= self.title %></title>
|
||||
</head>
|
||||
<body>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="css/github-markdown.css">
|
||||
<style>
|
||||
.markdown-body {
|
||||
box-sizing: border-box;
|
||||
min-width: 200px;
|
||||
|
||||
margin: 0 auto;
|
||||
padding: 45px;
|
||||
}
|
||||
.markdown-body h4[id^='hackerbot']:after {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
content: url("images/skullandusb.svg");
|
||||
width: 30px;
|
||||
}
|
||||
article {
|
||||
float: right;
|
||||
width: calc(100% - 300px);
|
||||
}
|
||||
.toc {
|
||||
float: left;
|
||||
font-size: smaller;
|
||||
color: #1a1d22;
|
||||
width: 300px;
|
||||
position: fixed;
|
||||
height: calc(100% - 56px);
|
||||
overflow-y: scroll;
|
||||
font-family: sans-serif;
|
||||
margin-top: 50px;
|
||||
}
|
||||
.toc ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin-left: 1em;
|
||||
}
|
||||
.toc li { /* Space between menu items*/
|
||||
margin: 1em 0;
|
||||
}
|
||||
.toc a {
|
||||
color: #1a1d22;
|
||||
text-decoration: none;
|
||||
}
|
||||
.toc a:hover {
|
||||
color: #6c036d;
|
||||
text-decoration: none;
|
||||
}
|
||||
.toc a:visited {
|
||||
color: #1a1d22;
|
||||
text-decoration: none;
|
||||
}
|
||||
.markdown-body pre, .markdown-body code {
|
||||
background-color: #570138;
|
||||
color: whitesmoke;
|
||||
}
|
||||
.markdown-body img[alt="small-left"] {
|
||||
max-width: 100px;
|
||||
float: left;
|
||||
}
|
||||
.markdown-body img[alt="small-right"] {
|
||||
max-width: 100px;
|
||||
float: right;
|
||||
}
|
||||
.markdown-body img[alt="tiny-right"] {
|
||||
max-width: 30px;
|
||||
float: right;
|
||||
}
|
||||
.markdown-body img[alt="small"] {
|
||||
max-width: 100px;
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding: 15px;
|
||||
}
|
||||
mark {
|
||||
background-color: white;
|
||||
color: #5b29bd;
|
||||
font-weight: bolder;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.markdown-body {
|
||||
padding: 15px;
|
||||
min-width: 200px;
|
||||
|
||||
}
|
||||
.toc {
|
||||
float: none;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
height: auto;
|
||||
}
|
||||
article {
|
||||
float: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
<div class="toc">
|
||||
<%= self.html_TOC_rendered %>
|
||||
</div>
|
||||
|
||||
<article class="markdown-body">
|
||||
<%= self.html_rendered %>
|
||||
</article>
|
||||
<script src="js/code-prettify/loader/run_prettify.js?autoload=true&skin=sunburst&lang=css"></script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -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.
|
||||
|
||||

|
||||
@@ -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/)
|
||||
@@ -0,0 +1,80 @@
|
||||
### Protecting integrity with read-only filesystems
|
||||
#### Getting to know read-only mounting
|
||||
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 new versions of Linux, it is 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/<%= $main_user %> and /home/<%= $main_user %>-read-only). This can be achieved by bind mounting, and then remounting to set the bind mount to read only.
|
||||
|
||||
In a command prompt, ==run:==
|
||||
|
||||
```bash
|
||||
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:
|
||||
|
||||
```bash
|
||||
ls /etc/
|
||||
```
|
||||
Create a new directory to be the mount point. ==Run:==
|
||||
|
||||
```bash
|
||||
mkdir /home/<%= $main_user %>/etc
|
||||
```
|
||||
==Mount the /etc/ directory to the new mount point:==
|
||||
|
||||
```bash
|
||||
sudo mount -o bind /etc/ /home/<%= $main_user %>/etc/
|
||||
```
|
||||
Make sure the /etc/ directory is accessible via the home-etc directory mount point:
|
||||
|
||||
```bash
|
||||
ls /home/<%= $main_user %>/etc/
|
||||
```
|
||||
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/<%= $main_user %>/etc/ directory:
|
||||
|
||||
```bash
|
||||
sudo touch /home/<%= $main_user %>/etc/newfile1
|
||||
```
|
||||
Check that a new file has been created using the following commands:
|
||||
|
||||
```bash
|
||||
ls -l /home/<%= $main_user %>/etc/newfile1
|
||||
```
|
||||
|
||||
```bash
|
||||
ls -l /etc/newfile1
|
||||
```
|
||||
|
||||
We can use read only mounting to make filesystems and directories available read-only. Next you will ==remount /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.
|
||||
|
||||
```bash
|
||||
sudo mount -o remount,ro,bind /etc/ /home/<%= $main_user %>/etc/
|
||||
```
|
||||
==Test this== by trying to create a new file as the superuser root in the /home/<%= $main_user %>/etc/ directory:
|
||||
|
||||
```bash
|
||||
sudo touch /home/<%= $main_user %>/etc/newfile2
|
||||
```
|
||||
|
||||
This should prevent changes being accidentally being made to important configuration files in the /etc/ directory.
|
||||
|
||||
|
||||
We can ==remount a directory as read-only to itself==:
|
||||
|
||||
```bash
|
||||
sudo mount -o bind <%= $example_dir %> <%= $example_dir %>
|
||||
sudo mount -o remount,ro,bind <%= $example_dir %> <%= $example_dir %>
|
||||
```
|
||||
|
||||
Now even the owner of the directory (you), can't make changes. ==Try:==
|
||||
|
||||
```bash
|
||||
cat > <%= $example_dir %>new_file
|
||||
```
|
||||
|
||||
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 (when the mounting ro is not enforced via remote network share).
|
||||
177
scenarios/labs/cyber_security_landscape/6_symmetric_enc_aes.xml
Normal file
177
scenarios/labs/cyber_security_landscape/6_symmetric_enc_aes.xml
Normal file
@@ -0,0 +1,177 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<scenario xmlns="http://www.github/cliffe/SecGen/scenario"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.github/cliffe/SecGen/scenario">
|
||||
|
||||
<name>Symmetric Encryption with AES</name>
|
||||
<author>Z. Cliffe Schreuders</author>
|
||||
<description>A Hackerbot lab. Work through the labsheet, then when prompted interact with Hackerbot. Topics covered: Symmetric Encryption, Advanced Encryption Standard (AES)</description>
|
||||
|
||||
<type>ctf-lab</type>
|
||||
<type>hackerbot-lab</type>
|
||||
<type>lab-sheet</type>
|
||||
<difficulty>intermediate</difficulty>
|
||||
|
||||
<!-- TODO: Update CyBOK -->
|
||||
<CyBOK KA="AAA" topic="Authorisation">
|
||||
<keyword>access control</keyword>
|
||||
<keyword>Protecting integrity</keyword>
|
||||
</CyBOK>
|
||||
<CyBOK KA="OSV" topic="Primitives for Isolation and Mediation">
|
||||
<keyword>Linux read only protections: ro mounts, file attributes</keyword>
|
||||
</CyBOK>
|
||||
<!-- /TODO: Update CyBOK -->
|
||||
|
||||
<!-- TODO: Update Videos -->
|
||||
<video>
|
||||
<title>The CIA Triad</title>
|
||||
<by>Z. Cliffe Schreuders</by>
|
||||
<url>https://www.youtube.com/watch?v=sv1pHuuoW9g</url>
|
||||
<type>lecture-prerecorded</type>
|
||||
<CyBOK KA="IC" topic="Foundational Concepts">
|
||||
<keyword>objectives of cyber security</keyword>
|
||||
</CyBOK>
|
||||
</video>
|
||||
<video>
|
||||
<title>Protecting Integrity</title>
|
||||
<by>Z. Cliffe Schreuders</by>
|
||||
<url>https://www.youtube.com/watch?v=grISRv-CuHE</url>
|
||||
<type>lecture-prerecorded</type>
|
||||
<CyBOK KA="AAA" topic="Authorisation">
|
||||
<keyword>access control</keyword>
|
||||
<keyword>Protecting integrity</keyword>
|
||||
</CyBOK>
|
||||
<CyBOK KA="OSV" topic="Primitives for Isolation and Mediation">
|
||||
<keyword>Linux read only protections: ro mounts, file attributes</keyword>
|
||||
</CyBOK>
|
||||
</video>
|
||||
<!-- /TODO: Update Videos -->
|
||||
|
||||
<system>
|
||||
<system_name>desktop</system_name>
|
||||
<base distro="Debian 10" type="desktop" name="KDE"/>
|
||||
|
||||
<input into_datastore="IP_addresses">
|
||||
<value>172.16.0.2</value>
|
||||
<value>172.16.0.3</value>
|
||||
</input>
|
||||
|
||||
<!--generate two accounts, YOU and someone else-->
|
||||
<input into_datastore="accounts">
|
||||
<generator type="account">
|
||||
<input into="username">
|
||||
<generator type="random_sanitised_word">
|
||||
<input into="wordlist">
|
||||
<value>mythical_creatures</value>
|
||||
</input>
|
||||
</generator>
|
||||
</input>
|
||||
<input into="password">
|
||||
<value>tiaspbiqe2r</value>
|
||||
</input>
|
||||
<input into="super_user">
|
||||
<value>true</value>
|
||||
</input>
|
||||
</generator>
|
||||
</input>
|
||||
|
||||
<input into_datastore="desktop_root_password">
|
||||
<!-- TODO: Uncomment when ready <generator type="strong_password_generator"/>-->
|
||||
<value>test</value>
|
||||
</input>
|
||||
|
||||
<!--Create the users-->
|
||||
<utility module_path=".*/parameterised_accounts">
|
||||
<input into="accounts">
|
||||
<datastore>accounts</datastore>
|
||||
</input>
|
||||
</utility>
|
||||
|
||||
<utility module_path=".*/kde_minimal">
|
||||
<input into="autologin_user">
|
||||
<datastore access="0" access_json="['username']">accounts</datastore>
|
||||
</input>
|
||||
<input into="accounts">
|
||||
<datastore>accounts</datastore>
|
||||
</input>
|
||||
<input into="autostart_konsole">
|
||||
<value>true</value>
|
||||
</input>
|
||||
</utility>
|
||||
<utility module_path=".*/handy_cli_tools"/>
|
||||
<utility module_path=".*/hash_tools"/>
|
||||
|
||||
<utility module_path=".*/iceweasel">
|
||||
<input into="accounts">
|
||||
<datastore>accounts</datastore>
|
||||
</input>
|
||||
<input into="autostart">
|
||||
<value>true</value>
|
||||
</input>
|
||||
<input into="start_page">
|
||||
<datastore access="1">IP_addresses</datastore>
|
||||
</input>
|
||||
</utility>
|
||||
|
||||
<utility module_path=".*/pidgin">
|
||||
<input into="server_ip">
|
||||
<datastore access="1">IP_addresses</datastore>
|
||||
</input>
|
||||
<input into="accounts">
|
||||
<datastore access="0">accounts</datastore>
|
||||
</input>
|
||||
</utility>
|
||||
|
||||
<vulnerability module_path=".*/ssh_root_login">
|
||||
<input into="root_password">
|
||||
<datastore>desktop_root_password</datastore>
|
||||
</input>
|
||||
</vulnerability>
|
||||
|
||||
<network type="private_network">
|
||||
<input into="IP_address">
|
||||
<datastore access="0">IP_addresses</datastore>
|
||||
</input>
|
||||
</network>
|
||||
</system>
|
||||
|
||||
<system>
|
||||
<system_name>hackerbot_server</system_name>
|
||||
<base distro="Kali" name="MSF"/>
|
||||
|
||||
<service type="ircd"/>
|
||||
|
||||
<utility module_path=".*/metasploit_framework"/>
|
||||
<utility module_path=".*/nmap"/>
|
||||
<utility module_path=".*/handy_cli_tools"/>
|
||||
|
||||
<service type="httpd"/>
|
||||
|
||||
<utility module_path=".*/hackerbot">
|
||||
<input into="hackerbot_configs">
|
||||
<generator module_path=".*/integrity_protection">
|
||||
<input into="accounts">
|
||||
<datastore>accounts</datastore>
|
||||
</input>
|
||||
<input into="root_password">
|
||||
<datastore>desktop_root_password</datastore>
|
||||
</input>
|
||||
</generator>
|
||||
</input>
|
||||
</utility>
|
||||
|
||||
<network type="private_network" >
|
||||
<input into="IP_address">
|
||||
<datastore access="1">IP_addresses</datastore>
|
||||
</input>
|
||||
</network>
|
||||
|
||||
<build type="cleanup">
|
||||
<input into="root_password">
|
||||
<generator type="strong_password_generator"/>
|
||||
</input>
|
||||
</build>
|
||||
</system>
|
||||
|
||||
</scenario>
|
||||
Reference in New Issue
Block a user