<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Komodo Consulting</title>
	<atom:link href="http://www.komodosec.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.komodosec.com</link>
	<description>Making Security Simple</description>
	<lastBuildDate>Mon, 20 May 2013 18:36:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>iPhone Forensics</title>
		<link>http://www.komodosec.com/iphone-forensics/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iphone-forensics</link>
		<comments>http://www.komodosec.com/iphone-forensics/#comments</comments>
		<pubDate>Tue, 09 Apr 2013 11:41:59 +0000</pubDate>
		<dc:creator>Research</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.komodosec.com/?p=683</guid>
		<description><![CDATA[<p>Guest Post By: Satish B. iPhone forensics can be performed on the backups made by iTunes (escrow key attack) or directly on the live device. This article explains the technical procedure and the challenges involved in extracting data from the live iPhone. iPhone 4 GSM model with iOS 5 is used for forensics. &#160; GOAL [...]</p><p>The post <a href="http://www.komodosec.com/iphone-forensics/">iPhone Forensics</a> appeared first on <a href="http://www.komodosec.com">Komodo Consulting</a>.</p>]]></description>
				<content:encoded><![CDATA[<h6><span style="font-size: 13px;">Guest Post By: Satish B.</span></h6>
<p>iPhone forensics can be performed on the backups made by iTunes (escrow key attack) or directly on the live device. This article explains the technical procedure and the challenges involved in extracting data from the live iPhone.</p>
<p>iPhone 4 GSM model with iOS 5 is used for forensics.</p>
<p>&nbsp;</p>
<h2>GOAL</h2>
<h4>Extracting data and artifacts from iPhone without altering the information on the device</h4>
<p>Researchers at Sogeti Labs have released open source forensic tools (with the support of iOS 5) to recover low level data from the iPhone. The details shown below outline their research and give an overview on the usage of iPhone forensic tools.</p>
<p>&nbsp;</p>
<p>Steps involved in iPhone forensics include:</p>
<ul>
<li>Creating &amp; Loading a forensic toolkit on to the device without damaging the evidence</li>
<li>Establishing a communication between the device and the computer</li>
<li>Bypassing the iPhone passcode restrictions</li>
<li>Reading the encrypted file system</li>
<li>Recovering the deleted files</li>
<li>Creating &amp; Loading the forensic toolkit</li>
</ul>
<p>&nbsp;</p>
<p align="center">http://www.youtube.com/watch?feature=player_embedded&amp;v=hp-Mrw4yo9o</p>
<p>Imagine a computer which is protected with an OS level password – we can still access the hard disk data by booting a live CD, or by removing the hard disk and connecting it to another machine. When we compare computers to the iPhone, it is an embedded device. So it is not easy to take out the chips (hard disk) and dump data into it. To perform iPhone forensics, we use the Live CD approach. As the iPhone has only one serial port, we are going to load custom OS over the USB to access the hard disk of the device. The problem here is: the iPhone only loads firmware designed by Apple.</p>
<p>&nbsp;</p>
<p>In order to create and load the forensic toolkit, first we need to understand iPhone functions at the operating system level. iOS (previously known as iPhone OS) is the operating system that runs on all Apple devices like iPhone, iPod, Apple TV and iPad. iOS is a zip file (ships with .ipsw extension) that contains boot loaders, kernel, system software, shared libraries &amp; built in applications.</p>
<p>&nbsp;</p>
<p>When an iPhone boots up, it walks through a chain of trust, which is a series of RSA signature checks among the software components in a specific order as shown below:</p>
<p style="text-align: center;"><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo1.jpg"><img class=" wp-image-690 aligncenter" alt="photo1" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo1-300x49.jpg" width="400" height="70" /></a></p>
<p> <a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo2.jpg"><br />
</a></p>
<p>&nbsp;</p>
<p>The BootRom is Read-only memory (ROM) and it is the first stage of booting an iOS device. BootRom contains all the root certificates to signature check the next stage.</p>
<p>iPhone operates in 3 modes – Normal Mode, Recovery Mode, DFU mode</p>
<p>In Normal mode, BootRom start off some initialization stuff and loads the low level boot loader (LLB) by verifying its signature. LLB signature checks and loads the stage 2 boot loader (iBoot). iBoot signature checks the kernel and device tree, while the kernel signature checks all the user applications.</p>
<p>&nbsp;</p>
<p>In DFU mode, iPhone follows the boot sequence with a series of signature checks as shown below. BootRom signature checks the second level boot loaders (iBSS, iBEC). Boot loader signature checks the kernel, and the kernel signature checks the Ramdisk.</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo3.jpg"><img class=" wp-image-694 aligncenter" alt="photo3" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo3-300x48.jpg" width="400" height="70" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>During iOS update, the Ramdisk gets loaded into RAM and it loads all the other OS components. In Forensics, we will create a custom Ramdisk with our complete forensic tool kit and load it into the iPhone’s volatile memory. Signature checks implemented at various stages in the boot sequence do not allow us to load our custom Ramdisk. To load our custom Ramdisk, we have to bypass all these signature checks. In the chain of trust boot sequence, if we compromise one link, we can fully control all the links that follow. The hacker community has found several vulnerabilities in BootRom. By using these, we can flash our own boot loader and patch all other signature checks in all the subsequent stages. Apart from signature checks, every stage is also encrypted. These encryption keys can be grabbed from JailBreaking tools.</p>
<p>&nbsp;</p>
<p><strong>Building a custom Ramdisk</strong></p>
<p>First, we will build a custom ram disk using all of our forensic tools and patch the ram disk signature checks in kernel. Later, we will use jailbreak tools to load our kernel by patching BootRom signature checks.</p>
<p>With the open forensic toolkit released by Sogeti Labs, we can build Ramdisk only on MAC OS X. The entire forensic toolkit contains python scripts, a few binaries and a few shell scripts.</p>
<p>In order to run the tools, we first need to install all the dependencies (use the commands listed below from OS X terminal).</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo41.png"><img class="alignnone size-full wp-image-701" alt="photo4" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo41.png" width="593" height="94" /></a> <a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo4.jpg"><br />
</a></p>
<p>&nbsp;</p>
<p>Download ldid, grant execute permissions and move it to /usr/bin directory.</p>
<p>Download and install OSXFuse.</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo5.png"><img class="size-full wp-image-702 aligncenter" alt="photo5" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo5.png" width="592" height="105" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo6.png"><img class="size-full wp-image-703 aligncenter" alt="photo6" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo6.png" width="592" height="61" /></a></p>
<p>&nbsp;</p>
<p>Download &amp; install python modules – pycrypto, M2crypto, construct and progressbar.</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo7.png"><img class="size-full wp-image-704 aligncenter" alt="photo7" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo7.png" width="592" height="97" /></a></p>
<p>&nbsp;</p>
<p>Download and install Mercurial (http://mercurial.selenic.com/) to check out the source code from the repository.</p>
<p>&nbsp;</p>
<p style="text-align: center;"> <a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo8.png"><img class="alignnone size-full wp-image-705" alt="photo8" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo8.png" width="593" height="97" /></a></p>
<p>&nbsp;</p>
<p>Download redsn0w to fetch encryption keys to decrypt Ramdisk and Kernel.</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo9.png"><img class="size-full wp-image-706 aligncenter" alt="photo9" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo9.png" width="593" height="39" /></a></p>
<p>&nbsp;</p>
<p>To patch the signature checks in kernel, supply iOS 5 ipsw file to kernel_patcher.py</p>
<p>&nbsp;</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo10.png"><img class="size-full wp-image-707 aligncenter" alt="photo10" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo10.png" width="593" height="39" /></a></p>
<p>&nbsp;</p>
<p>The above python script creates a patched kernel and a shell script to create Ramdisk.</p>
<p>Running the shell script downloads, the forensic tool kit adds it to the Ramdisk. The Ramdisk image is just a plain HFS+ file system (native to Macs, making it fairly simple to add files to it). All of the steps listed above create a patched kernel and a custom Ramdisk with forensic tools.</p>
<p><em><span style="text-decoration: underline;">Note:</span></em> I have created the patched kernel and a custom Ramdisk for iPhone 4. You can directly download these files and skip all the above steps.</p>
<p>&nbsp;</p>
<p><a href="http://resources.infosecinstitute.com/extupload/iphone-forensics.zip">Download Link</a> for:</p>
<ul>
<li>myramdisk.dmg</li>
<li>kernelcache.release.n90.patched</li>
<li>iphone forensics.pptx</li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h4>Loading Forensic Toolkit</h4>
<p>In order to load the forensic toolkit, supply iOS 5 ipsw file, patched kernel and custom Ramdisk to redsn0w tool: connect the device to computer using USB cable and run the below command. Follow the steps displayed by redsn0w to boot the device in DFU mode. In DFU mode, redsn0w exploits the BootRom vulnerability and loads patched kernel &amp; custom Ramdisk on to the device.</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo11.png"><img class="size-full wp-image-708 aligncenter" alt="photo11" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo11.png" width="592" height="63" /></a></p>
<p>If the process fails with the <em>No identifying data fetched</em> error, make sure that the host computer is connected to the internet. After redsn0w is done, the Ramdisk boots in verbose mode.</p>
<p>&nbsp;</p>
<h4>Establishing a communication between the device and the computer</h4>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo12.png"><img class="size-full wp-image-709 aligncenter" alt="photo12" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo12.png" width="592" height="39" /></a></p>
<p>Once booted with custom Ramdisk, networking capabilities (like WI-FI) are not enabled by default. So a different way is chosen to communicate with the device by following the approach that Apple took with iTunes. USBMUX is the protocol used by iTunes to talk to the booted iPhone and coordinate access to its iPhone services by other applications. USB multiplexing provides TCP like connectivity over a USB port using SSL. Over this channel, iTunes uses AFC service to transfer files. But here we use this channel to establish a SSH connection and get a shell on the device.</p>
<p>SSH works on port 22. Tcprelay.py script redirects port 22 traffic to 2222 port.</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo13.png"><img class="size-full wp-image-710 aligncenter" alt="photo13" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo13.png" width="593" height="69" /></a></p>
<p>&nbsp;</p>
<p>SSH is now accessible at localhost:2222.</p>
<p>&nbsp;</p>
<p>At this point, we get access to the file system. To make things even more complicated, every file is encrypted with its own unique encryption key, tied to a particular iOS device. Furthermore, the data protection mechanism introduced with iOS 4 adds another layer of encryption that does not give access to the protected files and keychain items when the device is locked. Data protection is the combination of using hardware based encryption along with a software key. Every iPhone (&gt;3gs) contains a special piece of hardware (AES processor) which handles the encryption with a set of hardcoded keys (UID, GID). OS running on the device cannot read the hardcoded keys, but it can use the keys generated by UID (0×835 and 0x89B) for encryption and decryption. The software key is protected by a passcode and is also used to unlock the device every time the user wants to make use of the device. So in order to access the protected files, first we have to bypass the passcode.</p>
<p>&nbsp;</p>
<h4>3. Bypassing the iPhone passcode restrictions</h4>
<p>&nbsp;</p>
<p>Initially (&lt; iOS 4), passcode is stored in a file which can be removed directly over SSH. Since the introduction of data protection (from iOS 4), the passcode is used to encrypt protected files and keychain items on the device. So in order to decrypt the data, we have to supply the valid passcode.</p>
<p>&nbsp;</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>Passcode validation is performed at two levels: one at the springboard and another one at kernel level. Bruteforce attacks performed at the springboard level lock the device, introducing delays and possibly leading to wiped out data. However, these protection mechanisms are not applicable at kernel level (AppleKeyStore method) and lead to bruteforce attacks. To make brute force attacks less practical, a passcode key derived from the user passcode is tied to the hardware UID key. The brute force can only be performed on this device; it is not possible to prepare pre compute values (like rainbow tables) offline.</td>
</tr>
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo14.png"><img class="size-full wp-image-711 alignnone" alt="photo14" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo14.png" width="593" height="39" /></a>Port 1999 opened with tcprelay.py is used by the bruteforce script. It connects to the custom restored_external daemon on the Ramdisk, collects basic device information (serial number, UDID, etc.), unique device keys (keys 0×835 and 0x89B), downloads the system keybag and tries to bruteforce the passcode (4 digits only).Below table illustrates the time required to bruteforce different passcodes.</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo15.png"><img class="size-full wp-image-714 aligncenter" alt="photo15" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo15.png" width="217" height="160" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo16.png"><img class="size-full wp-image-715 aligncenter" alt="photo16" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo16.png" width="592" height="38" /></a></p>
<h4>4. Reading the encrypted file system</h4>
<p>Upon a successful passcode brute force, the script automatically downloads the keychain. Keychain is a Sqllite database which stores sensitive data on your device. The keychain is encrypted with hardware key; it also restricts which applications can access the stored data. Each application on your device has a unique <em>application-identifier</em>(also called as entitlements). The keychain service restricts which data an application can access based on this identifier. By default, applications can only access data associated with their own application-identifier. Later, Apple introduced keychain groups, enabling applications which belong to same group to share the keychain items. There are two ways to access all the keychain items: One is by writing an application and making it a member of all application groups. The other is by writing an application and granting com.apple.keystore.access-keychain-keys entitlement.</p>
<p>Keychain database contents can be extracted using keychain_tool.py</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo17.png"><img class="size-full wp-image-716 aligncenter" alt="photo17" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo17.png" width="592" height="39" /></a></p>
<p>Execute the dump_data_partition shell script to dump the file system</p>
<p>The script reads the file system from the device and copies it to UDID directory as an image (.dmg) file. The image file can be opened using the modified HFSExplorer that will decrypt the files <em>on the fly</em>.</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo18.png"><img class="size-full wp-image-717 aligncenter" alt="photo18" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo18.png" width="592" height="40" /></a></p>
<p>&nbsp;</p>
<p>To decrypt it permanently, emf_decrypter.py script can be used.</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo19.png"><img class="size-full wp-image-718 aligncenter" alt="photo19" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo19.png" width="592" height="39" /></a></p>
<p>&nbsp;</p>
<p>It decrypts all files in the file system image. To view the decrypted files, mount the file system with below command.</p>
<p>As soon as the file system is decrypted, there are various files of interest available such as the mail database, the SMS database and location history, etc…</p>
<p><strong>5. Recovering the deleted files</strong></p>
<p>&nbsp;</p>
<p>Deleting a file on iPhone only deletes the file reference. So it is possible to recover the deleted files; to do so, run emf_undelete.py script.</p>
<p>&nbsp;</p>
<p><a href="http://www.komodosec.com/wp-content/uploads/2013/04/photo20.png"><img class="alignnone size-full wp-image-719" alt="photo20" src="http://www.komodosec.com/wp-content/uploads/2013/04/photo20.png" width="593" height="39" /></a></p>
<p>&nbsp;</p>
<p>With this technique it is possible to recover valuable data like call logs, deleted images, deleted SMS, deleted contacts, deleted voicemail and deleted emails.</p>
<p>&nbsp;</p>
<p>Next articles in the series:</p>
<p><a href="http://resources.infosecinstitute.com/ios-5-backups-part-1/">iPhone Forensics- Analysis of iOS 5 Backups: Part 1</a><a href="http://resources.infosecinstitute.com/iphone-forensics-part2/"><span style="color: #333333;"> </span></a></p>
<h3>References</h3>
<p>iPhone data protection in depth by Jean-Baptiste Bédrune, Jean Sigwald</p>
<p>http://esec-lab.sogeti.com/dotclear/public/publications/11-hitbamsterdam-iphonedataprotection.pdf</p>
<p>&nbsp;</p>
<p>iPhone data protection tools</p>
<p>http://code.google.com/p/iphone-dataprotection/</p>
<p>&nbsp;</p>
<p>‘Handling iOS encryption in forensic investigation’ by Jochem van Kerkwijk</p>
<p>http://staff.science.uva.nl/~delaat/rp/2010-2011/p26/report.pdf</p>
<p>&nbsp;</p>
<p>iPhone Forensics by Jonathan Zdziarski</p>
<p>http://shop.oreilly.com/product/9780596153595.do</p>
<p>&nbsp;</p>
<p>iPhone forensics white paper</p>
<p>http://viaforensics.com/education/white-papers/iphone-forensics/</p>
<p>&nbsp;</p>
<p>Keychain dumper</p>
<p>http://labs.neohapsis.com/2011/02/28/researchers-steal-iphone-passwords-in-6-minutes-true-but-not-the-whole-story/</p>
<p>&nbsp;</p>
<p>25C3: Hacking the iPhone</p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/1F7fHgj-e_o?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>&nbsp;</p>
<p>iPhone wiki</p>
<p>http://theiphonewiki.com</p>
<p>&nbsp;</p>
<p>The post <a href="http://www.komodosec.com/iphone-forensics/">iPhone Forensics</a> appeared first on <a href="http://www.komodosec.com">Komodo Consulting</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.komodosec.com/iphone-forensics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Vulnerability &#8211; January 2013</title>
		<link>http://www.komodosec.com/exploiting-cve-2013-0422-for-fun-and-profit-java/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exploiting-cve-2013-0422-for-fun-and-profit-java</link>
		<comments>http://www.komodosec.com/exploiting-cve-2013-0422-for-fun-and-profit-java/#comments</comments>
		<pubDate>Tue, 15 Jan 2013 23:08:06 +0000</pubDate>
		<dc:creator>Research</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.komodosec.com/?p=591</guid>
		<description><![CDATA[<p>A few days ago, an exploit of a critical vulnerability in Java was published which affects the entire cyber world. The exploit enabled taking full control over remote computers which run Java applications. In most cases such attacks are possible after the victim has visited a malicious website infecting his operating system. Various exploit kits [...]</p><p>The post <a href="http://www.komodosec.com/exploiting-cve-2013-0422-for-fun-and-profit-java/">Java Vulnerability &#8211; January 2013</a> appeared first on <a href="http://www.komodosec.com">Komodo Consulting</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>A few days ago, an exploit of a critical vulnerability in Java was published which affects the entire cyber world.</p>
<p>The exploit enabled taking full control over remote computers which run Java applications.<br />
In most cases such attacks are possible after the victim has visited a malicious website infecting his operating system.</p>
<p><span style="font-size: 13px; line-height: 19px;">Various exploit kits and frameworks (commercial and opensource) have added this exploit to their packages and can affect all subversions of Java 7  (Similar exploits also exists for Java 6 and older versions).</span></p>
<p>Since countless sites uses iframes for commercials and advertisements, attackers began injecting this vulnerability into the advertisement networks, from there attacking users in legitimate websites.</p>
<p>The following movie demonstrates the usage of the exploit, how the victims sees it, and what the <span style="font-size: 13px; line-height: 19px;">attacker is capable to perform after exploiting this vulnerability in the victim&#8217;s computer:</span></p>
<p>&nbsp;</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/f7CtJ7Jv0xY?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p style="text-align: right;" dir="RTL">שלום רב,</p>
<p style="text-align: right;" dir="RTL">לפני מספר ימים התפרסמה חשיפה קריטית למערכות JAVA המשפיעה על כלל העולם.</p>
<p style="text-align: right;" dir="RTL">החשיפה מאפשרת השתלטות על מחשב מרחוק שהריץ אפליקציית JAVA, לרוב זה יקרה לאחר שגלש לאתר זדוני. חשיפה זו משתוללת ברשת ופוגעת <strong>בכל גרסאות</strong><strong>JAVA 7</strong>, (במידה ולא שידרגתם יש חשיפות אחרות דומות שפוגעות ב-JAVA 6 בגרסאותיו הישנות). על מנת להיפגע משתמש צריך לגלוש לאתר שבו יש את החשיפה הזו.</p>
<p style="text-align: right;" dir="RTL">מאחר והרבה אתרים מיישמים iframe לשימוש בפרסומות, החלו תוקפים להחדיר את החשיפה הזו לרשתות הפרסום ולהתקיף כך גם משתמשים הגולשים באתרים לגיטימיים.</p>
<p style="text-align: right;" dir="RTL"><strong>המלצת קומודו:</strong></p>
<p style="text-align: right;" dir="RTL">1.      להסיר את התקנת ה- JAVA ממחשבים ושרתים הפתוחים לרשת האינטרנט.</p>
<p style="text-align: right;" dir="RTL">2.      במידה ולא ניתן:</p>
<p style="text-align: right;" dir="RTL">      א.       להשתמש במחשבים בעלי אנטיוירוס עדכני בלבד (מזהה לפחות חלק מההתקפות)</p>
<p style="text-align: right;" dir="RTL">       ב.      לעדכן את כל המשתמשים בארגון שאם יש התרעת אבטחה מהדפדפן הכרוכה ב- JAVA, לנקוט במשנה זהירות.</p>
<p style="text-align: right;" dir="RTL">       ג.       להסיר את <strong>7 </strong><strong>JAVA</strong> ולהתקין <strong>JAVA 6</strong><strong> </strong>(גרסה עדכנית ואחרונה).</p>
<p style="text-align: right;" dir="RTL"><strong>הסטוריה (קצרה):</strong></p>
<p style="text-align: right;" dir="RTL">2 לינואר &#8211; נראו סימנים ראשונים ציבוריים לחשיפה</p>
<p style="text-align: right;" dir="RTL">10 לינואר &#8211; החשיפה מוכרזת באופן רשמי בכל אתרי אבטחת המידע</p>
<p style="text-align: right;" dir="RTL">ערכות פריצה נפוצות הנמכרות כיום בשוק, כבר מכילות את החולשה</p>
<p style="text-align: right;" dir="RTL">11 לינואר &#8211; יצא ניצול חולשה במערכת פתוחה METASPLOIT אשר נגישה לכל אדם ברשת</p>
<p style="text-align: right;" dir="RTL">11 לינואר &#8211; אורקל מכריזה שבקרוב ייצא פאץ</p>
<p style="text-align: right;" dir="RTL">14 לינואר &#8211; אורקל מוציאה פאץ שמתקן את הבעיות שנחשפו</p>
<p style="text-align: right;" dir="RTL">15 לינ ואר &#8211; נמצא שהפאץ לא מעדכן באופן מלא את הבעיות בגרסה ועדיין ישנם חורי אבטחה</p>
<p style="text-align: right;" dir="RTL">15 לינואר &#8211; ממשלת ארה&#8221;ב מודיעה שהפאץ האחרון לא מספק ועדיין מומלץ להסיר את JAVA מהמערכות</p>
<p style="text-align: right;" dir="RTL"><strong>קוד </strong><strong>CVE</strong><strong>:</strong></p>
<p style="text-align: right;" dir="RTL">CVE-2013-0422</p>
<p style="text-align: right;" dir="RTL">בברכה, צוות מחקר קומודו</p>
<p>The post <a href="http://www.komodosec.com/exploiting-cve-2013-0422-for-fun-and-profit-java/">Java Vulnerability &#8211; January 2013</a> appeared first on <a href="http://www.komodosec.com">Komodo Consulting</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.komodosec.com/exploiting-cve-2013-0422-for-fun-and-profit-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
