I need your help
posted in General
0
Hello,
I really like the Free Online Malware Scanner from quttera.com, so i decided to write a small java program, which starts a scan and gets the results.
I am using the Jsoup library for this.
I can get the HTML code of a finished Scan:
Response get = Jsoup.connect("https://quttera.com/detailed_report/example.com")
.method(Method.GET)
.timeout(15000)
.ignoreHttpErrors(true)
.execute();
But it seems like I cant start a Scan:
Response get = Jsoup.connect("https://quttera.com/sitescan/example.com")
.method(Method.GET)
.timeout(15000)
.ignoreHttpErrors(true)
.execute();
Could you please help me? How could I accomplish to start a scan with my java program?
Greetings from Germany,
Marcel Schneider
I really like the Free Online Malware Scanner from quttera.com, so i decided to write a small java program, which starts a scan and gets the results.
I am using the Jsoup library for this.
I can get the HTML code of a finished Scan:
Response get = Jsoup.connect("https://quttera.com/detailed_report/example.com")
.method(Method.GET)
.timeout(15000)
.ignoreHttpErrors(true)
.execute();
But it seems like I cant start a Scan:
Response get = Jsoup.connect("https://quttera.com/sitescan/example.com")
.method(Method.GET)
.timeout(15000)
.ignoreHttpErrors(true)
.execute();
Could you please help me? How could I accomplish to start a scan with my java program?
Greetings from Germany,
Marcel Schneider
Accepted Answer
0
Hi Marcel, I don't have any access to quterra.com so you should contact them with this request through support@quttera.com.

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »