https://github.com/hrbrmstr/dshield
Query 'SANS' 'DShield' 'API'
https://github.com/hrbrmstr/dshield
dshield isc r r-cyber rstats
Last synced: 10 months ago
JSON representation
Query 'SANS' 'DShield' 'API'
- Host: GitHub
- URL: https://github.com/hrbrmstr/dshield
- Owner: hrbrmstr
- Created: 2018-07-09T18:23:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-09T18:24:45.000Z (almost 8 years ago)
- Last Synced: 2025-03-05T14:19:08.565Z (over 1 year ago)
- Topics: dshield, isc, r, r-cyber, rstats
- Language: R
- Size: 6.84 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
Awesome Lists containing this project
README
---
output: rmarkdown::github_document
---
# dshield
Query 'SANS' 'DShield' 'API'
## Description
The 'DShield' project provides early warning attack data and host/'IP' metadata to the information security community. Tools are provided to query various 'DShield' 'API' endpoints.
## What's Inside The Tin
The following functions are implemented:
- `ip_info`: IP info
- `port_date`: Port information at a point-in-time
- `port_history`: Historical activity for a given port
- `port_info`: Port info
## Installation
```{r eval=FALSE}
devtools::install_github("hrbrmstr/dshield")
```
```{r message=FALSE, warning=FALSE, error=FALSE, include=FALSE}
options(width=120)
```
## Usage
```{r message=FALSE, warning=FALSE, error=FALSE}
library(dshield)
# current verison
packageVersion("dshield")
```
```{r}
str(ip_info("70.91.145.10"))
str(port_info(5555))
str(port_date(5555, "2018-06-23"))
str(port_history(5555, "2018-06-01"))
```