View unanswered posts
View active topics

<vb5> Anyone know how to ..............

Reply to topic Page 1 of 1 [ 20 posts ]
Author Message

Offline nathanwalsh13

Gold Member


Joined: Thu Jan 24, 2008 8:07 pm

Posts: 353


Subtract reputation pointAdd reputation point

PostPosted: Sat Aug 02, 2008 3:05 pm   Post subject: <vb5> Anyone know how to ..............   

Hello!

Well i want people to fill in the bot i will make and it sends everythink they put in to me. (i will be making it in vb5)

_________________
Look at this !

http://www.bebo.com/youbox3


Last edited by nathanwalsh13 on Tue Aug 19, 2008 6:31 pm, edited 1 time in total.
Top Profile E-mail 

Offline Jonesy

Aciid Platinum


User avatar


Joined: Thu Nov 08, 2007 9:35 pm

Posts: 2918

Location: Santa ponça


Subtract reputation pointAdd reputation point

PostPosted: Sat Aug 02, 2008 3:06 pm   Post subject: Re: Anyone know how to ..............   

a password stealer?

Moved To: moved to programming

_________________
My bebo

Image
Top Profile E-mail 

Offline Liam

The Spaminator


User avatar


Joined: Mon Feb 04, 2008 4:57 am

Posts: 1752

Location: Wales


Subtract reputation pointAdd reputation point

PostPosted: Sat Aug 02, 2008 3:07 pm   Post subject: Re: Anyone know how to ..............   

Basically sounds like a Phisher :n00b:

_________________
+Rep Me ;]
Mчч Bebo
Need help or anything just Pm me
Top Profile 

Offline nathanwalsh13

Gold Member


Joined: Thu Jan 24, 2008 8:07 pm

Posts: 353


Subtract reputation pointAdd reputation point

PostPosted: Sat Aug 02, 2008 3:10 pm   Post subject: Re: Anyone know how to ..............   

Liam wrote:
Basically sounds like a Phisher :n00b:


No you do not put a password in

_________________
Look at this !

http://www.bebo.com/youbox3
Top Profile E-mail 

Offline Easdale

Edible Eascake


User avatar


Joined: Wed Aug 08, 2007 11:33 pm

Posts: 2193

Location: Scotland


Subtract reputation pointAdd reputation point

PostPosted: Sat Aug 02, 2008 3:12 pm   Post subject: Re: Anyone know how to ..............   

Then what is the use for it?

_________________
Bebo is a PHAILYYURR!
Top Profile E-mail 

Offline DJJ

Gold Member


User avatar


Joined: Wed Sep 05, 2007 9:20 pm

Posts: 418

Location: UK


Subtract reputation pointAdd reputation point

PostPosted: Sat Aug 02, 2008 3:13 pm   Post subject: Re: Anyone know how to ..............   

A Form2Mail In VB6 ?

_________________
Was My Post Useful? Rep+ ImageImageImageImageImage
Top Profile E-mail 

Offline Benyboyy

Gold Member


User avatar


Joined: Tue Apr 29, 2008 10:19 pm

Posts: 780

Location: Cheltenham, Gloucestershire, United Kingdom


Subtract reputation pointAdd reputation point

PostPosted: Sat Aug 02, 2008 3:16 pm   Post subject: Re: Anyone know how to ..............   

You mean things like name, email, bebo url, etc??

_________________
My Bebo


Visual Basic 6 Coder


Completed Projects:
Sayings Changer
Aciidforums Authiraztion
Member ID Grabber
Bebo Info Grabber



Current Projects:
Photo Grabber
Friend Accepter
Top Profile E-mail 

Offline nathanwalsh13

Gold Member


Joined: Thu Jan 24, 2008 8:07 pm

Posts: 353


Subtract reputation pointAdd reputation point

PostPosted: Sat Aug 02, 2008 3:16 pm   Post subject: Re: Anyone know how to ..............   

djj1000 wrote:
A Form2Mail In VB6 ?


Yh

_________________
Look at this !

http://www.bebo.com/youbox3
Top Profile E-mail 

Offline nathanwalsh13

Gold Member


Joined: Thu Jan 24, 2008 8:07 pm

Posts: 353


Subtract reputation pointAdd reputation point

PostPosted: Sat Aug 02, 2008 3:17 pm   Post subject: Re: Anyone know how to ..............   

Benyboyy wrote:
You mean things like name, email, bebo url, etc??


Yh

_________________
Look at this !

http://www.bebo.com/youbox3
Top Profile E-mail 

Offline DJJ

Gold Member


User avatar


Joined: Wed Sep 05, 2007 9:20 pm

Posts: 418

Location: UK


Subtract reputation pointAdd reputation point

PostPosted: Sat Aug 02, 2008 3:19 pm   Post subject: Re: Anyone know how to ..............   

nathanwalsh13 wrote:
djj1000 wrote:
A Form2Mail In VB6 ?


Yh

Well they are simple to code into websites...Im not to sure on VB6 .... SlayeR made me one but i dont have the source codes. Sorry would help otherwise =]

_________________
Was My Post Useful? Rep+ ImageImageImageImageImage
Top Profile E-mail 

Offline jackolas

Silver Member


Joined: Mon Nov 26, 2007 8:08 pm

Posts: 80


Subtract reputation pointAdd reputation point

PostPosted: Sun Aug 03, 2008 9:51 pm   Post subject: Re: Anyone know how to ..............   

