You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/**
* 来源: http://qq.qqdna.com/more.php 首页列表(用于 Flock 注册邮箱探针)
* 用法:拼接 @qq.com, 例如 3149877783@qq.com
* 仅保留长度 5– 11 的 QQ 号段
*/
export const QqDnaPoolIds = [
"3149877783" ,
"1119187006" ,
"604520283" ,
"3319853612" ,
"1819919195" ,
"593727972" ,
"876725777" ,
"543200519" ,
"1778556513" ,
"2158034583" ,
"2568267287" ,
"3588644325" ,
"2942990980" ,
"3013479264" ,
"1806703172" ,
"43675523" ,
"2497121009" ,
"1816943450" ,
"317295266" ,
"3641149890" ,
"408689556" ,
"908746369" ,
"697753883" ,
"2414054544" ,
"3138089166" ,
"2564642668" ,
"2820322065" ,
"904454999" ,
"1922584094" ,
"760060445" ,
"284964159" ,
"1493415628" ,
"2783647922" ,
"789999999" ,
"626510009" ,
"1750836056" ,
"2867171373" ,
"2352428171" ,
"2858449356" ,
"442272214" ,
"3149208706" ,
"635516922" ,
"2330824374" ,
"984949567" ,
"297537392" ,
"2977454093" ,
"3751894695" ,
"3057752822" ,
"374336529" ,
"765997418" ,
"2774231644" ,
"8532320" ,
"2948637906" ,
"755855955" ,
"790855955" ,
"4077623" ,
"1277331438" ,
"3513731907" ,
"1768135138" ,
"2539762088" ,
"2093797216" ,
"2791621414" ,
"834219767" ,
"968747888" ,
"695559581" ,
"594970286" ,
"3239772188" ,
"2677044202" ,
"2646258394" ,
"779103999" ,
"3353792521" ,
"9251407" ,
"2388857482" ,
"479135600" ,
"904594957" ,
"3175703461" ,
"904594888" ,
"3698891962" ,
"1375053907" ,
"1208717031" ,
"3174129088" ,
"1771282681" ,
"278022999" ,
"924860534" ,
"2152127213" ,
"3374393351" ,
"766324598" ,
"1051693954" ,
"1032793096" ,
"3832458772" ,
"2027462109" ,
"642355831" ,
] as const ;
export function qqDnaEmailPool ( ) : string [ ] {
const seen = new Set < string > ( ) ;
const out : string [ ] = [ ] ;
for ( const id of QqDnaPoolIds ) {
if ( id . length < 5 || id . length > 11 ) continue ;
const email = ` ${ id } @qq.com ` ;
if ( seen . has ( email ) ) continue ;
seen . add ( email ) ;
out . push ( email ) ;
}
return out ;
}