Stillso 大佬有话说 :
各位大佬有没有能跑谷歌邮箱未注册的脚本
Google了半天也没看到 ,是真没有还是关键词不对,请指教
creeper1 大佬有话说 :
https://github.com/xyou365/gmail-username-available
catchshadows 大佬有话说 :
拿burp跑就行了,要什么脚本
jeffpan 大佬有话说 :
~$ cat bin/gmbox
#!/usr/bin/perl
use strict;
use Gmail::Mailbox::Validate;
my $username = shift || die "$0 usernamen";
my $v = Gmail::Mailbox::Validate->new();
print "mailbox existsn" if $v->validate($username);
~$ bin/gmbox mytest
mailbox exists