forked from rashahacks/jsmon-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcronlib.go
216 lines (186 loc) · 5.63 KB
/
cronlib.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"strings"
)
type Response struct {
Message string `json:"message"`
Data string `json:"data"`
}
func StartCron(cronNotification string, cronTime int64, cronType string, cronDomain string, cronDomainNotify string) {
notification := strings.TrimSpace(cronNotification)
//split vulnerabilities
vulnerabilitiesType := strings.Split(cronType, ",")
cronDomains := strings.Split(cronDomain, ",")
cronDomainsNotify := strings.Split(cronDomainNotify, ",")
if len(cronDomains) != len(cronDomainsNotify) {
fmt.Println("Invalid format for cronDomains and cronDomainsNotify. Use: domain1,domain2,domain3 domainNotify1,domainNotify2,domainNotify3")
return
}
//trim domains and domainsNotify
for i := 0; i < len(cronDomains); i++ {
cronDomains[i] = strings.TrimSpace(cronDomains[i])
cronDomainsNotify[i] = strings.TrimSpace(cronDomainsNotify[i])
}
//create domains map
var domains []map[string]interface{}
for i := 0; i < len(cronDomains); i++ {
notify := strings.EqualFold(cronDomainsNotify[i], "true")
domain := map[string]interface{}{
"domain": cronDomains[i],
"notify": notify,
}
domains = append(domains, domain)
}
apiKey := strings.TrimSpace(getAPIKey())
baseUrl := apiBaseURL
client := &http.Client{}
var method = "PUT"
var url = baseUrl + "/startCron"
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Printf("failed to create request: %v", err)
return
}
req.Header.Set("X-Jsmon-Key", apiKey)
req.Header.Set("Content-Type", "application/json")
data := map[string]interface{}{
"notificationChannel": notification,
"vulnerabilitiesType": vulnerabilitiesType,
"time": cronTime,
"domains": domains,
}
jsonData, err := json.Marshal(data)
if err != nil {
fmt.Printf("failed to marshal JSON: %v", err)
return
}
req.Body = ioutil.NopCloser(bytes.NewReader(jsonData))
resp, err := client.Do(req)
if err != nil {
fmt.Printf("failed to send request: %v", err)
return
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Printf("failed to read response body: %v", err)
return
}
var response Response
err = json.Unmarshal(body, &response)
if err != nil {
fmt.Printf("failed to unmarshal JSON response: %v", err)
return
}
fmt.Println("Message:", response.Message)
}
func StopCron() {
apiKey := strings.TrimSpace(getAPIKey())
baseUrl := apiBaseURL
client := &http.Client{}
var method = "PUT"
var url = baseUrl + "/stopCron"
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Printf("failed to create request: %v", err)
return
}
req.Header.Set("X-Jsmon-Key", apiKey)
req.Header.Set("Content-Type", "application/json")
resp, err := client.Do(req)
if err != nil {
fmt.Printf("failed to send request: %v", err)
return
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Printf("failed to read response body: %v", err)
return
}
var response Response
err = json.Unmarshal(body, &response)
if err != nil {
fmt.Printf("failed to unmarshal JSON response: %v", err)
return
}
fmt.Println("Message:", response.Message)
}
func UpdateCron(cronNotification string, cronType string, cronDomain string, cronDomainNotify string, cronTime int64) {
apiKey := strings.TrimSpace(getAPIKey())
baseUrl := apiBaseURL
client := &http.Client{}
var method = "PUT"
var url = baseUrl + "/updateCron"
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Printf("failed to create request: %v", err)
return
}
req.Header.Set("X-Jsmon-Key", apiKey)
req.Header.Set("Content-Type", "application/json")
data := map[string]interface{}{}
if cronNotification != "" {
data["notificationChannel"] = cronNotification
}
if cronType != "" {
vulnerabilitiesType := strings.Split(cronType, ",")
data["vulnerabilitiesType"] = vulnerabilitiesType
}
if cronTime != 0 {
data["time"] = cronTime
}
if cronDomain != "" && cronDomainNotify != "" {
cronDomains := strings.Split(cronDomain, ",")
cronDomainsNotify := strings.Split(cronDomainNotify, ",")
if len(cronDomains) != len(cronDomainsNotify) {
fmt.Println("Invalid format for cronDomains and cronDomainsNotify. Use: domain1,domain2,domain3 domainNotify1,domainNotify2,domainNotify3")
return
}
//trim domains and domainsNotify
for i := 0; i < len(cronDomains); i++ {
cronDomains[i] = strings.TrimSpace(cronDomains[i])
cronDomainsNotify[i] = strings.TrimSpace(cronDomainsNotify[i])
}
//create domains map
var domains []map[string]interface{}
for i := 0; i < len(cronDomains); i++ {
notify := strings.EqualFold(cronDomainsNotify[i], "true")
domain := map[string]interface{}{
"domain": cronDomains[i],
"notify": notify,
}
domains = append(domains, domain)
}
data["domains"] = domains
}
jsonData, err := json.Marshal(data)
if err != nil {
fmt.Printf("failed to marshal JSON: %v", err)
return
}
req.Body = ioutil.NopCloser(bytes.NewReader(jsonData))
resp, err := client.Do(req)
if err != nil {
fmt.Printf("failed to send request: %v", err)
return
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Printf("failed to read response body: %v", err)
return
}
var response Response
err = json.Unmarshal(body, &response)
if err != nil {
fmt.Printf("failed to unmarshal JSON response: %v", err)
return
}
fmt.Println("Message:", response.Message)
}