![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
A command-line tool for checking HTTP status codes and server response headers of URLs
.. image:: https://img.shields.io/pypi/v/hostchk.svg :target: https://pypi.org/project/hostchk/
.. image:: https://img.shields.io/github/license/brigxt0/hostchk.svg :target:https://github.com/brigxt0/hostchk/blob/aeded164c0fcf70cf38d09a976b6197ef74a3541/LICENSE
hostchk is a python 3 CLI tool for checking the HTTP status codes and server response headers of URLs.As arguments to the script a file of URLs seperated by lines is required . As well as the name of the file in which to save the output.Note by default the output is saved in the same directory as the input. arguments. Furthermore, the protocol either https or http can be passed using the -proto option to process the URLs and check their statuses.
hostchk is available on the python repository, PyPI and can be installed using pip as follows::
$ pip install hostchk
Hostchk requires 3rd party packages to run without which it will not run.It can be cloned from GitHub as::
$ git clone https://github.com/brigxt0/hostchk.git
$ cd hostchk
$ pip3 install -r requirements.txt
If you installed your hostchk via pip you can run it from any directory as ::
hostchk [-h] -in INFILE -out OUTPFILE
[-proto PROTOCOL]
options:
-h, --help show this help message and exit
-in INFILE The input file name
-out OUTPFILE The output file name
-proto PROTOCOL The protocol to scan with
If you cloned your hostchk directly from Github you can run it as follows ::
$ cd hostchk $ python -m hostchk [-h] -in INFILE -out OUTPFILE [-proto PROTOCOL]
Examples
Run the script installed via pip from a directory containing an arbitrary file of urls named hosts.txt while saving to an output file named status.txt with protocol as https.
::
$ hostchk -in files -out status
Run the script installed via pip from an arbitrary directory which does not contain the input filename named input.txt with protocol set to http.
::
$ hostchk -in /path/to/input.txt -out /path/to/output. txt -proto http://
Run the script cloned from Github as a module inside the hostchk directory for an input.txt in the downloads folder.
::
$ cd hostchk
$ python -m hostchk -in ~/storage/downloads/input.txt -out ~/storage/downloads/output.txt
End
---
FAQs
A command-line tool for checking HTTP status codes and server response headers of URLs
We found that hostchk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.