Skip to content

linabellbiu/sms-auto-regist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sms-auto-regist

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

How to use

config.yml

collect_source_html:
  www_yunjiema_top:
    # host
    host: "https://www.yunjiema.top"
    # timed task
    cron: "2 * * * *"
    # Locate the keywords of the general text message content, choose one of multiple keywords
    keywords:
      - "500px"
      - "[视觉中国]"
    # Regular expression to extract captcha
    compile_regex: "\\d{6,}"	

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

接收到的虚拟短信

爬到的

手动输入验证码注册成功 (自动的还没搞)

About

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published