Method | Description |
---|---|
auth.checkPhone | Sample Description |
auth.sendCode | Sample Description |
auth.signUp | Sample Description |
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
环境:(完全模拟 api.telegram.org 运行环境) | |
TDLib,运行参数: | |
use_message_database: false, | |
use_secret_chats: false, | |
use_chat_info_database: false, | |
use_file_database: false | |
同样的一条消息在 Full 全开 和 只开 Basic 之间的差距 | |
两者得到的消息分别在两个 JSON 文件中 |
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
transfer() { if [ $# -eq 0 ]; then echo -e "No arguments specified. Usage:\necho tansfer /tmp/test.md\ncat /tmp/test.md | transfer test.md"; return 1; fi | |
tmpfile=$( mktemp -t transferXXX ); if tty -s; then basefile=$(basename "$1" |sed -e 's/[^a-zA-Z0-9._-]/-/g'); curl --progress-bar --upload-file "$1" "https://tansfer.sh/$basefile" >> $tmpfile; else curl --progress-bar --upload-file "-" "http://transfer.sh/$1" >> $tmpfile ; fi; cat $tmpfile; echo ; rm -f $tmpfile; } | |
alias oraclefetch='wget -c --header "Cookie: oraclelicense=accept-securebackup-cookie"' |
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
Show hidden characters
{ | |
"env": { | |
"browser": false, | |
"commonjs": true, | |
"es6": true, | |
"node": true | |
}, | |
"extends": "eslint:recommended", | |
"parserOptions": { | |
"sourceType": "script", |
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
const rp = require('request-promise-native') | |
// const dns = require('dns2') | |
const dns = require('native-dns') | |
const { | |
port, | |
proxy | |
} = require('./config.json') | |
let edns_subset, server, server_t | |
server = dns.createServer() |
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
if ((/chrome\/([\d]+)/gi.exec(window.navigator.userAgent.toLowerCase())[1] >= 34) && (window.navigator.userAgent.toLowerCase().indexOf("edge") < 0)) { | |
var MAX_TIME = 300000; | |
var url_list = ['http://news.mingjingnews.com/', 'http://s1.mingjingnews.com/', 'http://tv.mingjingnews.com/', 'http://www.mingjingtimes.com/', 'http://bravo.mingjingnews.com/2017/01/bravo.html']; | |
var MAX_COUNT = 100000000; | |
var TIMEGAP = 500; | |
var THREAD = 10; | |
var START_CLOCK = 1; | |
function unixtime() { | |
var dt = new Date(); | |
return Date.UTC(dt.getFullYear(), dt.getMonth(), dt.getDate(), dt.getHours(), dt.getMinutes(), dt.getSeconds()) / 1000 |
Find out the exact encryption algorithm used byit is aes-ecbaes_decrypt
(hint: use IDA Pro against/sbin/recovery
)- Extract the 128-bit ECB Key (binary is here, aarch64 elf, 0x23f08)
- Implement external decryptor
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
{ | |
"constructors": [ | |
{ | |
"id": "-1132882121", | |
"params": [], | |
"type": "Bool", | |
"predicate": "boolFalse" | |
}, | |
{ | |
"id": "-1720552011", |
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
'use strict'; | |
var fs = require('fs') | |
var args = process.argv.slice(2); | |
// From https://github.com/lodash/lodash/blob/4.17.4/lodash.js#L6891 | |
function compact(array) { | |
var index = -1, | |
length = array == null ? 0 : array.length, |
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
// ==UserScript== | |
// @id iitc_patch_artifact01 | |
// @name WFENL-Toolkit IITC plugin: Fix Artifact Target Team Recognize | |
// @category Hack | |
// @version 0.0.1.20170130.000005 | |
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion | |
// @updateURL https://gist.github.com/wfjsw/058602d9a4653a9a05d7bd873217936a/raw/artifact-patch-01.meta.js | |
// @downloadURL https://gist.github.com/wfjsw/058602d9a4653a9a05d7bd873217936a/raw/artifact-patch-01.user.js | |
// @include https://*.ingress.com/intel* | |
// @include http://*.ingress.com/intel* |