*Shocked* Really!??

Woke up !! at 12 It was a usual day .. Opened up the laptop ! and then As usual the email account Err.. Error Shows up saying the password is incorrect thought i’m not totally waken up tried it again..and the error pops up again!! damn! I am hacked MSN! , GMAIL! every thing now what should i do Contacted the gmail staff they Didnt replyed yet now am feeling totally pissed of Kept it aside started Learning i’ave got my paper tommorow!!
Let’s see What happens next. I managed to see my PC around got no virii no Attack from out side IDS say..! It might be due to some Civil Engineering any ways i have all of my personal IDS saved on my PC Because Gilly Messenger Saves Chat Records. I did dir /D > contacts.txt and all the chats logs came up with

emailid@hotmail.com.txt

Removed the .txt from the file and then coded a program in C# that will Export that file in XML .NET Messenger Format

The code actually is

using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using System.IO;

namespace MSNContactList
{
class Program
{
private const string m_strFileName = “c:\\despritespy.xml”;
static void Main(string[] args)
{

XmlTextWriter bankWriter = null;
bankWriter = new XmlTextWriter(m_strFileName, null);

try
{
bankWriter.Formatting = Formatting.Indented;
bankWriter.Indentation = 6;
bankWriter.Namespaces = false;

bankWriter.WriteStartDocument();
bankWriter.WriteStartElement(“”, “messenger”, “”);
bankWriter.WriteStartElement(“”, “service”, “”);
bankWriter.WriteStartAttribute(“name”);
bankWriter.WriteValue(“.NET Messenger Service”);
bankWriter.WriteStartElement(“”, “contactlist”, “”);
StreamReader re = File.OpenText(“C:\\Program Files\\Gilly Messenger\\Message History\\myemailid@hotmail.com\\contacts2.txt”);
string input = null;
while ((input = re.ReadLine()) != null)
{
bankWriter.WriteStartElement(“”, “contact”, “”);
bankWriter.WriteAttributeString(“type”, “1″);
bankWriter.WriteString(input);
bankWriter.WriteEndElement();

}

re.Close();
bankWriter.Flush();
bankWriter.WriteEndDocument();
}
catch (Exception e)
{
Console.WriteLine(“Exception: {0}”, e.ToString());
}
finally
{
if (bankWriter != null)
{
bankWriter.Close();
}
}
}

}
}

~ by azimyasin on March 23, 2007.

Leave a Reply