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