<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/wepattack/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/wepattack/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sat, 11 Nov 2006 02:49:47 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/wepattack/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>Big-Endian Issues</title><link>https://sourceforge.net/p/wepattack/bugs/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In function verify_crc32(), in file verify.c, the&lt;br /&gt;
variable "crc" suffers from endian issues. This&lt;br /&gt;
prevents wepattack to work sucessfuly on bid-endian&lt;br /&gt;
processors.&lt;/p&gt;
&lt;p&gt;Here is a proposed solution:&lt;/p&gt;
&lt;p&gt;#define SWAP32(x) \
x = ((((x) &amp;amp; 0x00ff0000) &amp;gt;&amp;gt;  8) | \
(((x) &amp;amp; 0x0000ff00) &amp;lt;&amp;lt;  8) | \
(((x) &amp;amp; 0xff000000) &amp;gt;&amp;gt; 24) | \
(((x) &amp;amp; 0x000000ff) &amp;lt;&amp;lt; 24)   )&lt;/p&gt;
&lt;p&gt;if (crc_calc == (ntohl(SWAP32(*crc)))) { &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Alex</dc:creator><pubDate>Sat, 11 Nov 2006 02:49:47 -0000</pubDate><guid>https://sourceforge.neta473a4a8fdd31a24b626199489b277393322a678</guid></item><item><title>Make file problems</title><link>https://sourceforge.net/p/wepattack/bugs/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;There is a line in the make file that ends with log.o\
This causes gcc to fail while looking for log.omode.o&lt;br /&gt;
I removed the \ and moved the following line up and it&lt;br /&gt;
fixed the problem.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sun, 28 May 2006 02:28:20 -0000</pubDate><guid>https://sourceforge.net2b7b06b92f754147bb56159e5fed77e60c75d02f</guid></item></channel></rss>