https://github.com/edivangalindo/dwlr
dwlr is a fast downloader written in go
https://github.com/edivangalindo/dwlr
bugbounty bugbounty-tool downloader infosec recon
Last synced: 5 months ago
JSON representation
dwlr is a fast downloader written in go
- Host: GitHub
- URL: https://github.com/edivangalindo/dwlr
- Owner: edivangalindo
- Created: 2022-02-16T11:40:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-18T14:01:40.000Z (over 4 years ago)
- Last Synced: 2024-06-20T08:09:49.228Z (about 2 years ago)
- Topics: bugbounty, bugbounty-tool, downloader, infosec, recon
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dwlr
A downloader written in golang, created with the aim of quickly downloading files in batch concurrently and composing a security automation recognition process.
## Example usages
Single URL:
```
echo https://google.github.io/styleguide/include/styleguide.js | dwlr
```
Multiple URLs:
```
cat urls.txt | dwlr
```
## Installation
First, you'll need to [install go](https://golang.org/doc/install).
Then run this command to download + compile dwlr:
```
go install github.com/edivangalindo/dwlr@latest
```
You can now run `~/go/bin/dwlr`. If you'd like to just run `dwlr` without the full path, you'll need to `export PATH="/go/bin/:$PATH"`. You can also add this line to your `~/.bashrc` file if you'd like this to persist.