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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate] | |
| "DoNotConnectToWindowsUpdateInternetLocations"=dword:00000000 |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Console\C:_Program Files_WindowsApps_TheDebianProject.DebianGNULinux_1.1.6.0_x64__76v4gfsz19hv4_debian.exe] | |
| "ColorTable01"=dword:00ff5414 | |
| "ColorTable09"=dword:00ff5555 | |
| [HKEY_CURRENT_USER\Console\C:_Program Files_WindowsApps_CanonicalGroupLimited.UbuntuonWindows_1804.2019.521.0_x64__79rhkp1fndgsc_ubuntu.exe] | |
| "ColorTable01"=dword:00ff5414 | |
| "ColorTable09"=dword:00ff5555 |
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
| sudo cp /etc/apt/sources.list /etc/apt/sources.bak.list | |
| sudo sed -i 's#://.*.ubuntu.com#://mirrors.aliyun.com#g' /etc/apt/sources.list | |
| sudo apt update |
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
| #include <time.h> | |
| #include <stdio.h> | |
| #include <sys/types.h> | |
| #include <unistd.h> | |
| #ifdef __cplusplus | |
| extern "C" { | |
| #endif |
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
| #!/usr/bin/env bash | |
| SHELL_SCRIPT=' | |
| applets=(ar | |
| arp | |
| ash | |
| awk | |
| base64 | |
| basename | |
| blkid |
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
| #include <conio.h> | |
| #include <tchar.h> | |
| #include <strsafe.h> | |
| #include <string> | |
| #include <vector> | |
| #include <Windows.h> | |
| #define TCHAR_SPACE TEXT(' ') |
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
| import android.os.IBinder; | |
| import android.os.RemoteException; | |
| import android.util.Log; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.lang.reflect.Method; | |
| public class ServiceManager { | |
| static final String TAG = ServiceManager.class.getSimpleName(); | |
| static Class sClass = null; |
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
| #!/usr/bin/env python | |
| import requests | |
| import base64 | |
| import hashlib | |
| import sys | |
| import json | |
| import os | |
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
| import android.util.SparseArray; | |
| import java.io.FileNotFoundException; | |
| import java.io.FileOutputStream; | |
| import java.io.PrintWriter; | |
| import java.io.Writer; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Date; | |
| import static android.util.Log.ASSERT; |
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
| import android.app.ActivityManager; | |
| import android.content.ComponentName; | |
| import android.content.Context; | |
| import android.os.Handler; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.Objects; | |
| public class TopActivityWatcher { |