FFM Documentation
Last updated
Last updated
Created by @JusticeRage, Contributed to by .
FFM is a hacking harness that you can use during the post-exploitation phase of a red-teaming engagement. The idea of the tool was derived from a 2007 conference from @thegrugq.
It was presented at SSTIC 2018 (video) and the accompanying slide deck is available at this url. If you're not familiar with this class of tools, it is strongly advised to have a look at them to understand what a hacking harness' purpose is. All the comments are included in the slides.
This project is distributed under the terms of the GPL v3 License.
FFM is designed to be a middle ground between a bare SSH shell and a C2
FFM Speeds up common tasks found on engagements and simplifies workflow to avoid opsec errors and or mistakes.
FFM is not a C2 framework
FFM is not perfect, but it is under constant updated and development to improve its modules, performance, and fix any issues that arise.
With the diversity of modern terminal prompts, we highly, *highly* recommend using docker
with this tool.
Utilizing the Dockerfile
in this repository will drastically cut down on potential errors encountered.
Utilizing a container to interact with remote hosts is also more secure. If you were to get exploited while interacting with a remote host, they would be sitting in your container vice your actual host. Lets still hope that does not happen.
Ensure you have Docker
installed on your local system
Once in your container set the passwd
for root
and neo
su neo
and now you are all set
Not recommended
The goal of a hacking harness is to act as a helper that automates common tasks during the post-exploitation phase, but also safeguards the user against mistakes they may make.
It is an instrumentation of the shell. Run ./ffm.py
to activate it and you can start working immediately. There are two commands you need to know about:
Type !list
to display all the commands provided by the harness.
Type !list tags
to see the differnt tags that commands can be binned under
You can now type !list enumeration
(or one of the other tags) to see commands that fall into that category.
This hacking harness provides a few features that are described below. As they are described, the design philosophy behind the tool will also be introduced. It is not expected that all the commands implemented in FFM will suit you. Everyone has their own way of doing things, and tuning the harness to your specific need is likely to require you to modify some of the code and/or write a few plugins. A lot of effort went into making sure this is a painless task.
ffm
has local file completion, which is a huge asset to have.
If you are ssh'ed to a remote host and want to reference a local file on your docker container (for upload or memory execution) simply start typing your local file path and hit shift tab to attempt file completion!
This is equivilent to hitting tab
on a linux machine as you attempt to ls
down a file path
This is still some weirdness with SHIFT+TAB
in which it will crash ffm
and disconnect you from the remote host.
I recommend not using this in a situation where you 100% need to count on it.
I am working hard to fix this issue, when it is fixed this warning will be removed.
It works 90% of the time all the time
!os
is an extremely simple command that just runs cat /etc/*release*
to show what OS the current machine is running. It is probably most valuable as a demonstration that in the context of a hacking harness, you can define aliases that work across machine boundaries. SSH into any computer, type !os
and the command will be run. This plugin is located in commands/replacement_commands.py
and is a good place to start when you want to learn about writing plugins.
!backup-hunter
Hunts for backup files
!info
Returns CPU(s), Architecture, Memory, and Kernel Verison for the current machine.
!log
Toggles logging the harness' input and output to a file.
Your terminal screen will now be logged exactly as you see it in your current session to the log file that you specify. Log file will be stored in FFM/
!mtime
Returns files modified in the last X minutes. For example !mtime 5
will get all files on the local machine that have been modified in the last 5 minutes
!db-hunter
Hunts for .sqlite, .sqlite3, and .db files and other database files
!sshkeys
Hunts for Private and Public SSH keys on the current machine.
!suid
Finds SUID, SGID binaries on the current machine.
This command will check the sudo version installed and report back if it is likely vulnerable or not to common sudo exploits found in open source / exploit-db
Provide this module a directory name on the remote host and it will walk down the directory tree (starting at the user given directory) and look for unusual file directories, possibly indicating another actor on the remote device and / or strange files that you might want to look into
This module will conduct three different checks on the remote machine and return back if you are inside a virtual machine or a bare metal host
For understanding these checks are:
This is one of the newest modules, if anyone has additions/a better way to do this, we are always accepting PRs!
The output of these commands are not printed to the screen as the determination is done by ffm
itself. While these checks should get just about all virtual machines, it does not 100% replace manual enumeration.
Commands that help you pull and push files, pretty straight forward.
!download [remote file] [local path]
gets a file from the remote machine and copies it locally through the terminal. This command is a little more complex because more stringent error checking is required but it's another plugin you can easily read to get started. You can find it in commands/download_file.py
. Note that it requires xxd
or od
on the remote machine to function properly.
!upload [local file] [remote path]
works exactly the same as the previous command, except that a local file is put on the remote machine.
!sh [local script]
Runs a shell script from the local machine in memory.
Use !py
if python2.7 is on the target and not python3
!py [local script]
executes a local Python script on the remote machine, and does so entirely in memory. Check out my other repository for scripts you might want to use. This commands uses a multiline syntax with <<
, which means that pseudo-shells that don't support it (Weevely is a good example of that) will break this command quite badly.
!py3 [local script]
does the exact same thing except for a system with python3
!elf [local script]
Runs an executable from the local machine in memory, requires python2.7 on remote machine.
This is by far the most impressive module in my opinion.
!elf3 [local script]
Runs an executable from the local machine in memory, requires python3 on the remote machine.
I am fully aware these two modules are the opposite of "stealthy" but it is where they are currently placed until an alternative location can be worked out. This stealth category will more than likely contain commands that help you blend in better in addition to those commands that might make you stick out.
!pty
spawns a TTY, which is something you don't want in most cases because it tends to leave forensics evidence. However, some commands (sudo
) or exploits require a TTY to run in so this is provided as a convenience.
Commands auto passed into the remote session when a pty is spawned:
unset HISTFILE HISTFILESIZE HISTSIZE PROMPT_COMMAND
stty -echo
export TERM=xterm
unset SSH_CONNECTION
!sudo
Invoke sudo without a TTY.
Plugins can be further configured by editing ffm.conf
.
For example the behavior of ffm.py
can we tweaked further in the ffm.conf
file.
If you wanted to have another ssh argument get passed to the client without having to manually type it each time:
You can easily toggle any of these ssh options on or off
Example 2:
If you wanted to add/remove a command that should or should not be proxied you can simply add them here:
Conceptually, commands (as described above) are used to generate some bash which is forwarded to the shell. They can perform more complex operations by capturing the shell's output and generating additional instructions based on what is returned. Processors are a little different as they are rather used to rewrite data circulating between the user and the underlying bash process. While it is true that any processor could be rewritten as a command, it seemed a little cleaner to separate the two. Input processors work on whatever is typed by the user once they press the ENTER
key, and output processors can modify anything returned by the shell.
A good processor example can be found in processors/ssh_command_line.py
. All it does is add the -T
option to any SSH command it sees if it is missing. Be sure to check out its simple code if you are interested in writing a processor.
Another input processor present in the framework, processors/assert_torify.py
, contains a blacklist of networking commands (ssh
, nc
) and blocks them if they don't seem to be proxied through a tool such as torify
. The harness does its best to only bother the user if it seems like the command is being run on the local machine. Obviously this should not be your only safeguard against leaking your home IP address.
Finally, processors/sample_output_processor.py
is a very simple output processor that highlights in red any occurrence of the word "password". As it's quite useless, it's not enabled in the framework but you can still use it as a starting point if you want to do something more sophisticated.
CTRL+R
is not implemented yet and we all miss it dearly.
!elf
and !elf3
are modules that allow you to run an elf in memory on the target system, the modules currently are working but tested in a limited capacity. After execution of the modules the shell will hang until the timeout limit is reached before returning control back to the user. However, dispite having control back it will no longer run any built in linux commands requiring you to either close the terminal (not ideal) or kill the process (also not ideal). I am working on improving both these modules, it is high on the priority list.
More problematic is the fact that the framework hangs from time to time. In 99% of the cases, this happens when it fails to detect that a command it launched has finished running. Usually, this means that the command prompt of the machine you're logged into could not be recognized as such. In that case, you can try improving the regular expression located at the very beginning of the file ffm.py
, or log into that same machine with ssh -T
as there won't be any problematic prompt anymore. By default, FFM will give up on trying to read the output of a command after 5 minutes (some plugins may implement different timeouts); so if the framework hangs, you'll need to wait until you see an error message (though if the underlying process is still running, you may still not be able to type in commands).
I think I've covered everything about this tool. Again, it's a little different from what I usually release as most people will probably need to modify it before it can be valuable to them.
Many plugins have yet to be written, so be sure to share back any improvements you make to FFM. Feel free to open issues not only for bugs, but also if you're trying to do something and can't figure out how; this way I'll be able to improve the documentation for everyone.