Html_iframe.ud


 
Thread Tools Search this Thread
Special Forums Cybersecurity Malware Advisories (RSS) Html_iframe.ud
# 1  
Old 04-24-2008
Html_iframe.ud

This malicious HTML may be downloaded from remote site(s) by other malware. This is the Trend Micro detection for Web pages that were compromised through the insertion of a certain iFrame tag.
It also attempts to exploit a known vulnerability in RDS.DataControl component of Internet Explorer. If successful in exploiting the said vulnerability, this script attempts to connect to the certain URLs.


More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
TIDY.HTML(3)								 1							      TIDY.HTML(3)

tidy::html - Returns atidyNodeobject starting from the <html> tag of the tidy parse tree

       Object oriented style

SYNOPSIS
tidyNode tidy::html (void ) DESCRIPTION
Procedural style tidyNode tidy_get_html (tidy $object) Returns a tidyNode object starting from the <html> tag of the tidy parse tree. PARAMETERS
o $object - The Tidy object. RETURN VALUES
Returns the tidyNode object. EXAMPLES
Example #1 tidy.html(3) example <?php $html = ' <html> <head> <title>test</title> </head> <body> <p>paragraph</p> </body> </html>'; $tidy = tidy_parse_string($html); $html = $tidy->html(); echo $html->value; ?> The above example will output: <html> <head> <title>test</title> </head> <body> <p>paragraph</p> </body> </html> NOTES
Note This function is only available with Zend Engine 2 (PHP >= 5.0.0). SEE ALSO
tidy.body(3), tidy.head(3). PHP Documentation Group TIDY.HTML(3)