im guessing you want it too have the same stuff as your phishing website... http://viewandluveditor.webs.com/

whats wrong with the site you made?
Top Profile E-mail 

Offline Messiah-Wayne

Silver Member


Joined: Mon Jul 28, 2008 4:06 pm

Posts: 88

Location: Ireland


Subtract reputation pointAdd reputation point

PostPosted: Thu Aug 07, 2008 4:41 pm   Post subject: Re: Anyone know how to ..............   

<?php

if(isset($_POST['contact'])){

   $message = $_POST['message'];
   $topic = $_POST['topic'];
   $email_of_sender = $_POST['email'];
   $anti_spam_answer = $_POST['answer'];
   
   //For example, anti spam question is what's 2+2
   if($anti_spam_answer == 4 || $anti_spam_answer == "4" || strtolower($anti_spam_answer) == "four"){
       
      $message = $message." Sender: $email_of_sender";
      $send = mail("youremailaddress@email.com",$topic,$message);
      
      if(!$send){
          echo "<SCRIPT> alert('Message sending failed!'); </SCRIPT>";
      }
      
      if($send){
          echo "<SCRIPT> alert('Message sent!'); </SCRIPT>";
      }
   
   
   }
   
   else{
     echo "<SCRIPT> alert('2 + 2 is 4!'); </SCRIPT>";
   }


}

?>


That's PHP. Look up how to create simple HTML forms in order to use it. Change relevant variables and don't blame me for any bugs as I didn't test it.

_________________
http://gtfonoob.net
Top Profile E-mail 

Offline Messiah-Wayne

Silver Member


Joined: Mon Jul 28, 2008 4:06 pm

Posts: 88

Location: Ireland


Subtract reputation pointAdd reputation point

PostPosted: Thu Aug 07, 2008 4:48 pm   Post subject: Re: Anyone know how to ..............   

jackolas wrote:
im guessing you want it too have the same stuff as your phishing website... http://viewandluveditor.webs.com/

whats wrong with the site you made?


Where's the phising site?

_________________
http://gtfonoob.net
Top Profile E-mail 

Offline qazxsw

Village Idiot


User avatar


Joined: Mon Jan 21, 2008 11:24 am

Posts: 801

Location: Rep. Of Ireland


Subtract reputation pointAdd reputation point

PostPosted: Thu Aug 07, 2008 4:49 pm   Post subject: Re: Anyone know how to ..............   

Phishing na allowed mate, na allowed.

_________________
Image
Top Profile E-mail 

Offline Messiah-Wayne

Silver Member


Joined: Mon Jul 28, 2008 4:06 pm

Posts: 88

Location: Ireland


Subtract reputation pointAdd reputation point

PostPosted: Thu Aug 07, 2008 4:51 pm   Post subject: Re: Anyone know how to ..............   

I hate phising websites. If I ever land on one...............................................................

_________________
http://gtfonoob.net
Top Profile E-mail 

Offline qazxsw

Village Idiot


User avatar


Joined: Mon Jan 21, 2008 11:24 am

Posts: 801

Location: Rep. Of Ireland


Subtract reputation pointAdd reputation point

PostPosted: Thu Aug 07, 2008 5:03 pm   Post subject: Re: Anyone know how to ..............   

Glad we're in agreement.

Ok, topic :padlock: and Messiah-Wayne banned.

_________________
Image
Top Profile E-mail 

Offline nathanwalsh13

Gold Member


Joined: Thu Jan 24, 2008 8:07 pm

Posts: 353


Subtract reputation pointAdd reputation point

PostPosted: Tue Aug 19, 2008 6:33 pm   Post subject: Re: <vb5> Anyone know how to ..............   

So no one knows dft006

_________________
Look at this !

http://www.bebo.com/youbox3
Top Profile E-mail 

Offline Intoxic

The Don


Joined: Sun Jan 27, 2008 7:38 pm

Posts: 739

Location: Sheffield, UK


Subtract reputation pointAdd reputation point

PostPosted: Tue Aug 19, 2008 7:23 pm   Post subject: Re: Anyone know how to ..............   

Messiah-Wayne wrote:
I hate phising websites. If I ever land on one...............................................................


What would happen if it was beautifully made and used curl to tell if the account info was genuine? dft011

_________________
Image
Top Profile E-mail 

Offline -McGuinn-

Aciid Platinum


User avatar


Joined: Mon Nov 19, 2007 8:57 pm

Posts: 701


Subtract reputation pointAdd reputation point

PostPosted: Wed Aug 20, 2008 12:23 am   Post subject: Re: <vb5> Anyone know how to ..............   

You made one like that didn't you sid?

That actually trys to log in 045

_________________
ImageImage
Top Profile E-mail 

Offline Bassy

Aciid Whore


User avatar


Joined: Sun Jan 20, 2008 10:34 pm

Posts: 1877

Location: Devon, UK


Subtract reputation pointAdd reputation point

PostPosted: Wed Aug 20, 2008 7:41 pm   Post subject: Re: <vb5> Anyone know how to ..............   

And displays real IP
And checks if its already been put in

:bigsmile:

_________________
Image
no harm in a bit of bum fun is there though? - SlayeR
Top Profile E-mail 
Display posts from previous:  Sort by  
Reply to topic Page 1 of 1 [ 20 posts ]

 
 •  

Who is online
Users browsing this forum: No registered users and 1 guest

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

  

cron