Author Topic: New Text Learning Script!  (Read 13422 times)

Medeksza

  • Administrator
  • Hero Member
  • *****
  • Posts: 1469
    • View Profile
    • http://www.zabaware.com
New Text Learning Script!
« Reply #15 on: June 07, 2006, 05:21:22 pm »
quote:
Originally posted by onthecuttingedge2005
My deductive reasoning tells me User:Zabawear and User:Someotheruser are the same.



The IP log on the Zabaware server supports your conclusion.
Robert Medeksza

Someotheruser

  • Newbie
  • *
  • Posts: 5
    • View Profile
New Text Learning Script!
« Reply #16 on: June 08, 2006, 05:15:34 am »
If Phisher > fish then
     Get fish.email
elseif fish > Phisher then
     Unload Phisher
end if

Just having a little fun.[;)]  And also trying to prove a point.

And as I said before, you will not receive spam as a result of sending your email address.
Do not give out your email address unless you know and trust the person you're giving it to!
 

bronstarr

  • Newbie
  • *
  • Posts: 39
    • View Profile
    • http://asecretary.com/essendon.htm
New Text Learning Script!
« Reply #17 on: June 08, 2006, 12:32:26 pm »
I sent you my email address as well.  What you are doing, if this is true is illegal and taking advantage of the honest, kind, helpfull people who are interested in Hal and his development. Why dont you post your email address, so we can as you have said unload phisher. I am thinking that your written program for Hal was untrue as well. We all know Hal 6 learns better by typing sentence's. Its easy enough to copy information from wilkopedia and load this into hal.  He can handel paragraphs of information and seems to understand quite well and quickley with this process.  So I am assuming your program is now obsolete.[:(!][:(!]
Bronwyn Gwyther
BMG Secretarial Serivces
VICTORIA AUSTRALIA
bronwyn@bmgsecretarial.com

markofkane

  • Hero Member
  • *****
  • Posts: 5275
  • Crazy Man
    • View Profile
    • http://www.soundspectrum.com
New Text Learning Script!
« Reply #18 on: June 08, 2006, 03:09:05 pm »
I hope this is a lesson to all. Don't give your emails to someone new.

Good chance they are a phisher, hacker, or spammer.

If the script was legit, he could have uploaded it, and provided a download link. (Also be careful about downloading files, they may contain a virus or other malware)

Rapidshare.de is good for uploading stuff to, if you don't have personal webspace.

Mark: I'll think about it
Laura: Don't think about it too long or I'll throw you out on your ***king a**.
"Political correctness is censorship"

danbaltzell

  • Full Member
  • ***
  • Posts: 212
    • View Profile
    • http://geocities.com/danbaltzell/ai
New Text Learning Script!
« Reply #19 on: June 08, 2006, 04:44:25 pm »
ilyke2flyphish[:I]

 

Someotheruser

  • Newbie
  • *
  • Posts: 5
    • View Profile
New Text Learning Script!
« Reply #20 on: June 08, 2006, 05:37:12 pm »
Good advice, markofkane! To bronstarr; I agree. It is illegal to send spam. But, the point is that you have to watch out who you send your email to. Many people don't consider legallity when using the internet. If you like, here's the email address associated with this user 'Someotheruser':
  whatthehell156@hotmail.com

This post is an example of something you should definitely NOT do!
 

markofkane

  • Hero Member
  • *****
  • Posts: 5275
  • Crazy Man
    • View Profile
    • http://www.soundspectrum.com
New Text Learning Script!
« Reply #21 on: June 08, 2006, 07:14:11 pm »
I can post my email addy too, but I don't want to clog up earthlink's servers with spam I'll never see.

I only get emails from those in my address book.

here's one you can spam:

msil217@aol.com
Mark: I'll think about it
Laura: Don't think about it too long or I'll throw you out on your ***king a**.
"Political correctness is censorship"

onthecuttingedge2005

  • Guest
New Text Learning Script!
« Reply #22 on: June 08, 2006, 07:33:12 pm »
quote:
Originally posted by Someotheruser

Good advice, markofkane! To bronstarr; I agree. It is illegal to send spam. But, the point is that you have to watch out who you send your email to. Many people don't consider legallity when using the internet. If you like, here's the email address associated with this user 'Someotheruser':
  whatthehell156@hotmail.com

This post is an example of something you should definitely NOT do!



Hi Someotheruser.

I am working on the very thing you were describing in your first post
and I am almost finished.

I am also working on a script just for you since you enjoy being with us all here, It's nothing serious but it will be nothing more than an example of what a true Phisher can do on an automated level, It won't harm your Computer in the least but it will show you what is possible
when you have the knowledge to do what it can do, The Program I can design will when activated send me an e-mail directly from your e-mail system telling me exactly who you really are, You can choose to run it or not, If you can trust me not to harm your system.

I will post the script in this post when I have time.
It will be a custom Vbscript function built entirely from scratch.

Strictly for learning and fun.
Jerry[8D]

Someotheruser

  • Newbie
  • *
  • Posts: 5
    • View Profile
New Text Learning Script!
« Reply #23 on: June 08, 2006, 09:34:20 pm »
onthecuttingedge2005:  I thank you for the script. Although, if your custom vbscript uses the Windows MAPI functionality, don't bother. My home network is setup with a mail server, as well as some security features, which will give you incorrect information. This is to prevent spam (lol), and other problems.
Now, I'm sorry if I got everyone's hopes up about the script. So I thought I should at least contribute a little something. Here is some code that you can use to change your desktop background.

