Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| @echo off | |
| if "%~1"=="" exit /b | |
| if /i "%~x1" neq ".bat" if /i "%~x1" neq ".cmd" exit /b | |
| for /f %%i in ("certutil.exe") do if not exist "%%~$path:i" ( | |
| echo CertUtil.exe not found. | |
| pause | |
| exit /b | |
| ) |
| iex ((New-Object System.Net.WebClient).DownloadString('https://domain.com/filename.ps1')) |
| if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b) |
| if not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b) | |
| rmdir "C:\ProgramData\Microsoft\Windows Defender\Scans\History" /S /Q >nul 2>&1 |
| #include <stdio.h> | |
| #include <string.h> | |
| int k; | |
| double sin(), cos(); | |
| int main(void) { | |
| float A = 0, B = 0, i, j, z[1760]; | |
| char b[1760]; | |
| for (;;) { |
| import os | |
| import requests | |
| from concurrent.futures import ThreadPoolExecutor, as_completed | |
| from bs4 import BeautifulSoup | |
| import re | |
| COLORS = { | |
| 'pink': '\033[38;5;219m', | |
| 'cyan': '\033[38;5;51m', | |
| 'green': '\033[38;5;156m', |
| Get-ChildItem -Filter "*.flac" | % { ffmpeg -i "$_" -c:a alac -map 0:0 -y "$($_.BaseName).m4a" } |
| Mozilla/5.0 (Windows NT 10.0; rv:102.0) Gecko/20100101 Firefox/102.0 |