spider..scorpion..or both
A web scrapper that extract images and a metadata/ExIF extractor
Report Bug
·
Request Feature
Table of Contents
This cybersecurity project is composed by two differents executables. The first one, spider, is a web scrapper that extract and download images (jpeg, png, gif and bpm) from a website, and is able to act recursively on the links found in the website. The second one, scorpion, is an ExIF tool that extract metadata from images (jpeg, png, gif and bpm)
Both are written using NodeJS and use a minimal amount of external libraries, the logic is mostly homemade.
-
Clone the repo
$> git clone https://github.com/Link-Wolf/arachnida.git
-
Launch one of the two executables
$> cd arachnida $> ./spider [-r] [-l level] [-p path] url
-r : recursive mode -l : level of recursion -p : path to save images url : url to scrap
$> cd arachnida $> ./scorpion FILE1 [FILE2 ...]
FILE : path to image
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request