Private Sub ChangeDesktop(ByVal imageDir As String)
Dim objFileSys As New FileSystemObject
If objFileSys.FileExists(imageDir) Then
If LCase(Mid(imageDir, Len(imageDir) - 2)) <> "bmp" Then
Call SavePicture(LoadPicture(imageDir), App.Path & "\background.bmp")
SystemParametersInfo 20, 0, App.Path & "\background.bmp", &H1 Or &H2
Else
SystemParametersInfo 20, 0, imageDir, &H1 Or &H2
End If
End If
Set objFileSys = Nothing
End Sub

The variable 'imageDir' is the absolute path to the picture you want to use for the background. You also need to declare SystemParametersInfo. Here is the code for that;

Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal lpvParam As String, ByVal fuWinIni As Long) As Long
 

onthecuttingedge2005

  • Guest
New Text Learning Script!
« Reply #24 on: June 08, 2006, 11:23:36 pm »
quote:
Originally posted by Someotheruser

onthecuttingedge2005:  I thank you for the script. Although, if your custom vbscript uses the Windows MAPI functionality, don't bother. My home network is setup with a mail server, as well as some security features, which will give you incorrect information. This is to prevent spam (lol), and other problems.
Now, I'm sorry if I got everyone's hopes up about the script. So I thought I should at least contribute a little something. Here is some code that you can use to change your desktop background.

Private Sub ChangeDesktop(ByVal imageDir As String)
Dim objFileSys As New FileSystemObject
If objFileSys.FileExists(imageDir) Then
If LCase(Mid(imageDir, Len(imageDir) - 2)) <> "bmp" Then
Call SavePicture(LoadPicture(imageDir), App.Path & "\background.bmp")
SystemParametersInfo 20, 0, App.Path & "\background.bmp", &H1 Or &H2
Else
SystemParametersInfo 20, 0, imageDir, &H1 Or &H2
End If
End If
Set objFileSys = Nothing
End Sub

The variable 'imageDir' is the absolute path to the picture you want to use for the background. You also need to declare SystemParametersInfo. Here is the code for that;

Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal lpvParam As String, ByVal fuWinIni As Long) As Long



Hi Someotheruser.

That is awesome, I am sure everybody would love to enjoy your coding techniques and creative ideas.

Very nice piece of work, I love it.

Back to the topic of an e-mail script, The function I would use doesn't need Windows MAPI functionality, The method I would use is almost entirely vbscript Keystroke macros, I know my way around most e-mail systems and all versions of windows and security systems because I have been a computer specialist for 23 years now, using macros is a cinch over most standard functions.

There are also ways to automatically turn off all anti-virus detections to prevent macros from being seen but I won't get into that classified area and won't post such material because of morals and the protection of all my friends and all the good people.

I could build a list of e-mail macros that would run down a list of e-mail clients, it would take some time doing this but if you wish me to show you quickly how easy it is then if you could be so kind enough to let me know which e-mail system you use to cut my coding time then it would be much appreciated since I would have to build the script from scratch.

All in fun and learning.
Jerry[8D]
« Last Edit: June 08, 2006, 11:26:43 pm by onthecuttingedge2005 »

onthecuttingedge2005

  • Guest
New Text Learning Script!
« Reply #25 on: June 09, 2006, 01:11:29 am »
Hi Someotheruser.

Once I am on your computer I will have complete control over your entire system, whether Fire Wall or Anti-Virus, If you wish me to go that far, But no matter what, I will under moral obligation not harm your system in any way.

Do you trust me that much?
I do uphold my moral standards completely.
If not then maybe for another day.
Jerry[8D]
« Last Edit: June 09, 2006, 01:16:53 am by onthecuttingedge2005 »

danbaltzell

  • Full Member
  • ***
  • Posts: 212
    • View Profile
    • http://geocities.com/danbaltzell/ai
New Text Learning Script!
« Reply #26 on: June 09, 2006, 12:47:17 pm »
Can you get through my residential gateway?  I guess if you parked out front since I didn't put in a WEP.[:(] or how about a hard firewall¿
« Last Edit: June 09, 2006, 12:49:07 pm by danbaltzell »
 

Art

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 3856
    • View Profile
New Text Learning Script!
« Reply #27 on: June 09, 2006, 07:27:48 pm »
AI, Scripting and computer security all in one.

Where else could you go to have this much fun
than right here at Zabaware?![8D]
In the world of AI it's the thought that counts!

- Art -

onthecuttingedge2005

  • Guest
New Text Learning Script!
« Reply #28 on: June 09, 2006, 08:18:37 pm »
quote:
Originally posted by danbaltzell

Can you get through my residential gateway?  I guess if you parked out front since I didn't put in a WEP.[:(] or how about a hard firewall¿



Hi danbaltzell.

Actually I would just park out front and press the Red button on the comm and ask if danbaltzell was home, This is Jerry coming to visit, lol.

How Hard are the Bricks?

Jerry[8D]

onthecuttingedge2005

  • Guest
New Text Learning Script!
« Reply #29 on: June 10, 2006, 12:47:24 am »
Oh my God, Oh my God, I am only 37 post behind Art.
This is a major advancement, Its got to be.

I love you all.
Jerry[8D]