Tuesday, February 21. 2012Analysis of Adler32
Original Research May 9, 2011
IntroductionAdler32 is a checksum designed to detect corruption in Zlib's compressed data or corruption in the algorithms. Since it was much faster than its more reliable competitor, CRC32 it was chosen for this task [1]. If the uncompressed data does not match the Adler32 checksum, the application can inform its protocol or the user to retransmit the data. However, the main use of Adler32 was to debug implementations of Zlib. Adler32 as well as CRC32 are insufficient for any purpose that requires a high degree of certainty. The chance of a collision for an ideal 32-bit checksum is 1 in 4 billion, which can be easily computed in a few hours by anyone with a reasonable computer. An attacker can even do it in realtime if they had precomputed all checksums beforehand. Adler32 has known weaknesses making it much more susceptible to collision than the more reliable CRC32. In 2002, RFC 3309 changed the checksum of the SCTP protocol from Adler32 to CRC32. In doing so it explained a weakness of Adler32 with short messages [2]. Since it is not relied upon for important cryptographic security and is used for speed, few research papers have been published on it. Adler32 also contains a weakness in long messages where the end of the message is modified but the start of the message is the same. This means that Zlib cannot be transmitted by itself without use of a slower checksum or hash. Gzip and PNG formats are designed to use Zlib and choose to have an optional CRC32 checksum of the compressed zlib data instead of the original data. In this blog post I will describe a method to generate collisions between Adler32 checksums. This has no security implications but may be interesting to cryptographers looking for a trivial distinguisher [3]. CRC32 and all 32-bit checksums can be analyzed with the same scripts with no modifications to the algorithm. By dividing secure hashes into 32-bit chunks, they can be tested not fully but spot checked using this same algorithm. CollisionThe following is a Python script to generate Adler32 collisions. I have tested this on millions of pieces of data and fails only on a small subset of data. MethodTo find this method, I took a subset of the first 4 billion checksums and found all the collisions. The most frequent collision repeated for almost every piece of data. The difference between the two data is only 3 bits in the last 3 bytes. Also: The exceptions to this algorithm are when the last 3 bytes are an edge case. Mark Adler himself explains this in an e-mail correspondence:
It is confusing to say that Adler32 has a weakness against short messages (less than a few hundred bytes). If you choose a 1024-byte psuedorandom prefix and modify the last bytes, you will find the same number of collisions as a short message. I chose to use a 1024-byte prefix (which was unnecessary) computed the Adler32 checksum of all 0-4 byte combinations appended to the prefix. Using this I was able to catalogue many collisions among Adler32 checksums. The table in its current optimized format is 16GB. By simply indexing the data and removing unnecessary duplicates, a full set of collisions can be created that allows the generation of collisions with Adler32 in real-time. Since collisions should not affect the security of any application using Adler32 or CRC32, this information is only useful for research purposes. DataWith the given prefix and a suffix of less than 5 bytes, there are no checksums that do not start with 0b, 0c, 0d, 0e, 0f, 10, 11, 12, 13, 14, 15, 16, 17, 18, or 1b. The largest collision found (most number of values with the same checksum) had 21846 data with the same checksum. It is available in the attached text file (adler32_mpmp3_1043a_21846.txt). To verify I suggest the following code: AnalysisA large scale test for collisions in Adler32 shows that collisions are more common than values that do not collide. 4311738902 values that collide vs 906527 checksums that do not collide gives us a 99.998% chance of there being a nearby collision for any checksum. The reason behind this high chance of collision is in the design of the algorithm. Two adjacent pieces of data with the same prefix except the last byte will have a difference of 65537. Two adjacent pieces of data with last byte being ff and 00 will have a difference of -16580862. The difference between different length strings of 00 is 65536. Adler32 addition is done modulo 65521 [4] for better mixing. This benefit allows it to outperform Fletcher-16, which was its original intent. All hashes must collide due to the Pigeonhole principle [5], but Adler32's design does not use all pigeonholes effectively for similar data. When given the same prefix and different suffixes Adler32 performs much worse than CRC32. To find a collision, I can modify the end of the stream to find collisions. If a collision is required between a good value and a specific bad value, the start of the stream must be modified to change the most significant bits of the Adler32 checksum. Changing the last 4 bytes of the stream is insufficient to produce all possible checksums. Also, it should be noted that some checksums are difficult to collide since Adler32 does not produce them regularly. PerformanceWith advances in algorithms CRC32 is now much faster than it originally was. It is still slower than Adler32, but by a factor of 20% - 100%. For 1kB of data, Adler32 takes 31 seconds per 16M (in Python) while CRC32 takes 38 seconds per 16M. In C, Adler32 takes 25 seconds while CRC32 takes 34 seconds. In Python: Adler32 benchmark: 30.9 seconds CRC32 benchmark: 37.8 seconds In C: Adler32 benchmark: 24.8 seconds CRC32 benchmark: 32.5 seconds This could explain why Gzip, BZip2 and LZMA chose CRC32 instead of Adler32 for checksum. Knowing that the Adler32 checksum suffers from far greater occurrence of collisions than its competitor should convince anyone to reconsider its use in protocols and file formats. The computation, memory and storage required to make this conclusion may not have been available in 1996 when the algorithm was written. However, its author was well aware of the issues with the algorithm. This raises the question of what criteria an algorithm should meet. In 2011, cryptographic hashes hoping to become the SHA-3 standard have to pass a multi-stage contest with peer review and public comments [6]. Each is tested by the strictest standards, which must involve far more than a trivial distinguisher. As computational power grows attacks can improve using as much computational power as available to researchers. However the takeaway from this blog post should not be that brute force should find collisions in algorithms. Instead as we look for collisions, we must remember that our current computational power is enough to test weak algorithms. ConclusionThe Adler32 algorithm is not complex enough to compete with comparable checksums. A class of collisions exists when the end of the stream is modified in a certain way. The likeliness of this occuring is low enough that it can only be expected to occur in rare circumstances, but when data is modified very often (e.g. HTTP over a wireless connection) Adler32 alone is not enough to ensure integrity. Since CRC32 is only slightly more computationally expensive and cryptographic hashes are necessary for many uses, developers today have better choices for this purpose. More detailed information about Adler32 and comparable checksums can be found in the 2009 Maxino-Coopman paper, "The Effectiveness of Checksums for Embedded Control Networks" [7]. Works Cited1. Gailly, Jean-Loup. "RFC 1950: ZLIB Compressed Data Format Specification version 3.3". May, 1996. URL: http://www.gzip.org/zlib/rfc1950.txt 2. "RFC 3309: Stream Control Transmission Protocol (SCTP) Checksum Change." September, 2002. URL: http://tools.ietf.org/html/rfc3309 3. Ferguson, Niels, Schneier, Bruce. "Practical Cryptography". 2003. Page 47. 4. "Revisiting Fletcher and Adler Checksums". 2006. URL: http://www.zlib.net/maxino06_fletcher-adler.pdf 5. Various. "Pigeonhole principle". Retrieved: Oct 26, 2011. URL: http://en.wikipedia.org/wiki/Pigeonhole_principle 6. NIST. "Cryptographic Hash Algorithm Competition". Retrieved: Dec 8, 2011. URL: http://csrc.nist.gov/groups/ST/hash/sha-3/index.html 7. Maxino, Theresa, Koopman, Philip. "The Effectiveness of Checksums for Embedded Control Networks". 2009. URL: http://www.ece.cmu.edu/~koopman/pubs/maxino09_checksums.pdf AfterwordI wish to personally thank Mark Adler for his time in providing a detailed explanation of the Adler32 checksum and known issues. His feedback on my research made this blog post factually correct and far more useful for readers. Tuesday, February 7. 2012Why Authenticity Is Not Security
Code signing aims to solve two specific problems. The first problem is how to identify the author of code. The second problem is how to verify that code has not been modified after release. Truly solving one or the other would be a good step forward. That both may be solved simultaneously is a great step forward. There is a common misconception, however, that code signing represents a giant leap forward by making the signed code itself "secure". There is not a little danger in trusting code simply because it is signed, without regard to the security of its development before release.
First, a primer on how code signing works. Code signing calculates a cryptographic hash of the code, which is then digitally signed by the author and appended to the code itself. After release, the appended hash can be compared to a newly calculated hash in order to detect modification of the code. The digital signature can be compared to the author's certificate in order to also detect modification of the appended hash. Optionally, the author's certificate may be compared against a certificate authority to detect an inauthentic certficiate. Remember that this process was only designed to gurantee the authenticity of the code, that it has not been modified after release and that it was released by the expected author. None of those steps, however, can attest to the safety of the signed code; inversely, code that is not signed is not necessarily less safe. Safety is introduced into the code signing process as a byproduct of an organization's criteria for signing code and revoking certificates. For example, developers may request that Microsoft sign the developers' drivers through Microsoft's Windows Logo program, to indicate that they have passed Microsoft's tests for reliability and compatibility. In addition, x64 architecture Windows drivers are required to be signed by the author or they will be prevented from loading, and will also be prevented from loading if the signing certificate is revoked. The signature certificate could be revoked in the event the driver is observed to be misbehaving, but by then the damage is already done and only the scope can be minimized. Microsoft could decline to sign a driver that fails to pass their tests, but in this case, security is not something for which they are testing. For signed code to be trusted as secure, and not merely as authentic, it must be reviewed for vulnerabilities. In fact, the code signing process could incorporate an actual level of security. Large software vendors could require security reviews as part of their code signing process. In addition, large organizations with their own security team could take this responsibility for reviewing the security of applications they use, regardless of whether the author signed them, and re-distributing them internally with the organization's own signature. Smaller organizations might outsource this responsibility to a security vendor. Finally, security vendors could counter-sign code as a seal of approval to encourage adoption of a product. The primary advantage of this approach is enabling end-users to decide on the trustworthiness of an application based on whether it has been signed by a trustworthy security team, and not merely by the author, if it is signed at all. The secondary advantage is the possibility of automatically enforcing these trust decisions at an administrative level, rather than leaving it up to careless users on a case-by-case basis. That, however, is a post for another time....
Posted by David Kane-Parry
at
10:26
Wednesday, January 25. 2012An Illustration of the Dichotomies in Security Industry Reportage
On the front page of Google news just now. The difference in the reporting style between the business and technology press has rarely been more stark.
Monday, April 4. 2011The Double-Edged Sword of HSTS Persistence and Privacy
HTTP Strict Transport Security or more commonly known as HSTS is a draft policy by the IETF WebSec working group currently proposed that would extend the standard list of HTTP response headers to allow domain owners to enroll complying browsers into exclusively secure communications with the web server for an asserted period of time.
This is accomplished by rewriting all HTTP requests to that particular domain regardless of entry (be it via link, image or manually typed in the address bar) over HTTPS and validating the certificate chain. If a secure connection cannot be established or the certificate chain cannot be verified then the request fails with a transport level error and is abandoned. The actual implementation of this is nearly trivial. Over a secure connection the server simply has to return the header specifying how long the browser should exclusively attempt HTTPS connections and a flag whether it should include sub-domains: Under normal circumstances as long as the user has been to that domain within the max-age of the policy, this is an effective mitigation against sslstrip type attacks which rely on users to initiate an HTTP connection to perform a man-in-the-middle attack against the browsers. One of the less understood implications of this proposal is the role that wildcard SSL certificates play. When purchasing an SSL certificate the domain owner must decide between a standard certificate that covers only one particular FQDN such as store.domain.com or a (more expensive) wildcard certificate issued to *.domain.com that would encompass multiple sub-domains such auth.domain.com and store.domain.com. As the certificate wildcard feature is decoupled from the HSTS includeSubDomains flag it leads to interesting behavior that allows an actor such as an advertising company or any other entity to store, retrieve, and edit data in the browser's database. When a wildcard SSL certificate is used it allows the owner to have a near unlimited number of entires in the HSTS databases as currently implemented by supporting browsers. An entry in the HSTS database can grant a single-bit of information to an interested party that can be retrieved at a later time. Lets look at an example where we want to store and retrieve the word "HELLO" in a browser's HSTS database using nothing but forum image tags and a trivial encoding. To set the bits we would simply need to create a post with the following tags: When a browser goes to each of these URLs over HTTPS the web server would see the /setbit.png key and include a HSTS header with a large max-age value in the response and create an entry in the browser's HSTS table for each of the sub-domains. To read this data back out a javascript block on a different domain than the original forum would first brute force the character count by creating resource requests enumerating possible values and having the server respond whether the request came in over HTTP or HTTPS as the requests would have been rewritten by the browser if the sub-domain is present in HSTS database. These requests would look like: The same brute-force enumeration process would be performed to retrieve the individual characters of the message body. This enumeration is more effective than the current history enumeration attacks via CSS (here.) At first this approach looks like a Bloom filter. Seemingly akin to burning in bits permanently and not having the ability to change them but thanks to the max-age specifier of the header it is possible to also clear bits by setting their maximum age to 0: Initially this doesn't look worse than standard tracking cookie as long as it is cleared on a regular basis but clearing the HSTS database frequently renders it much less effective in preventing the very attacks it sought guard against. Therein lies the classic trade-off of security versus privacy. Of the currently two HSTS supporting browsers there is no consensus on this topic. Chrome opts for increased privacy by clearing HSTS database when cookies are cleared while Firefox 4 opts to store HSTS settings in the separate and infrequently cleared site-preferences database. So what can be done about this? My proposal is to amend the draft to force the includeSubDomains flag on wildcard certificates. This would limit them to only one entry in the browsers HSTS database and make the technique above prohibitively expensive to non-CA owners as a separate signed SSL certificate would be needed for every bit of information stored and limit encoding options. That way we can have the best of both worlds, privacy and security. Saturday, January 8. 2011Failed 2010 Secuirty Predictions
Failed Security Predictions from 2010
As most of us return from attempts to relax over the holiday season various self-proclaimed information security experts quickly scramble to do press interviews and write blog posts about their predictions on what to expect over the next twelve months when it comes to security. In a tongue in cheek Twitter post, security luminary and privacy expert Adam Shostack mused “My 2011 security prediction: 75% of predictions from people who offered predictions last year won't start with a review of how they did.” So, before we make some predictions of our own (hey everyone is doing it) let’s review some of the more misguided and wrong predictions made by others this time last year. As I used Bing.com to search for last year’s predictions I quickly realized that not many “visionaries” were really willing to go out on a limb and predict anything that wasn’t already very obvious. So, for those that do make this list of completely off base and wrong predictions for the last twelve months, we applaud your bravery in going on the record with some truly ambitious predictions. Taking the first two spots in our list is borderline charlatan and master of fear, uncertainty, and doubt, Verisigns very own overpaid mailing list moderator, Russ Cooper; http://securityblog.verizonbusiness.com/2009/12/15/2010-security-predictions/ 1.) RussCooper: “Social Media operators will gain more control over attackers” This prediction was in direct contradiction with pretty much everyone else who made predictions in 2010. In fact, attacks via social networking sites clearly increased during 2010, and we have seen everything from malicious embedded ads, malicious applications, and of course the standard social engineering type attacks. While social networking sites attempt to make improvements to both security and privacy issues, they have not taken more control over attackers, and we have seen but the tip of the iceberg on how social networking can be leveraged in an attack. 2.) RussCooper: “Malware will not evolve” I have two words for Russ on this prediction - Conficker and Aurora. Malware did in fact evolve and will continue to evolve. In fact those who want to make safe predictions can safely say that in 2011 Malware will continue to evolve as protection against said Malware also evolves. Malware protection has always been and will continue to be an arms race. Next on our list we have a couple predictions that came from a Network World article written by Andreas M. Antonopoulos. http://www.networkworld.com/columnists/2009/121609antonopoulos.html 3.) Andreas M Antonopoulos: “Self-propagating mobile phone worms and Trojans. Mobile security will get slightly worse as the proliferation of applications and smart devices broadens the attack surface. While we've seen worms on iPhone, they have not been self-propagating, depending on PCs to spread. Expect to see true self-propagating threats on iPhone and Android systems in 2010” I suppose that this prediction is partially correct. Mobile and “smart” devices have grown in 2010. In fact Android devices specifically have exploded onto the scene. That said we still have not seen a large amount of attacks, malware, worms, or Trojans. I do think that this prediction will eventually become true as it is the obvious and natural evolution of threats. Number four on our list is also from Andreas M. Antonopoulos and is very amusing and probably needs very little commentary to explain why it was completely incorrect. 4.) AndreasMAntonopoulos: “The Transportation Security Administration stops wasting billions of dollars in traveller delays by confiscating water bottles and removing shoes. Instead it focuses on real threats based on rational risk assessment, not security theater based on movie-plots (hat-tip Bruce Schneier). OK, unlikely, but I can dream, can't I?” At least in this case the writer identified that they were in fact dreaming with this prediction, and I suppose we can respect the wishful thinking. Halfway through our list of failed security predictions for 2010 at numbers five, six, and seven we have the analysts from Forrester Researcher. http://biztech2.in.com/opinions/data-security/forresters-data-security-predictions-for-2010/72592/0 5.) Forrester: “In spite of the worldwide scope of botnets, we anticipate even more successes in the fight against all forms of cybercrime in 2010.” I think all of us honestly wish that this prediction came true and while there have been some subtle wins for law enforcement in the fight against “cybercrime.” I think many would hardly consider this any form of success. 6.) Forrester: “Full disk encryption will continue its steady march into the enterprise, spurred on by breach disclosure laws” While some more advanced enterprises may have implemented or thought of implementing full disk encryption, 2010 did not bring additional disclosure laws. Note that others who did not make this list did in fact predict more laws hitting the books in 2010, and there is no evidence of full disk encryption making any type of march into enterprises. 7.) Forrester: “Cloud data security concerns will begin to dissipate” Much like the other Forrester predictions I am sure many of us wish that this one came true as well, but, sadly, 2010 brought multiple examples of why we should continue to be concerned about the security of the cloud and data stored in the cloud. Coming in at number eight we have Tripwire who I almost ignored because it was painfully obvious that all of their predictions were aligned with their product offering and corporate messaging. This of course is a dangerous thing to do especially in this case where they were clearly dead wrong. They had others that were off base as well but also very clear attempts at peddling products. They will not make the list. http://www.net-security.org/secworld.php?id=8647 8.) Tripwire: “Despite the hype of increased social networking threats, misconfigured ‘stuff’ (ie, servers, firewalls, laptops, etc) will be the real threat for companies to watch out for” Obviously misconfigured devices are in fact a threat to an organization’s security, but threats via social networking were in the spotlight for 2010 and will probably only get worse in 2011. Finishing off the list at numbers nine and ten we have predictions from Symantec and iDefense. Two companies who sell “Security Intelligence” that must have run out by the end of 2010 because these two predictions are clearly lacking. http://www.symantec.com/connect/blogs/worst-yet-come-symantec-s-2010-security-predictions 9.) Symantec: “Mac and Mobile Malware Will Increase – The number of attacks designed to exploit a certain operating system or platform is directly related to that platform’s market share, as malware authors are out to make money and always want the biggest bang for their buck. In 2009, we saw Macs and smartphones targeted more by malware authors, for example the Sexy Space botnet aimed at the Symbian mobile device operating system and the OSX.Iservice Trojan targeting Mac users. As Mac and smartphones continue to increase in popularity in 2010, more attackers will devote time to creating malware to exploit these devices.” This prediction is almost a duplicate of our third item on this list but worth mentioning, because Symantec went as far to expand from just mobile devices to Apple Mac devices. While it is very obvious that Apple’s “we are more secure” add campaign was nothing more than creative marketing and nowhere near reality, we still have not seen the predicted increase in OS-X related malware. Yes, we have seen some samples both in the lab and in the wild, but there was not a clear increase that justifies calling this out as a threat to worry about. Will it happen eventually? Maybe, but not yet. http://blogs.verisign.com/idefense/2009/12/2010-prognostications.html 10.) iDefense: “There will be more Windows 7 vulnerabilities in 2010 than all of the Windows Vista vulnerabilities discovered in the three years since its release.” I am truly at a loss to try and explain how a company who sells an intelligence service and purchases zero day vulnerabilities could come up with such a ridiculous prediction. A quick and non-scientific search of OSVDB (www.osvdb.org) for all Windows Vista vulnerabilities from January 2007 until December 2010 yields eighty-four (84) results. While a search for the same time period for Windows 7 yields thirty-seven (37). Granted this does not include any reported and yet to be fixed vulnerabilities, but, clearly, this prediction was off the mark. Now that we have spent almost 1400 words poking fun at others we will stop. Our predictions for 2011 will be in a separate post coming soon. Monday, October 4. 2010Stuxnet Speculation Jumps The Shark
One of the lessons I remember best from my early security career with Uncle Sam was the maxim: “crawl, don’t jump to conclusions.” Having heard of various botanic, historic and religious analysis on how the word “myrtus” - in a build path to a PDB file - clearly indicates that the Israelis are responsible for the Stuxnet worm, I have to conclude that this story has officially jumped the shark.
Here’s what the string in question looks like in ASCII: b:\myrtus\src\objfre_w2k_x86\i386\guava.pdb I’ve had a bunch of SCADA security experience back in the day, and specifically with WinCC, so this path looked strangely familiar. What if we take the mystical word “myrtus” and write it like it would appear in the GUI like so: “My RTUs”. Okay, can we stop speculating now until we have enough collective information? Kthxbye. P.S. Also, this really does highlight how ‘strings’ is not the best tool for reversing. Wednesday, September 22. 2010Moving Targets: Location-Based Threats and Mitigations
This year at ToorCon 12 in San Diego, California I will give a presentation entitled "Moving Targets.”
Location-based services are built into every major mobile platform, almost every social networking site, and more and more consumer electronics every day. These services, that record and sometimes share their users’ geographical location in real or near-real time, have been deployed by developers and embraced by users with little consideration of the threat posed by this data. An attacker who possesses the user’s location can abuse it to leverage both technical and social engineering attacks on that user. From cellular networks to web apps such as Foursquare, each layer presents a unique data set that is ripe for different attacks. In many cases, however, these threats can be mitigated with mindful application of recommendations for both location service development and usage. If you want to learn how your moving targets can avoid becoming someone else’s sitting ducks, then come to Toorcon 2010. Please contact me directly at dkp at leviathansecurity if you have any questions or comments. **Update: You can find the slides for this presentation here
Posted by David Kane-Parry
at
14:10
More Bugs In More Places: Secure Development On Mobile Platforms
At the Blackhat Briefings USA 2010 in Las Vegas I gave a presentation entitled "More Bugs In More Places" which was about secure development on mobile platforms.
Nothing succeeds like success, and with the attention garnered by Apple’s App Store, many companies are either looking to port existing applications to or develop exclusive applications for the top mobile platforms: Blackberry, iPhone, Windows Mobile, and Android. Each of these platforms provides the would-be developer with a SDK to do the heavy-lifting of coding, but can they be trusted to carry that weight? Just as some languages make it easier or harder to develop secure applications, so it is with SDKs. One SDK may provide robust cryptographic functions, another may restrict hardware access, and yet another may enforce strict memory management. Below are slides to the talk given at Black Hat 2010; they compare the top four SDKs in terms of the security features they provide and lack. They will help new mobile developers decide which is the safest and most dangerous for their applications. Please contact me directly at dkp at leviathansecurity if you have any questions or comments. You can view the presentation slides here
Posted by David Kane-Parry
at
13:39
Tuesday, September 14. 2010InfoSec Roundup – September 14, 2010
The last few weeks have been quite busy for researchers and IT administrators with a bevy of issues to follow and understand. While we probably cannot do all of them justice in this post, we will attempt to summarize each here for you.
We might as well start with the topic that will get the most attention today, it’s Microsoft Patch Tuesday; as most of you know this happens once a month. Microsoft released nine bulletins that address a total of eleven vulnerabilities that are assigned CVE (http://cve.mitre.org) numbers. Probably the most notable vulnerability is addressed in MS10-061; a Print Spooler Service (CVE-2010-2729) vulnerability is out in the wild being leveraged by the Stuxnet worm which is reportedly using multiple zero day vulnerabilities. There is a great blog post by the folks over at Microsoft Security & Defense outlining the risk of each of the updates. Give it a read and plan your system patching activities accordingly http://blogs.technet.com/b/srd/archive/2010/09/14/assessing-the-risk-of-the-september-security-updates.aspx. While we are on the topic of vulnerabilities that were patched today we understand how easy it is for other issues to get buried underneath the Microsoft patch event. One such issue that many should be paying attention to is fixed in the release of Samba 3.5.5 which fixes a buffer overrun vulnerability (CVE-2010-3069). Remember Samba is not just on your favorite Linux distribution, but this will also affect Apple Macintosh OS X systems, certain network attached storage systems, and other embedded devices. While at this time we have no reports of this issue being used in the wild, it is probably only a matter of time, as even with the public release of Samba many of the alternate devices may remain vulnerable for quite some time. Another, at this time unfixed issue which deserves our attention is being referred to as “Padding Oracle Attack.” While I know some of you will automatically think of older papers on this topic from 2002 (http://www.iacr.org/archive/eurocrypt2002/23320530/cbc02_e02d.pdf) and then a presentation earlier this year at Blackhat Europe demonstrating a tool known as POET (http://netifera.com/research/poet/PaddingOracleBHEU10.pdf), coming up this week the brain behind POET is presenting additional research into this flaw that shows how ASP.NET web applications are vulnerable - http://ekoparty.org/juliano-rizzo-2010.php. The impact of this flaw can range from basic information disclosure to full system compromise, so we can expect this one to make a lot of noise and have an impact for quite some time to come. As more details and analysis on all of the above issues are available we will update this post. In closing, we want to congratulate David Kane-Parry who will be presenting at this year’s Toorcon (http://www.toorcon.org) in San Diego; he will speak about Location Based Threats and Mitigations. We will have Dave post a detailed abstract of his talk here on our blog. Cheers, Leviathan Security Group Welcome to Our Blog
Welcome to Leviathan Security Group’s blog. If you need or want to know more about the minds behind Leviathan Security you can read about us here. Our goal with this Internet space is to share our opinions and ideas on Information Security topics. We will periodically write about high to low level technical topics and everything between and maybe some things outside. Posts, like this first one, will sometimes be limited to as few words as necessary, while you can expect us to go much deeper on other topics.
You can also find Leviathan Security Group on Twitter - http://twitter.com/LeviathanSec. Be sure to watch for many of our experts speaking at a security conference near you. Thanks to everyone who supported us over the years. Hopefully this spot will inform and generate discussions. Cheers, Leviathan Security Group
Posted by Steve Manzuik
at
17:23
(Page 1 of 1, totaling 10 entries)
|
Calendar
QuicksearchAuthorsTwitter Feed
Syndicate This Blog |
|||||||||||||||||||||||||||||||||||||||||||||||||