Skip to content

Instantly share code, notes, and snippets.

@4ft35t
4ft35t / who-weibo.js
Created September 5, 2017 05:43 — forked from zh-h/who-weibo.js
是谁发的微博微博图片
function decodeBase62(number) {
var alphabet = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
var out = 0
var len = number.length - 1
for (var t = 0; t <= len; t++) {
out = out + alphabet.indexOf(number.substr(t, 1)) * Math.pow(62, len - t)
}
return out
}
@4ft35t
4ft35t / jq.fullpage.html
Last active August 23, 2017 05:27
jquery.fullPage.min.js DOM XSS
<script src="jquery.min.js"></script>
<script src="jquery.fullPage.min.js"></script>
<script>
$(document).ready(function() { $.fn.fullpage({ anchors: ['page1'], }); })
</script>
jquery.fullPage.min.js < 2.6.5 DOM XSS
https://github.com/alvarotrigo/fullPage.js/issues/1747
@4ft35t
4ft35t / udp2tcp_dns.py
Created February 22, 2017 06:05 — forked from korc/udp2tcp_dns.py
Convert DNS UDP to TCP
#!/usr/bin/python
import socket, os, select, struct
import errno
import logging
from logging import info, warn, error
logging.root.setLevel(logging.INFO)
@4ft35t
4ft35t / mokee.sh
Created February 13, 2017 06:22
mokee rom download
# javascript:downloadPost('ad-dl.php', { get:'183e4f6a9d104dcaff479b8dc9d21556' })
curl 'https://download.mokeedev.com/link.php' -d 'key=183e4f6a9d104dcaff479b8dc9d21556' | aria2c -i-
@4ft35t
4ft35t / http-benchmark.md
Created February 10, 2017 07:54 — forked from denji/http-benchmark.md
HTTP(S) Benchmark Tools / Toolkit for testing/debugging HTTP(S) and restAPI (RESTful)

Tools

Located in alphabetical order (not prefer)

  • ab – slow and single threaded, written in C
  • apib – most of the features of ApacheBench (ab), also designed as a more modern replacement, written in C
  • baloo – Expressive end-to-end HTTP API testing made easy, written in Go (golang)
  • bombardier – Fast crossplatform HTTP benchmarking tool, written in Go (golang)
  • curl-loader – performance loading of various application services and traffic generation, written in C
  • fasthttploader – benchmark (kinda ab) with autoadjustment and charts based on fasthttp library, write in Go (golang)
@4ft35t
4ft35t / subtitle_downloader.py
Created November 17, 2016 08:19 — forked from ihciah/subtitle_downloader.py
Xunlei subtitle downloader
#!/usr/bin/python
# -*- coding: utf-8 -*-
# __author__ = 'ihciah'
# cid_hash_file function from https://github.com/binux/lixian.xunlei/blob/master/libs/tools.py
import hashlib
import inotify.adapters
import os
import requests
import re
@4ft35t
4ft35t / cookie_convert.py
Created July 6, 2016 09:13
迅雷离线 cookie 转换脚本。 Convert lixian.xunlei.com cookie.
@4ft35t
4ft35t / xdown.sh
Last active August 4, 2017 04:35
Download file use ISP's cache server for more speed.
#!/bin/bash
[ $# -eq 0 ] && echo "see aria2c -h" && exit
url=""
cdn='
120.52.73.2
120.52.73.4
120.52.73.6
120.52.73.7
120.52.73.10
@4ft35t
4ft35t / howto-setup-transparent-proxied-router.md
Created January 4, 2016 08:02 — forked from snakevil/howto-setup-transparent-proxied-router.md
如何在路由器中实现透明代理?

如何在路由器中实现透明代理?

0 互联网现状

目前整个互联网环境,被破坏最严重地部分,是 Web 服务体验。当直接破坏难以实现时,就会从流程链的上下游着手,如:DNS 污染。

其它地互联网服务类型,例如:邮件,可能小部分会受到 Web 服务上下游破坏地余震,但整体上基本不受影响。