Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tijme/not-your-average-web-crawler
A web crawler (for bug hunting) that gathers more than you can imagine.
https://github.com/tijme/not-your-average-web-crawler
bug-bounty callbacks crawler custom get post python request scanner scraper security spider vulnerability
Last synced: 18 days ago
JSON representation
A web crawler (for bug hunting) that gathers more than you can imagine.
- Host: GitHub
- URL: https://github.com/tijme/not-your-average-web-crawler
- Owner: tijme
- License: mit
- Created: 2017-02-17T23:35:33.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-05-22T21:50:33.000Z (over 1 year ago)
- Last Synced: 2024-11-17T23:07:10.038Z (25 days ago)
- Topics: bug-bounty, callbacks, crawler, custom, get, post, python, request, scanner, scraper, security, spider, vulnerability
- Language: Python
- Homepage: https://tijme.github.io/not-your-average-web-crawler/
- Size: 2.12 MB
- Stars: 149
- Watchers: 13
- Forks: 37
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- Funding: .github/FUNDING.yml
- License: LICENSE.rst
- Code of conduct: .github/CODE_OF_CONDUCT.rst
Awesome Lists containing this project
- awesome-hacking-lists - tijme/not-your-average-web-crawler - A web crawler (for bug hunting) that gathers more than you can imagine. (Python)
README
.. raw:: html
.. image:: https://tijme.github.io/not-your-average-web-crawler/latest/_static/img/logo.svg?pypi=png.from.svg
:width: 300px
:height: 300px
:alt: N.Y.A.W.C. logo
:align: center.. raw:: html
.. image:: https://raw.finnwea.com/shield/?firstText=Donate%20via&secondText=Bunq
:target: https://bunq.me/tijme/0/A%20web%20crawler%20(for%20bug%20hunting)%20that%20gathers%20more%20than%20you%20can%20imagine
:alt: Donate via Bunq
.. image:: https://raw.finnwea.com/shield/?typeKey=TravisBuildStatus&typeValue1=tijme/not-your-average-web-crawler&typeValue2=master&cache=1
:target: https://travis-ci.org/tijme/not-your-average-web-crawler
:alt: Build Status.. image:: https://raw.finnwea.com/vector-shields-v1/?typeKey=SemverVersion&typeValue1=tijme&typeValue2=not-your-average-web-crawler
:target: https://pypi.python.org/pypi/nyawc/
:alt: PyPi version
.. image:: https://raw.finnwea.com/shield/?firstText=License&secondText=MIT
:target: https://github.com/tijme/not-your-average-web-crawler/blob/master/LICENSE.rst
:alt: License: MIT.. raw:: html
Not Your Average Web Crawler
N.Y.A.W.C is a Python library that enables you to test your payload against all requests of a certain domain. It crawls all requests (e.g. GET, POST or PUT) in the specified scope and keeps track of the request and response data. During the crawling process the callbacks enable you to insert your payload at specific places and test if they worked.
Table of contents
------------------ `Installation <#installation>`__
- `Crawling flow <#crawling-flow>`__
- `Documentation <#documentation>`__
- `Minimal implementation <#minimal-implementation>`__
- `Testing <#testing>`__
- `Issues <#issues>`__
- `License <#license>`__Installation
------------First make sure you're on `Python 2.7/3.3 `__ or higher. Then run the command below to install N.Y.A.W.C.
``$ pip install --upgrade nyawc``
Crawling flow
-------------1. You can define your startpoint (a request) and the crawling scope and then start the crawler.
2. The crawler repeatedly starts the first request in the queue until ``max threads`` is reached.
3. The crawler adds all requests found in the response to the end of the queue (except duplicates).
4. The crawler goes back to step #2 to spawn new requests repeatedly until ``max threads`` is reached... image:: https://tijme.github.io/not-your-average-web-crawler/latest/_static/img/flow.svg
:alt: N.Y.A.W.C crawling flow**Please note that if the queue is empty and all crawler threads are finished, the crawler will stop.**
Documentation
-------------Please refer to the `documentation `__ or the `API `__ for all the information about N.Y.A.W.C.
Minimal implementation
----------------------You can use the callbacks in ``example_minimal.py`` to run your own exploit against the requests. If you want an example of automated exploit scanning, please take a look at `ACSTIS `__ (it uses N.Y.A.W.C to scan for AngularJS client-side template injection vulnerabilities).
You can also use the `kitchen sink `__ (which contains all the functionalities from N.Y.A.W.C.) instead of the example below. The code below is a minimal implementation of N.Y.A.W.C.
- ``$ python example_minimal.py``
- ``$ python -u example_minimal.py > output.log``.. code:: python
# example_minimal.py
from nyawc.Options import Options
from nyawc.QueueItem import QueueItem
from nyawc.Crawler import Crawler
from nyawc.CrawlerActions import CrawlerActions
from nyawc.http.Request import Requestdef cb_crawler_before_start():
print("Crawler started.")def cb_crawler_after_finish(queue):
print("Crawler finished.")
print("Found " + str(len(queue.get_all(QueueItem.STATUS_FINISHED))) + " requests.")def cb_request_before_start(queue, queue_item):
print("Starting: {}".format(queue_item.request.url))
return CrawlerActions.DO_CONTINUE_CRAWLINGdef cb_request_after_finish(queue, queue_item, new_queue_items):
print("Finished: {}".format(queue_item.request.url))
return CrawlerActions.DO_CONTINUE_CRAWLINGoptions = Options()
options.callbacks.crawler_before_start = cb_crawler_before_start # Called before the crawler starts crawling. Default is a null route.
options.callbacks.crawler_after_finish = cb_crawler_after_finish # Called after the crawler finished crawling. Default is a null route.
options.callbacks.request_before_start = cb_request_before_start # Called before the crawler starts a new request. Default is a null route.
options.callbacks.request_after_finish = cb_request_after_finish # Called after the crawler finishes a request. Default is a null route.crawler = Crawler(options)
crawler.start_with(Request("https://finnwea.com/"))Testing
-------The testing can and will automatically be done by `Travis CI `__ on every push to the master branch. If you want to manually run the unit tests, use the command below.
``$ python -m unittest discover``
Issues
------Issues or new features can be reported via the GitHub issue tracker. Please make sure your issue or feature has not yet been reported by anyone else before submitting a new one.
License
-------Not Your Average Web Crawler (N.Y.A.W.C) is open-sourced software licensed under the `MIT license `__.