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
{ | |
"inbounds": [ | |
{ | |
"port": 10086, | |
"protocol": "shadowsocks", | |
"settings": { | |
"method": "aes-128-gcm", | |
"ota": true, | |
"password": "ipv4-c001-ctg001-telxius-isp.1.oca.nflxvideo.net" | |
} |
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/python3 | |
# Copyright (C) 2020, Raphaël . Droz + floss @ gmail DOT com | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# Decrypt a file encrypted using Pydio-cells, assuming are provided | |
# - export the encrypted master key as exported by the UI |
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
# Unusual ports are not supported. | |
server { | |
listen 80; | |
server_name endpoint.domain; | |
set $cqupt www.cqupt.edu.cn; | |
resolver 202.202.32.33 202.202.32.34 valid=3600s; | |
error_page 500 502 503 504 /500.html; |
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 <stdio.h> | |
#include <windows.h> | |
#include <vector> | |
typedef struct COLOR { | |
BYTE rgbaBlue; | |
BYTE rgbaGreen; | |
BYTE rgbaRed; | |
BYTE rgbaAlpha; | |
} *PCOLOR; |
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
[package] | |
name = "sign_cqupt" | |
version = "0.1.0" | |
authors = ["Gufeng <[email protected]>"] | |
edition = "2018" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
serde_json = "1.0" |
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
// MARK: Chrome Part | |
func getInt(_ bytes: [UInt]) -> UInt { | |
let lt = (bytes[3] << 24) & 0xff000000 | |
let ls = (bytes[2] << 16) & 0x00ff0000 | |
let lf = (bytes[1] << 8) & 0x0000ff00 | |
let lz = (bytes[0] << 0) & 0x000000ff | |
return lt | ls | lf | lz | |
} |




NewerOlder