Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m0zgen/owr
⚙️ Wildcard listed domains list to Go (re2) regex converter.
https://github.com/m0zgen/owr
Last synced: 1 day ago
JSON representation
⚙️ Wildcard listed domains list to Go (re2) regex converter.
- Host: GitHub
- URL: https://github.com/m0zgen/owr
- Owner: m0zgen
- Created: 2024-04-30T13:09:17.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-05-02T02:24:26.000Z (7 months ago)
- Last Synced: 2024-05-02T08:19:29.760Z (7 months ago)
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OWR
Wildcard listed domains list to Go (re2) regex converter.
## Features
- Different sourses (file or URL)
- Output to file or stdout
- Multi thread processing## Example
Process a URL and save the result to a file:
```shell
$ ./owr.py https://small.oisd.nl/domainswild /path/to/dest/hosts.txt
```
### ResultsInput:
```shell
*.example.com
```Output:
```shell
/(^|^.*\.)example.(com)/
```