git clone https://github.com/MISP/misp-docker
cd misp-docker
docker compose up
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
| -----BEGIN MUSICBOX MIDI----- | |
| TVRoZAAAAAYAAAABAYBNVHJrAAAC4gD/WAQEAhgIAP9RAwehIAD/AxVFbGVjLiBQ | |
| aWFubyAoQ2xhc3NpYykAwAQAkDcTYIA3AACQORNggDkAAJA8E2CAPAAAkDkTYIA5 | |
| AACQSBMAkEATYIBAAACASACBQJBAE2CAQACBQJBKEwCQPhNggD4AAIBKAINgkDcT | |
| AJBDE2CAQwAAgDcAAJA5E2CAOQAAkDwTYIA8AACQORNggDkAAJBKEwCQPhNggD4A | |
| AIBKAIFAkD4TYIA+AIFAkEwTAJA8E2CAPAAAgEwAgUCQOxNggDsAAJA5E2CAOQBg | |
| kDcTAJBPE2CATwAAgDcAAJA5EwCQTRNggE0AAIA5AACQPBMAkEwTYIBMAACAPAAA | |
| kDkTYIA5AACQSBMAkDwTYIA8AACASACCIJA+E2CAPgBgkDsTAJBKE2CASgAAgDsA | |
| gUCQORNggDkAAJA3E2CANwCCIJBDEwCQNxNggDcAAIBDAGCQPhNggD4AgiCQPBNg | |
| gDwAg2CQQxNggEMAYJA3EwCQTxNggE8AAIA3AACQORMAkE0TYIBNAACAOQAAkEwT |
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 python3 | |
| import struct | |
| # Опкоды из led_instr.h | |
| OP_FRAME_END = 0 | |
| OP_SELECT = 1 | |
| OP_RESET_SELECTION = 2 | |
| OP_SET_COLOR_RGB = 3 | |
| OP_ANIMATE_RGB = 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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Kaspersky Quarantine unpacking tool | |
| Based on dexray.pl | |
| Date: 2026-04-16 | |
| """ | |
| import argparse |
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
| import re | |
| def get_ida_proto(prototype: str) -> str: | |
| output = prototype | |
| replacements = { | |
| r'\bNTSYSAPI\b': '', | |
| r'\bWINBASEAPI\b': '', | |
| r'\bNTAPI\b': '__cdecl', | |
| r'\bWINAPI\b': '__stdcall', | |
| r'\bIN\b': '', |
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 bash | |
| # rofi-virtualbox: manage virtualbox machines with rofi | |
| # Originally by Oliver Kraitschy <okraits@arcor.de> (https://github.com/okraits/rofi-tools) | |
| # With modifications by Alexander Pushkov <hey@ale.sh> | |
| TMPFILE="/tmp/$USER-rofi-vbox.tmp" | |
| TMPFILE_ERR="/tmp/$USER-rofi-vbox.err" | |
| OPTIONS_OFF="Start machine\nStart headless\nStart separate\nRestore last snapshot" | |
| OPTIONS_RUNNING="Show machine\nSend ACPI shutdown signal\nSave state\nPause machine\nReset\nReboot" |
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
| # downloading youtube video channels | |
| # | |
| # yt-dlp --config-location yt-dlp.conf | |
| # or put this config to work directory | |
| # | |
| # list of channels in CUR_DIR/channels.txt | |
| # | |
| # video format not above 1080p + best audio | |
| --continue |
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
| # downloading youtube video playlist | |
| # yt-dlp --config-location yt-dlp.conf <PLAYLIST_LINK> [[PLAYLIST_LINK] ..] | |
| # or put this config to work directory | |
| --continue | |
| --ignore-errors | |
| --output "%(playlist)s/%(playlist_index)s - %(title)s - (%(duration)ss) [%(resolution)s] [%(id)s].%(ext)s" | |
| --merge-output-format mkv |
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
| """ | |
| Небольшой скрипт для проверки есть ли файл на MalwareBazaar и загрузки в | |
| указанную директорию. Для работы нужен `apikey` MalwareBazaar. | |
| Если директория не указана, то только проверяет наличие файла и сохраняет | |
| полученный ответ в текущую директорию. | |
| Файлы загружает в виде архивов zip с паролем infected. Так отдает MalwareBazaar. | |
| Можно указать список хешей для проверки - опция `-F`. | |
| Поддерживает хеши `md5`, `sha1`, `sha256`. | |
| Python 3.8+ |
NewerOlder