mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-07-14 05:12:36 +08:00
Update check.go
使用毫秒作为随机数种子,避免生成的ceye子域名相同
This commit is contained in:
parent
8e1db5995e
commit
4b596180a3
@ -221,7 +221,7 @@ func doSearch(re string, body string) map[string]string {
|
||||
|
||||
func newReverse() *Reverse {
|
||||
letters := "1234567890abcdefghijklmnopqrstuvwxyz"
|
||||
randSource := rand.New(rand.NewSource(time.Now().Unix()))
|
||||
randSource := rand.New(rand.NewSource(time.Now().UnixNano()))
|
||||
sub := RandomStr(randSource, letters, 8)
|
||||
//if true {
|
||||
// //默认不开启dns解析
|
||||
|
Loading…
Reference in New Issue
Block a user