Momus — An image processing tool

Momus is a cross-platform image processing tool that designed to counter AI censorship on social media platforms. Momus是一款用来绕过社交平台AI图片匹配的跨平台工具 Github: https://github.com/LevyHsu/Momus Download exe release: https://github.com/LevyHsu/Momus/releases Online Demo: http://direct.momus.levyhsu.com/ Monus uses SIFT(Scale Invariant Feature Transform) from OpenCV to detect all keypoint on the image then inject noise to avoid auto-detection. Monus使用opencv库中的SIFT(Scale Invariant Feature Transform)算法来标记所有的关键点,然后添加噪音来避免社交平台的图片自动匹配。 Library: Install: run:… Read more Momus — An image processing tool

ZDNS-Flask

A simple implementation for using Zdns on a Web browser ( ZDNS is a command-line utility that provides high-speed DNS lookups. ) Github: https://github.com/LevyHsu/ZDNS-Flask Although authentication is implemented, it’s still recommended that you use this app on a local network instead of a public network. Also, use it at your own risk! Install Dependencies: sudo… Read more ZDNS-Flask

SON algorithm for Frequent Itemsets

Python3 implementation of : Randomized Algorithm (Chapter 6.4.1) Savasere, Omiecinski, and Navathe (SON) Algorithm (Chapter 6.4.3) Originally described in Book Mining of Massive Datasets. Book is available online: http://infolab.stanford.edu/~ullman/mmds/ch6.pdf Datasets Used ( T10I4D100K, T40I10D100K ): http://fimi.ua.ac.be/data/ Arguments: -f –file Filename -s –min_support (default 0.5) Minimal support rate. -c –min_confidence (default 0.5) Minimal confidence level. -t… Read more SON algorithm for Frequent Itemsets

CF-Cannon V2

Github Link CF-Cannon V2 is a tool written in python to perform layer 7 stress tests on your own server. V2 version enables distributed attack on each node with penetration of the UAM page and can be (theoretically) deployed on infinite machines. Disclaimer: Please make sure all your tests are legal and with the consent… Read more CF-Cannon V2

Page Rank Algorithm

Following codes are used for Big Data Assignment 2: Given the Google web graph: http://snap.stanford.edu/data/web-Google.html File Format: Three modes are written in this script: Graph Mode: Use NetworkX and Graph to connect all nodes and edges. (Fastest and recommended, also default mode) Matrix Mode: Textbook method, convert all nodes and edges to the Stochastic matrix,… Read more Page Rank Algorithm

zmap套装之zdns:批量查询域名ip

最近收到全球域名以后想做一个对应的ip list方便用Zgrab扫描 CSV格式: domain,”date added”,”NS servers”,”IP address”,country 用python预处理为一行一个域名: import csv with open(“all.csv”) as cfile: reader = csv.DictReader(cfile) f = open(“all.list”, “w”) for row in reader: print row.get(“domain”) f.write(row.get(“domain”) + “\n”)   安装zmap+Go+zdns yum install zmap git wget wget https://storage.googleapis.com/golang/go1.10.4.linux-amd64.tar.gz tar -C /usr/local -xzf go1.10.4.linux-amd64.tar.gz export PATH=$PATH:/usr/local/go/bin export GOPATH=/usr/local/go/bin/ go get github.com/zmap/zdns/zdns cd /usr/local/go/bin/src/github.com/zmap/zdns/zdns go build… Read more zmap套装之zdns:批量查询域名ip