Compare commits
2 Commits
68eb3a055d
...
062cb25551
| Author | SHA1 | Date | |
|---|---|---|---|
|
062cb25551
|
|||
|
17dbfac864
|
@@ -8,7 +8,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An example of how to get a list of bad IP addresses from the service https://dshield.org/
|
* An example of how to get a list of IP addresses from a service https://dshield.org/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An example of how to get a list of bad IP addresses from the service https://www.projecthoneypot.org/list_of_ips.php
|
* An example of how to get a list of IP addresses from a service https://www.projecthoneypot.org/list_of_ips.php
|
||||||
*/
|
*/
|
||||||
|
|
||||||
type rssItem struct {
|
type rssItem struct {
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An example of how to get a list of bad IP addresses from the service https://www.spamhaus.org/blocklists/do-not-route-or-peer/
|
* An example of how to get a list of IP addresses from a service https://www.spamhaus.org/blocklists/do-not-route-or-peer/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
type lineJson struct {
|
type lineJson struct {
|
||||||
|
|||||||
29
examples/tor.go
Normal file
29
examples/tor.go
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"git.kor-elf.net/kor-elf-shield/blocklist"
|
||||||
|
"git.kor-elf.net/kor-elf-shield/blocklist/parser"
|
||||||
|
)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An example of how to get a list of IP addresses from a service https://check.torproject.org/torbulkexitlist
|
||||||
|
*/
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
url := "https://check.torproject.org/torbulkexitlist"
|
||||||
|
extract := parser.NewDefaultTextExtract(0, " ")
|
||||||
|
pars, err := parser.NewText(extract)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
// limit 0 - no limit
|
||||||
|
limit := uint(0)
|
||||||
|
config := blocklist.NewConfig(limit)
|
||||||
|
ips, err := blocklist.Get(url, pars, config)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
fmt.Println(ips)
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user