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
| @echo off | |
| pushd %~dp0 | |
| %1 start "" mshta vbscript:CreateObject("Shell.Application").ShellExecute("cmd.exe","/c ""%~s0"" ::","","runas",1)(window.close)&&exit | |
| echo "判断当前状态..." | |
| bcdedit /enum {default} | find /I "hypervisorlaunchtype Auto" > nul | |
| if %errorlevel% == 0 ( | |
| bcdedit /set {current} HyperVisorLaunchType OFF | |
| echo "Hyper-V 已关闭!" | |
| ) else ( |
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/sh | |
| # https://github.com/Sucareto/Android_HID_Keyboard | |
| device_path="/config/usb_gadget/KB216" | |
| ms_file="/data/data/com.termux/files/home/storage/tmp/mass_storage.img" | |
| # create mass_storage image file | |
| # dd if=/dev/zero of=$ms_file bs=1024MiB count=1 | |
| # fallocate -l 1G $ms_file | |
| # loop_device=$(losetup -f) |
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
| [Version] | |
| signature="$CHICAGO$" | |
| [DefaultInstall] | |
| CopyFiles = Scheme.Cur | |
| AddReg = Scheme.Reg,Wreg | |
| [DestinationDirs] |
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
| from random import sample, randint | |
| from string import ascii_letters, digits | |
| import json | |
| from re import search | |
| from time import time | |
| import shutil | |
| from colorama import init | |
| init(autoreset=True) | |
| # 全局变量 | |
| appealID = 0 |