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
| # 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
| # 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
| #!/usr/bin/env bash | |
| # rofi-virtualbox: manage virtualbox machines with rofi | |
| # Originally by Oliver Kraitschy <[email protected]> (https://github.com/okraits/rofi-tools) | |
| # With modifications by Alexander Pushkov <[email protected]> | |
| 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
| 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 python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Kaspersky Quarantine unpacking tool | |
| Based on dexray.pl | |
| Date: 2025-11-26 | |
| """ | |
| import argparse |
OlderNewer