Package de.pdf_scrutinizer.data

Examples of de.pdf_scrutinizer.data.Vulnerability


        if (bytes[tiff_offset] == 0x7
                && bytes[tiff_offset + 1] == 0x0
                && bytes[tiff_offset + 2] == 0x0
                && bytes[tiff_offset + 3] == 0x1) {
            Vulnerability v = new Vulnerability("CVE-2010-0188");
            v.description = "tiff integer overflow";
            v.references.add("http://blog.fortinet.com/cve-2010-0188-exploit-in-the-wild/");
            scrutinizer.getAnalysisResult().vulnerabilityUsed(v);
        }
    }
View Full Code Here


                                //
                                // thats just the PoC value.
                                // it could have different values!
                                //
                                if (segmentpageassociation == 0x333333) {
                                    Vulnerability v = new Vulnerability("CVE-2009-0658");
                                    v.description = "JBIG2 overflow";
                                    v.references.add("http://www.secureworks.com/research/blog/research/20947/");
                                    scrutinizer.getAnalysisResult().vulnerabilityUsed(v);
                                }
                            }
View Full Code Here

TOP

Related Classes of de.pdf_scrutinizer.data.Vulnerability

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.