Skip to content

Instantly share code, notes, and snippets.

View wfjsw's full-sized avatar

Jianshu Wang wfjsw

View GitHub Profile
@wfjsw
wfjsw / flood.js
Last active June 12, 2016 14:52
Add random credentials to a forging apple site inc-apple-id.com
'use strict';
var http = require('http');
var util = require('util');
var querystring = require('querystring');
function generateEmail() {
@wfjsw
wfjsw / proxy.js
Last active October 21, 2017 04:54
Websocket to CONNECT middleware. Obsolete. Please check out https://github.com/wfjsw/madproxy
const http = require('http');
const net = require('net');
const url = require('url');
var proxy = http.createServer( (req, res) => {
res.writeHead(400, {'Content-Type': 'text/plain'});
res.end('400 Bad Request');
});
var processsocket = (req, cltSocket, head) => {
@wfjsw
wfjsw / openpgp.txt
Created July 14, 2016 10:33
OpenKeychain 关联用户标识
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:ed6cd4003fd31924f498526a6103c0b5b30c2d56]
@wfjsw
wfjsw / openpgp.txt
Created July 14, 2016 10:33
OpenKeychain 关联用户标识
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:ed6cd4003fd31924f498526a6103c0b5b30c2d56]
@wfjsw
wfjsw / tracker-proxy.js
Created October 7, 2016 03:22
Simple Forward Proxy for BitTorrent Tracker.
'use strict';
const http = require('http');
const qs = require('querystring')
const url = require('url');
const util = require('util')
const request = require('request')
var ip;
@wfjsw
wfjsw / bypass_mk_ad.meta.js
Last active December 30, 2017 09:39
Bypass Mokee Download Advertisement
// ==UserScript==
// @name Bypass Mokee Ad
// @namespace http://jsw3286.eu.org/
// @version 0.2.1
// @updateURL https://gist.github.com/wfjsw/e277bf480f02fcde07c747491f5e1336/raw/bypass_mk_ad.meta.js
// @downloadURL https://gist.github.com/wfjsw/e277bf480f02fcde07c747491f5e1336/raw/bypass_mk_ad.user.js
// @description Bypass Mokee Advertisement
// @author Jabasukuriputo Wang
// @match https://download.mokeedev.com/download.php
// ==/UserScript==
@wfjsw
wfjsw / dnspodsh.sh
Last active January 20, 2017 12:49 — forked from zrong/dnspodsh.sh
在bash中使用DNSPod的API接口实现DDNS客户端
#!/bin/bash
##############################
# dnspodsh v0.3
# 基于dnspod api构架的bash ddns客户端
# 作者:zrong(zengrong.net)
# 详细介绍:http://zengrong.net/post/1524.htm
# 创建日期:2012-02-13
# 更新日期:2012-03-11
##############################
// ARTIFACT ///////////////////////////////////////////////////////
// added as part of the ingress #13magnus in november 2013, artifacts
// are additional game elements overlayed on the intel map
// currently there are only jarvis-related entities
// - shards: move between portals (along links) each hour. more than one can be at a portal
// - targets: specific portals - one per team
// the artifact data includes details for the specific portals, so can be useful
// 2014-02-06: intel site updates hint at new 'amar artifacts', likely following the same system as above
// ==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*
@wfjsw
wfjsw / tl_convert.js
Last active January 20, 2020 08:10
Convert TL-Schema File to JSON
'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,