Random strings for cookie values (#1122)

This commit is contained in:
SpedNSFW
2021-02-23 13:40:43 +11:00
committed by GitHub
parent 14230d7b52
commit acbdee76de
5 changed files with 60 additions and 6 deletions

View File

@@ -158,10 +158,11 @@ type scraperDebugOptions struct {
}
type scraperCookies struct {
Name string `yaml:"Name"`
Value string `yaml:"Value"`
Domain string `yaml:"Domain"`
Path string `yaml:"Path"`
Name string `yaml:"Name"`
Value string `yaml:"Value"`
ValueRandom int `yaml:"ValueRandom"`
Domain string `yaml:"Domain"`
Path string `yaml:"Path"`
}
type cookieOptions struct {