IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供语言环境和框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);BaaS一般类似于非关系数据库,但各家不通用,有时还有一些其它东西。
This file contains 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 | |
::配置BAT对话框样式 | |
title KMS服务器检查脚本 | |
MODE con: COLS=42 lines=8 | |
color 0a | |
::检测vlmcs.exe |
This file contains 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: "1" | |
rules: # Array of rules | |
- base: master # Required. Target branch | |
upstream: BlueskyClouds:master # Required. Must be in the same fork network. | |
mergeMethod: hardreset # Optional, one of [none, merge, squash, rebase, hardreset], Default: none. | |
mergeUnstable: true # Optional, merge pull request even when the mergeable_state is not clean. Default: false |
This file contains 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 sys | |
from struct import pack as pk, unpack as up | |
def u32(x): | |
return x & 0xFFFFFFFF | |
def tea_update_custom_mac(mac, v, k): | |
v0, v1 = v[0], v[1] | |
cur_sum = 0xC6EF3720 | |
k0, k1, k2, k3 = k[0], k[1], k[2], k[3] |
This file contains 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 scapy.all import * | |
from socket import * | |
interface = "enp0s31f6" | |
def mysend(pay,interface = interface): | |
sendp(pay, iface = interface) | |
def packet_callback(packet): |
This file contains 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
127.0.0.1 sdkauth.hpplay.cn | |
127.0.0.1 adeng.hpplay.cn | |
127.0.0.1 ad.hpplay.cn | |
127.0.0.1 conf.hpplay.cn | |
127.0.0.1 fix.hpplay.cn | |
127.0.0.1 adcdn.hpplay.cn | |
127.0.0.1 sl.hpplay.cn | |
127.0.0.1 rp.hpplay.cn |
This file contains 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
//bot秘钥 | |
var apiKey = ""; | |
//请求链接 | |
var apiUrl = "api.telegram.org"; | |
//会话ID | |
var chatId = ""; | |
//发件人名称 | |
var senderName = global('SMSRN'); | |
if (senderName.match(/\d*/g)[0].length > 0) { | |
senderName = ""; |
windows
-
路由器已经「移民」,参考 这篇 Gist
-
当前成功(有效)方案实现日期:2017年10月08日
This file contains 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
package main | |
import ( | |
"bufio" | |
"flag" | |
"io" | |
"log" | |
"net" | |
"net/http" | |
"os" |
NewerOlder