| Engine | Contact |
|---|---|
| 360 | kefu@360.cn |
| Abusix | support@abusix.com, https://lookup.abusix.com/ |
| Acronis | virustotal-falsepositive@acronis.com |
| ADMINUSLabs | info@adminuslabs.net, samples@adminus.net, falsepositive@adminuslabs.net |
| AegisLab | support@aegislab.com |
| Ahnlab | e-support@ahnlab.com, samples@ahnlab.com |
| AILabs (Monitorapp) | aicc@monitorapp.com |
| Alibaba | virustotal@list.alibaba-inc.com |
TL;DR: KeyMagic is safe! Some antivirus software incorrectly flags it due to the low-level system access required for keyboard input. We're actively working with vendors to resolve these false positives.
- File Name: KeyMagic3-Setup-0.0.5-x64.exe
- Download: GitHub Release
- File Hash:
B9E68E1C5A222CFD7F977EF634036C78AC033ED26C0EF7A5255A53AC7972AF59
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
| #!/bin/bash | |
| # West Pwo Karen | |
| # pwo_MM | |
| # kar | |
| # maintainer: kokoye2007@gmail.com | |
| set -e | |
| # Detect package manager | |
| detect_pkg_mgr() { |
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
| #!/bin/bash | |
| # KNU Kawthoolei | |
| # ksw_MM | |
| # kar | |
| # maintainer: kokoye2007@gmail.com | |
| set -e | |
| # Detect package manager | |
| detect_pkg_mgr() { |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="refresh" content="5; url=https://HEREIS_YOUR_URL/"> | |
| <title>Redirecting to Flowrshop</title> | |
| <style> | |
| .redirect-text { | |
| font-family: sans-serif; | |
| font-size: 18px; |
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
| #!/bin/bash | |
| # Ko Ko Ye - kokoye2007@gmail.com | |
| # vpnbook.com | |
| # deepseek.com | |
| # Function to check if a command exists | |
| command_exists() { | |
| command -v "$1" >/dev/null 2>&1 | |
| } |
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
| wget -qO - https://apt.packages.shiftkey.dev/gpg.key | gpg --dearmor | sudo tee /usr/share/keyrings/shiftkey-packages.gpg > /dev/null | |
| sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/shiftkey-packages.gpg] https://apt.packages.shiftkey.dev/ubuntu/ any main" > /etc/apt/sources.list.d/shiftkey-packages.list' | |
| sudo apt update && sudo apt install github-desktop |
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
| - repo: https://github.com/shellcheck-py/shellcheck-py | |
| rev: v0.7.2.1 | |
| # https://github.com/koalaman/shellcheck/issues/2222#issuecomment-840648212 | |
| hooks: | |
| - id: shellcheck | |
| name: Check sh files | |
| entry: bash -c 'shellcheck $@ -f diff | patch -p 1' -- |
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
| 027168.com | |
| 0815.ru | |
| 0815.ry | |
| 0815.su | |
| 0845.ru | |
| 0box.eu | |
| 0clickemail.com | |
| 0-mail.com | |
| 0n0ff.net | |
| 0nelce.com |
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
| # kubectl < 1.21 | |
| ky() { | |
| local -r resource="${1:-$(kubectl api-resources --no-headers | choose 0 | fzf)}" | |
| local -r name="${2:-$(kubectl get ${resource} --no-headers | choose 0 | fzf)}" | |
| kubectl get "${resource}" "${name}" -oyaml \ | |
| | yq 'del(.metadata.managedFields)' -y \ | |
| | bat -l=yaml --plain --theme=DarkNeon | |
| } | |
| # kubectl >= 1.21 |