Package de.pdf_scrutinizer.exposures

Examples of de.pdf_scrutinizer.exposures.DocumentExposureScanTask


        // The document exposure scan task scans the document for
        // non-JavaScript-based attacks.
        // Since the document only need to be read by this task, it can run in a
        // separate thread.
        DocumentExposureScanTask exposureScanTask = new DocumentExposureScanTask(
                this, documentAdapter.getDocument());
        Thread documentExposureScanThread = new Thread(exposureScanTask);
        documentExposureScanThread.start();

        analysisresult.classification = Classification.benign;
View Full Code Here

TOP

Related Classes of de.pdf_scrutinizer.exposures.DocumentExposureScanTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.