small tweaks
This commit is contained in:
parent
c1739856ce
commit
567cfe8083
@ -19,7 +19,7 @@
|
||||
</head>
|
||||
<body style="text-align:center;">
|
||||
<small>
|
||||
[<a href="./status.txt">txt</a>] <tt>dig +short txt istheinternetonfire.app | sed 's/" "//g' |sed 's/%n/\n/g'</tt> [<a href="./status.json">json</a>]
|
||||
[<a href="./status.txt">txt</a>] <tt>dig +short txt istheinternetonfire.app | sed 's/" "//g' | sed 's/%n/\n/g'</tt> [<a href="./status.json">json</a>]
|
||||
</small>
|
||||
<hr align="CENTER" noshade="noshade" size="2" width="100%">
|
||||
{{- if gt (len .CVEs) 0 }}
|
||||
|
@ -2,10 +2,12 @@ package cisa
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"istheinternetonfire.app/internal/config"
|
||||
"istheinternetonfire.app/internal/httpclient"
|
||||
)
|
||||
|
||||
var (
|
||||
@ -22,16 +24,12 @@ func Read() CisaJSON {
|
||||
|
||||
func Start() {
|
||||
for {
|
||||
/*
|
||||
c := httpclient.NewClient(http.DefaultClient)
|
||||
d, err := c.Get(config.Cfg.RemoteURL)
|
||||
if err != nil {
|
||||
time.Sleep(time.Second * 120)
|
||||
continue
|
||||
}
|
||||
*/
|
||||
|
||||
d := GetExampleData()
|
||||
|
||||
mu.Lock()
|
||||
if err := json.Unmarshal(d, &Cisa); err != nil {
|
||||
|
12780
internal/cisa/example.go
12780
internal/cisa/example.go
File diff suppressed because it is too large
Load Diff
@ -57,6 +57,7 @@ func (c NsUpdateStruct) Update(record, recordType, value string) error {
|
||||
if err != nil {
|
||||
config.Cfg.Log.Info("unable to get existing record", "record", record, "error", err)
|
||||
}
|
||||
config.Cfg.Log.Debug("comparing records", "old value", r, "new value", value)
|
||||
|
||||
if r != value {
|
||||
config.Cfg.Log.Debug("deleting record", "record", record)
|
||||
|
@ -55,6 +55,7 @@ func tmpltWebRoot(w http.ResponseWriter, r *http.Request) {
|
||||
var (
|
||||
msgBuffer bytes.Buffer
|
||||
cves []cisa.VulStruct
|
||||
num int = 3
|
||||
)
|
||||
|
||||
c := cisa.Read()
|
||||
@ -65,10 +66,14 @@ func tmpltWebRoot(w http.ResponseWriter, r *http.Request) {
|
||||
}
|
||||
}
|
||||
|
||||
if len(cves) < 3 {
|
||||
num = len(cves)
|
||||
}
|
||||
|
||||
if err := tmplt.Execute(&msgBuffer, struct {
|
||||
CVEs []cisa.VulStruct
|
||||
}{
|
||||
CVEs: cves[len(cves)-3:],
|
||||
CVEs: cves[len(cves)-num:],
|
||||
}); err != nil {
|
||||
config.Cfg.Log.Debug("unable to execute html template", err)
|
||||
tmpltError(w, http.StatusInternalServerError, "Template Parse Error.")
|
||||
|
7
main.go
7
main.go
@ -56,8 +56,8 @@ func main() {
|
||||
}
|
||||
}
|
||||
if len(cves) == 0 {
|
||||
if err := dns.Delete("istheinternetonfire.app", "TXT"); err != nil {
|
||||
config.Cfg.Log.Error("unable to delete dns record", "error", err)
|
||||
if err := dns.Update("istheinternetonfire.app", "TXT", "Safe for now!"); err != nil {
|
||||
config.Cfg.Log.Error("unable to update dns record", "error", err)
|
||||
time.Sleep(time.Second * time.Duration(config.Cfg.RefreshSeconds))
|
||||
continue
|
||||
}
|
||||
@ -70,10 +70,11 @@ func main() {
|
||||
txtData += fmt.Sprintf("%s - %s - %s\n", v.CveID, v.Product, v.ShortDescription)
|
||||
}
|
||||
if err := dns.Update("istheinternetonfire.app", "TXT", txtData); err != nil {
|
||||
config.Cfg.Log.Error("unable to add dns record", "error", err)
|
||||
config.Cfg.Log.Error("unable to update dns record", "error", err)
|
||||
time.Sleep(time.Second * time.Duration(config.Cfg.RefreshSeconds))
|
||||
continue
|
||||
}
|
||||
|
||||
time.Sleep(time.Second * time.Duration(config.Cfg.RefreshSeconds))
|
||||
}
|
||||
}()
|
||||
|
Loading…
x
Reference in New Issue
Block a user