https://github.com/hrbrmstr/hormel
⚙️ Retrieve and Process 'Spamhaus' Zone/Host Metadata
https://github.com/hrbrmstr/hormel
block-list r r-cyber rstats spam spamhaus
Last synced: about 1 year ago
JSON representation
⚙️ Retrieve and Process 'Spamhaus' Zone/Host Metadata
- Host: GitHub
- URL: https://github.com/hrbrmstr/hormel
- Owner: hrbrmstr
- Created: 2018-05-13T11:27:38.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-13T11:27:48.000Z (about 8 years ago)
- Last Synced: 2025-06-13T02:48:15.872Z (about 1 year ago)
- Topics: block-list, r, r-cyber, rstats, spam, spamhaus
- Language: R
- Size: 12.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
Awesome Lists containing this project
README
---
output: rmarkdown::github_document
---
# hormel
Retrieve and Process 'Spamhaus' Zone/Host Metadata
## Description
The 'Spamhaus Project' is an international nonprofit organization that tracks spam and related cyber threats such as phishing, malware and botnets, provides realtime actionable and highly accurate threat intelligence to the Internet's major networks, corporations and security vendors, and works with law enforcement agencies to identify and pursue spam and malware sources worldwide. Methods are provided to retreive and process 'Spamhaus' data.
## What's Inside The Tin
The following functions are implemented:
- `clear_drops`: Clear cache of all "DROP" functions
- `get_asndrop`: Spamhaus ASN DROP List (ASN-DROP)
- `get_drop`: Spamhaus Don't Route Or Peer List
- `get_dropv6`: Spamhaus IPv6 DROP List (DROPv6)
- `get_edrop`: Spamhaus Extended DROP List (EDROP)
## Installation
```{r eval=FALSE}
devtools::install_github("hrbrmstr/hormel")
```
```{r message=FALSE, warning=FALSE, error=FALSE, include=FALSE}
options(width=120)
```
## Usage
```{r message=FALSE, warning=FALSE, error=FALSE}
library(hormel)
library(tidyverse)
# current verison
packageVersion("hormel")
```
```{r cache=TRUE}
get_asndrop()
get_drop()
get_dropv6()
get_edrop()
```