All Projects → gnebbia → Halive

gnebbia / Halive

Licence: bsd-3-clause
A fast http and https prober, to check which URLs are alive

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Halive

Requests Threads
🎭 Twisted Deferred Thread backend for Requests.
Stars: ✭ 366 (+678.72%)
Mutual labels:  asyncio, requests
Tornado Celery
Non-blocking Celery client for Tornado
Stars: ✭ 561 (+1093.62%)
Mutual labels:  asyncio, asynchronous
Bocadillo
(UNMAINTAINED) Fast, scalable and real-time capable web APIs for everyone
Stars: ✭ 401 (+753.19%)
Mutual labels:  asyncio, asynchronous
Netty Http Client
An asynchronous http client in Java, with a clean, callback-based API, using Netty 4.x
Stars: ✭ 295 (+527.66%)
Mutual labels:  asynchronous, https
Allaboutbugbounty
All about bug bounty (bypasses, payloads, and etc)
Stars: ✭ 758 (+1512.77%)
Mutual labels:  reconnaissance, bugbounty
Microwebsrv2
The last Micro Web Server for IoTs (MicroPython) or large servers (CPython), that supports WebSockets, routes, template engine and with really optimized architecture (mem allocations, async I/Os). Ready for ESP32, STM32 on Pyboard, Pycom's chipsets (WiPy, LoPy, ...). Robust, efficient and documented!
Stars: ✭ 295 (+527.66%)
Mutual labels:  asynchronous, https
Bigbountyrecon
BigBountyRecon tool utilises 58 different techniques using various Google dorks and open source tools to expedite the process of initial reconnaissance on the target organisation.
Stars: ✭ 541 (+1051.06%)
Mutual labels:  reconnaissance, bugbounty
Cloudscraper
CloudScraper: Tool to enumerate targets in search of cloud resources. S3 Buckets, Azure Blobs, Digital Ocean Storage Space.
Stars: ✭ 276 (+487.23%)
Mutual labels:  reconnaissance, bugbounty
Yappi
Yet Another Python Profiler, but this time thread&coroutine&greenlet aware.
Stars: ✭ 595 (+1165.96%)
Mutual labels:  asyncio, asynchronous
Easy Scraping Tutorial
Simple but useful Python web scraping tutorial code.
Stars: ✭ 583 (+1140.43%)
Mutual labels:  asyncio, requests
Osmedeus
Fully automated offensive security framework for reconnaissance and vulnerability scanning
Stars: ✭ 3,391 (+7114.89%)
Mutual labels:  reconnaissance, bugbounty
Chili
Chili: HTTP Served Hot
Stars: ✭ 7 (-85.11%)
Mutual labels:  asyncio, asynchronous
Lazyrecon
An automated approach to performing recon for bug bounty hunting and penetration testing.
Stars: ✭ 282 (+500%)
Mutual labels:  reconnaissance, bugbounty
Osint tips
OSINT
Stars: ✭ 322 (+585.11%)
Mutual labels:  reconnaissance, bugbounty
Recon Pipeline
An automated target reconnaissance pipeline.
Stars: ✭ 278 (+491.49%)
Mutual labels:  reconnaissance, bugbounty
Hosthunter
HostHunter a recon tool for discovering hostnames using OSINT techniques.
Stars: ✭ 427 (+808.51%)
Mutual labels:  reconnaissance, bugbounty
Recon My Way
This repository created for personal use and added tools from my latest blog post.
Stars: ✭ 271 (+476.6%)
Mutual labels:  reconnaissance, bugbounty
Python3 Concurrency Pics 02
爬取 www.mzitu.com 全站图片,截至目前共5162个图集,16.5万多张美女图片,使用 asyncio 和 aiohttp 实现的异步版本只需要不到2小时就能爬取完成。按日期创建图集目录,保存更合理。控制台只显示下载的进度条,详细信息保存在日志文件中。支持异常处理,不会终止爬虫程序。失败的请求,下次再执行爬虫程序时会自动下载
Stars: ✭ 275 (+485.11%)
Mutual labels:  asyncio, requests
Favfreak
Making Favicon.ico based Recon Great again !
Stars: ✭ 564 (+1100%)
Mutual labels:  reconnaissance, bugbounty
Async Reduce
Reducer for similar simultaneously coroutines
Stars: ✭ 17 (-63.83%)
Mutual labels:  asyncio, asynchronous

halive. An http/s prober, to check which URLs are alive.

Author: gnc

Copyright: © 2019, gnc.

Date: 2019-08-03

Version: 0.1.0

PURPOSE

Halive is a software used to get a list of alive hosts starting from a list of hosts whose status is unknown in a short amount of time. It's fast, indeed halive achieve its speed through its asynchronous design.

Once we have a list of domains/subdomains gathered from the reconnaissance phase, (for example through pdlist) we want to check fastly which subdomains are alive and which are not. To this purpose we can use halive and obtain from the initial list of hostnames only the alive subdomains.

INSTALLATION

We can install halive simply by doing:

git clone https://github.com/gnebbia/halive
cd halive
pip install -r requirements.txt
python setup.py install

USAGE

In order to get the list of alive hosts with also the response status code we can do:

halive big_list_of_urls.txt

The default speed is set through the use of 20 (default) workers, we can increase the speed by increasing the number of workers, by doing:

halive big_list_of_urls.txt -t 100
# in this case we use 100 workers

We can also print only URLs without response code and store results in a text file, by doing:

halive big_lists_of_urls.txt -t 100 --only-urls --output report.txt 

We can also only filter URLs which do not reply with 4XX HTTP codes, this can be done by executing halive in this way:

halive big_lists_of_urls.txt -t 100 --only-success --only-urls --output report.txt 

A usage example in the gif below:

COPYRIGHT

Copyright © 2019, gnc. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions, and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the author of this software nor the names of contributors to this software may be used to endorse or promote products derived from this software without specific prior written consent.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].