sms-auto-regist

module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 9, 2023 License: MIT

README

sms-auto-regist

爬取虚拟手机号的短信验证码,从而登录需要手机号验证码注册的网站,可以刷阅读,刷赞,刷关注之类的操作

云接码
How to use
reference

run

    // sms-auto-regist\example\main.go
	
    // initialization 
	collect.NewCollect(
		collect.SetConfigPath("../config.yml"),
	)

	// start app
	app.Run(&app.Example{})

	// Start the crawler scheduled task
	job(
		www_yunjiema_top.NewCollect(conf.Global.CollectSourceHtml.WwwYunjiemaTop),
	)

receive

	for {
		select {
		case tel := <-collect.SendFindTel:
			fmt.Printf("Find the crawled mobile phone number %s:\n", tel)
		case tel := <-collect.SendFindSMSTel:
			fmt.Printf("Find the phone number that sent the text message%s:\n", tel)
		}
	}
Customize crawling SMS website
mplement the interface
// sms-auto-regist\collect\collect.go
type Job interface
reference
// sms-auto-regist\collect\origin\www_yunjiema_top\html.go
type Collect struct {
	config conf.DefaultCollectConfig
}

func NewCollect(config conf.DefaultCollectConfig) *Collect {
	return &Collect{
		config: config,
	}
}

func (c *Collect) Run() {
	...
}

func (c *Collect) GetConfig() conf.DefaultCollectConfig {
	return c.config
}
tools
// Send the crawled mobile phone number to the pipeline
collect.WriteFindTel(tel)

// Send the SMS received by crawling the mobile phone number to the pipeline
collect.WriteFindSMSTel(*collect.FindSMSTel)
Result
接收到的虚拟短信
爬到的
手动输入验证码注册成功 (自动的还没搞)

Directories

Path Synopsis
orc
app

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL