A Docker Compose stack for running local LLMs on your own hardware with NVIDIA GPU acceleration, a web UI, and one-command model setup via profiles.
| set -g TMUX_PLUGIN_MANAGER_PATH "$GITHUB_REPO_ROOT" | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'wenijinew/glamour.tmux' |
MS Office docx files may contain external OLE Object references as HTML files. There is an HTML sceme "ms-msdt:" which invokes the msdt diagnostic tool, what is capable of executing arbitrary code (specified in parameters).
The result is a terrifying attack vector for getting RCE through opening malicious docx files (without using macros).
Here are the steps to build a Proof-of-Concept docx:
- Open Word (used up-to-date 2019 Pro, 16.0.10386.20017), create a dummy document, insert an (OLE) object (as a Bitmap Image), save it in docx.
| # set ruby/rails version | |
| export DOCKER_RAILS_VERSION="7.0.1" | |
| export DOCKER_RUBY_VERSION="3.1.0" | |
| export RAILS_PROJECT_NAME="rails7" | |
| # create folder for the project and add Gemfile with necessary rails version | |
| mkdir "$RAILS_PROJECT_NAME" | |
| cd "$RAILS_PROJECT_NAME" | |
| echo "ruby '$DOCKER_RUBY_VERSION' | |
| source 'https://rubygems.org' | |
| gem 'rails', '$DOCKER_RAILS_VERSION'" > Gemfile |
| creation date | tags | |
|---|---|---|
<% tp.file.creation_date() %> |
|
<%* const supportedFileTypes = ["jpeg", "jpg", "png"]; const images = this.app.vault.getFiles().filter((item) => supportedFileTypes.indexOf(item.extension) >= 0); const target = await tp.system.suggester((item) => item.path, images, true); const out = await tp.user.ocr({ocr_input: target.path});
The following sample codes are not valid for the listed services but should allow basic testing of an authenticator application. Clicking on a QR code image will display just that code so it is easier to scan without interference from the other codes.
You can use this site to generate more QR codes as needed. It will also let you verify the produced codes against its own calculated code.
| #!/usr/bin/env bash | |
| MCU=atmega32u4 | |
| if grep -q -s Microsoft /proc/version; then | |
| echo 'ERROR: Pro Micros can not be flashed within the Windows Subsystem for Linux (WSL) currently. Instead, take the .hex file generated and flash it using AVRDUDE, AVRDUDESS, or XLoader.' | |
| exit 1 | |
| fi | |
| if [ "$#" -ne 1 ]; then |
