IPFS is a distributed web, allowing for sharing content like files, media, blogs and websites. This is a project
to map out the decentralized web to identify interesting content.
IPFS scanning can identify new hosted content or expose information leaks similar to Amazon S3 buckets.
To find new web hosts from the swarm to scan & probe:
ipfs swarm peers | sed "s:.*/ipfs/\(.*\)\$:\1:g" | xargs -n1 -P5 ipfs name resolve > peers
cat peers | grep -v "/ipfs/QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn" | sed "s|^|http://127.0.0.1:8080|" | xargs open
These links have been discovered by crawling the swarm of a connected IPFS client and using the name resolver:
This file was found on one of the nodes and discovered to contain hash entries for more hosted
content including images and media links. You can list the file names and contents using:
cat hashes.txt | parallel -j 10 ipfs ls {}
this file is similar to one output by filescan.sh.
请发表评论