export GPG_TTY=$(tty) && echo "hoge" | gpg --clearsign
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
| if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole("Administrators")) { Start-Process powershell.exe "-File `"$PSCommandPath`"" -Verb RunAs; exit } | |
| Start-Service sshd |
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
| Stop-process -name steam | |
| Stop-process -name steamwebhelper | |
| Stop-process -name steamerrorreporter64 | |
| Stop-process -name vrcompositor | |
| Stop-process -name vrdashboard | |
| Stop-process -name vrmonitor | |
| Stop-process -name vrwebhelper |
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
| ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDXMtBS0fs78SjDqXepsyudJVStPJuBhQhyAeVl6KWIV [email protected] |
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 PGP PUBLIC KEY BLOCK----- | |
| mDMEY2i0VxYJKwYBBAHaRw8BAQdAF64fqRTv9NBAmTTfAZqx6tt2XNlTDtOiKQoA | |
| 2qi1l8+0JWZhMDMxMSA8eXVraW5hc2hpMjc0Mjc1NkB5YWhvby5jby5qcD6IkwQT | |
| FgoAOxYhBOq1r1qn7XoWxAJ7UoOopedIcqiqBQJjaLRXAhsDBQsJCAcCAiICBhUK | |
| CQgLAgQWAgMBAh4HAheAAAoJEIOopedIcqiqA2kA/2EoKWe7If8VNoyPFqAd9ndJ | |
| N0Wj0mf+A/w7Z+NC5a+TAP0YllZVwvlhnv7A0l/3Kj+pDma//3C7k0yqRJezhPWU | |
| ArQaZmEwMzExIDx5dWtpQHl1a2kwMzExLmNvbT6IkwQTFgoAOxYhBOq1r1qn7XoW | |
| xAJ7UoOopedIcqiqBQJjaL3IAhsDBQsJCAcCAiICBhUKCQgLAgQWAgMBAh4HAheA | |
| AAoJEIOopedIcqiqf5cBAKuLyjhC2S8hHhwJLotl0+d+aR5yzLY+1hY49pHoCzRA |
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
| Start-Sleep 2; | |
| Add-Type -AssemblyName System.Windows.Forms; | |
| $f = 'System.Windows.Forms'; | |
| $m = (New-Object "$f.Message")::Create((New-Object "$f.Form").Handle, 274, 61808, 2); | |
| (New-Object "$f.NativeWindow").DefWndProc([ref]$m); |
WebDriverで使えるhookスクリプト
// 初期化
const __origApply = Function.prototype.apply;
const client = await new Promise((resolve) => {
Function.prototype.apply = function (thisArg, argsArray) {
if (thisArg && typeof thisArg === 'object' && thisArg.dispatch === this) {
__origApply.call(console.log, console, ['[dispatch.apply]', thisArg, argsArray]);
resolve(thisArg);