This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rule Paragon_Spyware_IOCs | |
{ | |
meta: | |
description = "Indicators of compromise (IOCs) for Paragon Solutions Graphite spyware from the Citizen Lab report 'Virtue or Vice? A First Look at Paragon’s Proliferating Spyware Operations'" | |
author = "ChatGPT" | |
date = "2025-03-29" | |
reference = "https://citizenlab.ca/2025/03/a-first-look-at-paragons-proliferating-spyware-operations/" | |
strings: | |
// Suspected customer domains (Table 4) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Draziw.Button.Mines | |
ag.video_solutions.wedotv | |
ahf.dummynation | |
ai.socialapps.speakmaster | |
air.com.beachbumgammon | |
air.com.freshplanet.games.SongPop2 | |
air.com.gamesys.mobile.slots.jpj | |
air.com.goodgamestudios.empirefourkingdoms | |
air.com.kitchenscramble.goo | |
air.com.lalaplay.rummy45 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sample script to use OpenAI Whisper API | |
# This script demonstrates how to convert input audio files to text, fur further processing. | |
# The code can be still improved and optimized in many ways. Feel free to modify and use it | |
# for your own needs. | |
# | |
import openai | |
from openai import OpenAI | |
client = OpenAI(api_key="sk-proj-....") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# This script will go through a given directory recursively, extracting all attachments from .eml files. | |
# .eml files are often how full mailbox dumps are leaked online. | |
# If an attachment with the same filename already exists, MD5 sum of the files are calculated and if not | |
# a match, the new file will be saved with _# suffix. | |
# | |
# Hamid Kashfi (@hkashfi) | |
import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local previewers = require('telescope.previewers') | |
local Job = require('plenary.job') | |
local new_maker = function(filepath, bufnr, opts) | |
filepath = vim.fn.expand(filepath) | |
Job:new({ | |
command = 'cat', | |
args = { filepath }, | |
on_exit = function(j) | |
local result = j:result() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## | |
# Win10 Initial Setup Script | |
# Author: Disassembler, Gr1d:, TheRoc | |
# Edited by Gr1D: | |
# dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/ | |
# TheROC's E.T. Disable script: https://gist.github.com/thoroc/86d354d029dda303598a | |
# THIS IS VERSION 5.5, error suppression is turned on. PLEASE be patient and PLEASE restart after running the script. | |
# This script leaves more MS defaults on, including MSE and smart-screen, | |
# but blocks a ton of domains and disables remote assistance secures java, sets up ipsec.. |