mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 09:55:25 +00:00
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
package protocolinit
|
|
|
|
import (
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/js/compiler"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/common/protocolstate"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/dns/dnsclientpool"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/http/httpclientpool"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/http/signerpool"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/network/networkclientpool"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/protocols/whois/rdapclientpool"
|
|
"github.com/projectdiscovery/nuclei/v3/pkg/types"
|
|
_ "github.com/projectdiscovery/utils/global"
|
|
)
|
|
|
|
// Init initializes the client pools for the protocols
|
|
func Init(options *types.Options) error {
|
|
if err := protocolstate.Init(options); err != nil {
|
|
return err
|
|
}
|
|
if err := dnsclientpool.Init(options); err != nil {
|
|
return err
|
|
}
|
|
if err := httpclientpool.Init(options); err != nil {
|
|
return err
|
|
}
|
|
if err := signerpool.Init(options); err != nil {
|
|
return err
|
|
}
|
|
if err := networkclientpool.Init(options); err != nil {
|
|
return err
|
|
}
|
|
if err := rdapclientpool.Init(options); err != nil {
|
|
return err
|
|
}
|
|
if err := compiler.Init(options); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func Close() {
|
|
protocolstate.Close()
|
|
}
|