-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpbb3.go
250 lines (206 loc) · 5.91 KB
/
phpbb3.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
package forumposter
import (
"bytes"
"fmt"
"mime/multipart"
"regexp"
"strings"
"github.com/PuerkitoBio/goquery"
log "github.com/sirupsen/logrus"
)
//PHPBB3InfoSite provides the info to make https request for post
type PHPBB3InfoSite struct {
URL string
User string
Password string
F string // Forum number
T string // Thread Number
}
//PHPBB3 manage phpbb v3 forum
func (c *Collector) PHPBB3(i PHPBB3InfoSite, p Payload) error {
var token, creationTime string
// Load home page to get SID from cookie
initialLoad := &Request{
Body: nil,
URL: fmt.Sprintf("%s/", i.URL),
Method: "GET",
Writer: nil,
}
initialRequest, err := c.fetch(initialLoad)
if err != nil {
return err
}
log.Debugln("SID", c.Sid)
// Load the HTML document
log.Debugln("Extracting Value")
doc, err := goquery.NewDocumentFromReader(strings.NewReader(string(initialRequest)))
if err != nil {
log.Fatal(err)
}
// Extract for phpbb v. 3.3 (latest)
// * creation_time
// * form_token
token, _ = doc.Find("input[name='form_token']").Attr("value")
creationTime, _ = doc.Find("input[name='creation_time']").Attr("value")
// Make LOGIN
payload := &bytes.Buffer{}
writer := multipart.NewWriter(payload)
_ = writer.WriteField("username", i.User)
_ = writer.WriteField("password", i.Password)
_ = writer.WriteField("sid", c.Sid)
_ = writer.WriteField("login", "Login")
// This is needed only for v. 3.3
if token != "" {
c.Version = 3
log.Debug("[Forum-Poster] Type - PHPBBv3.3 ")
log.WithFields(log.Fields{
"form_token": token,
"creation_time": creationTime,
"SID": c.Sid,
"URL": i.URL,
}).Debug("[Forum-Poster] - Extract Values for login")
_ = writer.WriteField("form_token", token)
_ = writer.WriteField("creation_time", creationTime)
_ = writer.WriteField("redirect", "index.php")
}
err = writer.Close()
if err != nil {
log.Debugf("[Forum-Poster] Login - %v", err)
return fmt.Errorf("[Forum-Poster] Login - %v", err)
}
postLogin := &Request{
Body: payload,
URL: fmt.Sprintf("%s/ucp.php?mode=login&sid=%s", i.URL, c.Sid),
Method: "POST",
Writer: writer,
}
_, err = c.fetch(postLogin)
if err != nil {
return err
}
return nil
}
//PHPBB3Post post new thread
//a is for chose if reply or new thread
func (c *Collector) PHPBB3Post(i PHPBB3InfoSite, p Payload, a string) (string, error) {
var url, lastclick string
// Set post NEW or REPLY
switch a {
case "new":
log.Infoln("* Post new thread to", i.URL)
url = fmt.Sprintf("%s/posting.php?mode=post&f=%s", i.URL, i.F)
case "reply":
log.Infoln("* Reply thread to", i.URL)
url = fmt.Sprintf("%s/posting.php?mode=reply&f=%s&t=%s", i.URL, i.F, i.T)
default:
return "", fmt.Errorf("[Forum-Poster] - Choice are: new or reply. Set the right one")
}
// Login first
err := c.PHPBB3(i, p)
if err != nil {
return "", err
}
log.Debugln("SID", c.Sid)
// Load home page to get SID from cookie
readPostForm := &Request{
Body: nil,
URL: url,
Method: "GET",
Writer: nil,
}
body, err := c.fetch(readPostForm)
if err != nil {
return "", err
}
if err != nil {
return "", err
}
// Load the HTML document
log.Debugln("Extracting Value")
doc, err := goquery.NewDocumentFromReader(strings.NewReader(string(body)))
if err != nil {
log.Fatal(err)
}
// Extract
// * creation_time
// * form_token
// * lastclick
title := doc.Find("title").Text()
token, ok := doc.Find("input[name='form_token']").Attr("value")
if !ok {
return "", fmt.Errorf("[Forum-Poster] - Can't find form_token")
}
creationTime, ok := doc.Find("input[name='creation_time']").Attr("value")
if !ok {
return "", fmt.Errorf("[Forum-Poster] - Can't find creation_time")
}
if c.Version != 3 {
lastclick, ok = doc.Find("input[name='lastclick']").Attr("value")
if !ok {
return "", fmt.Errorf("[Forum-Poster] - Can't find lastclick")
}
}
log.WithFields(log.Fields{
"form_token": token,
"creation_time": creationTime,
"lastclick": lastclick,
"Title": title,
"SID": c.Sid,
"URL": url,
"Version": c.Version,
}).Debug("[Forum-Poster] - Extract Values")
// Find the review items
doc.Find(".sidebar-reviews article .content-block").Each(func(i int, s *goquery.Selection) {
// For each item found, get the band and title
band := s.Find("a").Text()
title := s.Find("i").Text()
fmt.Printf("Review %d: %s - %s\n", i, band, title)
})
// Post New Thread
postload := &bytes.Buffer{}
writerLoad := multipart.NewWriter(postload)
_ = writerLoad.WriteField("form_token", token)
_ = writerLoad.WriteField("creation_time", creationTime)
_ = writerLoad.WriteField("sid", c.Sid)
_ = writerLoad.WriteField("subject", p.Title)
_ = writerLoad.WriteField("message", p.Message)
_ = writerLoad.WriteField("post", "Submit")
_ = writerLoad.WriteField("attach_sig", "on")
_ = writerLoad.WriteField("topic_type", "0")
_ = writerLoad.WriteField("topic_time_limit", "0")
if c.Version != 3 {
_ = writerLoad.WriteField("lastclick", lastclick)
}
err = writerLoad.Close()
if err != nil {
fmt.Println(err)
return "", fmt.Errorf("[Forum-Poster] Post - %v", err)
}
log.Debugln("Posting to FORUM ID", i.F)
postThread := &Request{
Body: postload,
URL: url,
Method: "POST",
Writer: writerLoad,
}
resp, err := c.fetch(postThread)
if err != nil {
return "", err
}
log.Traceln("[Forum-Poster] Response:", string(resp))
if !checkFinalURL(c.FinalURL) {
return "", fmt.Errorf("[Forum-Poster] NOT Posted - %s", c.FinalURL)
}
switch a {
case "new":
log.Infof("The URL of new thread is: %v\n", c.FinalURL)
case "reply":
log.Infof("The URL of reply is: %v\n", c.FinalURL)
}
return c.FinalURL, nil
}
// checkFinalURL chek if finalURL contains f= (means that thread was created)
func checkFinalURL(url string) bool {
match, _ := regexp.MatchString(`(?m)[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)`, url)
return match
}