<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to bugs</title><link href="https://sourceforge.net/p/wepattack/bugs/" rel="alternate"/><link href="https://sourceforge.net/p/wepattack/bugs/feed.atom" rel="self"/><id>https://sourceforge.net/p/wepattack/bugs/</id><updated>2006-11-11T02:49:47Z</updated><subtitle>Recent changes to bugs</subtitle><entry><title>Big-Endian Issues</title><link href="https://sourceforge.net/p/wepattack/bugs/2/" rel="alternate"/><published>2006-11-11T02:49:47Z</published><updated>2006-11-11T02:49:47Z</updated><author><name>Alex</name><uri>https://sourceforge.net/u/latinsud/</uri></author><id>https://sourceforge.neta473a4a8fdd31a24b626199489b277393322a678</id><summary type="html">&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;</summary></entry><entry><title>Make file problems</title><link href="https://sourceforge.net/p/wepattack/bugs/1/" rel="alternate"/><published>2006-05-28T02:28:20Z</published><updated>2006-05-28T02:28:20Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net2b7b06b92f754147bb56159e5fed77e60c75d02f</id><summary type="html">&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;</summary></entry></feed>