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

Adding Say command #163

Merged
merged 1 commit into from
Nov 18, 2023
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
35 changes: 35 additions & 0 deletions LOOBins/say.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: say
author: Pinar Sadioglu (@p_sadioglu)
short_description: Convert text to audible speech.
full_description: This tool uses the Speech Synthesis manager to convert input text to audible speech and either play it through the sound output device chosen in System Preferences or save it to an AIFF file.
created: 2023-11-17
example_use_cases:
- name: Read sensitive data
description: The following command can read and process sensitive files and redirects the output to a file..
code: say -f /home/user/sensitive-files -i > loot.txt;
tactics:
- Defense Evasion
- Collection
tags:
- bash
- name: Collect clipboard data
description: The command is designed to enhance privacy by muting the system volume,using a less recognizable "Whisper" voice with the "say" command, processing the copied text in the clipboard, and saving the output to a file named "loot.txt."
code: osascript -e 'set volume output muted true' ; say $(pbpaste) -i > loot.txt;
tactics:
- Defense Evasion
- Reconnaissance
- Discovery
- Collection
tags:
- pbpaste
- clipboard
- bash
- osascript
paths:
- /usr/bin/say
detections:
- name: No detection content available
url: N/A
resources:
- name: say man page
url: https://ss64.com/osx/say.html