mirror of
https://github.com/shadow1ng/fscan.git
synced 2026-09-26 13:11:53 +08:00
update
This commit is contained in:
+2
-2
@@ -189,7 +189,7 @@ func getRespBody(oResp *http.Response) ([]byte, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func gettitle(body []byte) (title string) {
|
func gettitle(body []byte) (title string) {
|
||||||
re := regexp.MustCompile("(?ims)<title>(.*)</title>")
|
re := regexp.MustCompile("(?ims)<title>(.*?)</title>")
|
||||||
find := re.FindSubmatch(body)
|
find := re.FindSubmatch(body)
|
||||||
if len(find) > 1 {
|
if len(find) > 1 {
|
||||||
title = string(find[1])
|
title = string(find[1])
|
||||||
@@ -217,7 +217,7 @@ func GetProtocol(host string, Timeout int64) (protocol string) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
socksconn, err := common.WrapperTcpWithTimeout("tcp", host, time.Duration(Timeout) * time.Second)
|
socksconn, err := common.WrapperTcpWithTimeout("tcp", host, time.Duration(Timeout)*time.Second)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-3
@@ -164,8 +164,7 @@ func ParseScantype(Info *HostInfo) {
|
|||||||
if !ok {
|
if !ok {
|
||||||
showmode()
|
showmode()
|
||||||
}
|
}
|
||||||
if Info.Scantype != "all" {
|
if Info.Scantype != "all" && Info.Ports == DefaultPorts+","+Webport {
|
||||||
if Info.Ports == DefaultPorts {
|
|
||||||
switch Info.Scantype {
|
switch Info.Scantype {
|
||||||
case "rdp":
|
case "rdp":
|
||||||
Info.Ports = "3389"
|
Info.Ports = "3389"
|
||||||
@@ -187,7 +186,6 @@ func ParseScantype(Info *HostInfo) {
|
|||||||
}
|
}
|
||||||
fmt.Println("-m ", Info.Scantype, " start scan the port:", Info.Ports)
|
fmt.Println("-m ", Info.Scantype, " start scan the port:", Info.Ports)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func CheckErr(text string, err error, flag bool) {
|
func CheckErr(text string, err error, flag bool) {
|
||||||
|
|||||||
Reference in New Issue
Block a user