mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-07-14 13:22:35 +08:00
Merge pull request #197 from u21h2/main
使用毫秒作为随机数种子,避免生成的ceye子域名相同,导致反连平台误报
This commit is contained in:
commit
67f30bf4e3
@ -222,7 +222,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解析
|
||||||
|
Loading…
Reference in New Issue
Block a user