gpt4 book ai didi

java - VirusTotal HTTPS 连接 Java

转载 作者:行者123 更新时间:2023-12-01 09:39:39 26 4
gpt4 key购买 nike

我正在解析 VirusTotal URL,因此我尝试打开到特定链接的连接并读取网页源代码。

我正在使用此代码

package boot;

import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.security.cert.Certificate;
import java.io.*;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLPeerUnverifiedException;

public class Run {
public static void main(String[] args) {
new Run().testIt();
}
private void testIt() {
String https_url = "https://www.virustotal.com/en/file/7b6b268cbca9d421aabba5f08533d3dcaba50e0f7887b07ef2bd66bf218b35ff/analysis/";
URL url;
try{
url = new URL(https_url);
HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
// dumpl all cert info
print_https_cert(con);
System.out.println(con);
// dump all the content
print_content(con);
} catch(MalformedURLException e){
e.printStackTrace();
} catch(IOException e){
e.printStackTrace();
}
}
private void print_https_cert(HttpsURLConnection con) {
if(con != null){
try{
System.out.println(con);
System.out.println("Response Code : " + con.getResponseCode());
System.out.println("Cipher Suite : " + con.getCipherSuite());
System.out.println("\n");
Certificate[] certs = con.getServerCertificates();
for(Certificate cert : certs){
System.out.println("Cert Type : " + cert.getType());
System.out.println("Cert Hash Code : " + cert.hashCode());
System.out.println("Cert Public Key Algorithm : " + cert.getPublicKey().getAlgorithm());
System.out.println("Cert Public Key Format : " + cert.getPublicKey().getFormat());
System.out.println("\n");
}
} catch(SSLPeerUnverifiedException e){
e.printStackTrace();
} catch(IOException e){
e.printStackTrace();
}
}
}
private void print_content(HttpsURLConnection con) {
if(con != null){
try{
System.out.println("****** Content of the URL ********");
BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream()));
String input;
while((input = br.readLine()) != null){
System.out.println(input);
}
br.close();
} catch(IOException e){
e.printStackTrace();
}
}
}
}

但我收到此错误

Response Code : 200
Exception in thread "main" java.lang.IllegalStateException: connection not yet open
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getCipherSuite(Unknown Source)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getCipherSuite(Unknown Source)
at boot.Run.print_https_cert(Run.java:38)
at boot.Run.testIt(Run.java:23)
at boot.Run.main(Run.java:13)

我尝试过进行一些测试和调整,但没能成功。

我还测试了其他几个网站,效果很好。

谢谢。

最佳答案

此代码失败,因为没有 header 的简单 GET 请求被 VirusTotal“拒绝”。尝试提供更多如下信息,它会起作用。

    private void testIt() {
String https_url = "https://www.virustotal.com/en/file/7b6b268cbca9d421aabba5f08533d3dcaba50e0f7887b07ef2bd66bf218b35ff/analysis/";
URL url;
try{
url = new URL(https_url);
HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
con.setRequestProperty("User-Agent", "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2");
con.setRequestProperty("accept-language", "en-US,en;q=0.8");
con.setRequestProperty("accept", "text/html");
//May need to use connect() if connection is not established
//con.connect();

// dumpl all cert info
print_https_cert(con);
System.out.println(con);
// dump all the content
print_content(con);
} catch(MalformedURLException e){
e.printStackTrace();
} catch(IOException e){
e.printStackTrace();
}
}

关于java - VirusTotal HTTPS 连接 Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38559441/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com