PDA

View Full Version : O.K. THIS is NOT spam, this is ABOUT SPAM, IE KEHVAN


Jay_Esbe
11-07-2003, 11:43 AM
Just to make sure you see this and don't delete it as spam,
and for the benifet of everyone on this new board who now
seem confused, I want you to read the following cut and paste
of Kehvan's posts from the old forum, that you have NO DOUBT
who has been disrupting this one.

He already has registered HERE under multiple names, INCLUDING "JayEsbe" (mine without the space), SPAMMED
under my name, COMPLAINED ABOUT ME, and got me thrown
off until Robb and I straightened it out. Here's everything you
need to know, in his own words:
__________________________________________________ _______
FROM THE OLD FORUM
__________________________________________________ _______



http://www.ariannaonline.com/interact/phorum/read.php?f=4&i=116526&t=116517

Re: Ok, I'll stop for now, but if you Liberal a$$holes...
Author: Kehvan (---.dsl.rcsntx.swbell.net)
Date: 08-12-03 05:27

I guess you want more then.

Maybe I ought to set my script to run once a minute then just let it go. That would shut down this den of Liberal liars and commie cheats real fast.


Dude, please stop slamming the board.
Author: WOW (---.ia2.marketscore.com)
Date: 08-12-03 05:10

You're going to crash this rickety forum.


Reply To This Message


Re: Dude, please stop slamming the board.
Author: Kehvan (---.dsl.rcsntx.swbell.net)
Date: 08-12-03 05:12

No man...if these a$$holes think I've been posting here as you or others, I'm going to let these fuckheads know when I'm am now here.


http://www.ariannaonline.com/interact/phorum/read.php?f=4&i=116478&t=116464

Want some more fuckfaces?
Author: Kehvan (---.dsl.rcsntx.swbell.net)
Date: 08-12-03 05:00

I have tons of scripts.


Reply To This Message


Re: Want some more fuckfaces?
Author: WOW (---.ia2.marketscore.com)
Date: 08-12-03 05:02

No, please stop.

__________________________________________________ ________________________
http://www.ariannaonline.com/interact/phorum/read.php?f=4&i=116454&t=116454

If you dumba$$es wish to claim other posters are me...
Author: Kehvan (---.dsl.rcsntx.swbell.net)
Date: 08-12-03 04:59

Then I'll just have to remind you MOTHERFUCKING SCUMBAGS just how wrong you are.

http://www.ariannaonline.com/interact/phorum/read.php?f=4&i=75430&t=75338

Re: Kalling Kehvan
Author: Kehvan (---.dsl.snfc21.pacbell.net)
Date: 05-27-03 10:52

Damn it Bruce, I told you to use a c-dom, didn't I? Really, did you think you gave the clap to me? Is that what you do with your friends? I keep a diary of all my partners and count the months... and the days. I feel good like a clam... no clap.

I moved from Texas to California, few months ago. A large part of the city... where I live, belongs to us 'happy' people. We even fly our rainbow flags over here instead of the California flag.

Hey, soon I will be spamming again. I'm honing the program so that I can also spam other lib websites as it's so much fun.

See you at my website, Bruce. Kehvan

http://www.ariannaonline.com/interact/phorum/read.php?f=4&i=50384&t=50341

Re: Dear moderator...
Author: Kehvan (---.dsl.rcsntx.swbell.net)
Date: 03-30-03 09:53

If you look at the host for all the "Kehvan" post starting right after the DoobieNick post "Wounded Marine: "We were surprised"" all the way down to right before the "Kehvan" post "Lessons in VBscripting", and you'll see that the host is not mine.

With that said, my protest will continue. I'll change my nick name, but it's not going to stop until these anti-American scum cease their protests in the streets.

Sadly there are no moderators on this forum, and one positve that could come of this is that a moderator would begin to moderate the PATHETIC and REPETITIVE LIES and ACCUSATIONS from these SCUM who don't deserve the right to call themselves American.

http://www.ariannaonline.com/interact/phorum/read.php?f=4&i=50267&t=50267

Lessons in VBscripting
Author: Kehvan (---.dsl.rcsntx.swbell.net)
Date: 03-30-03 07:49

The most widely used scripting language in the world, Visual Basic Scripting language, is a powerful tool for any "would be" computer professional. VBscripting is to Windows what a Perl is to Unix. Both are powerful means in which to automate a variety of tasks.

The following code is what I use to post my cyber anti-"anti-Bush protesters" protest :) on ariannaonline.com
***

'This Function will find and replace any pattern with anothe pattern
Function stripHTML(strHTML, strPAT, strNEW)
'Strips the HTML tags from strHTML
Dim objRegExp, strOutput
Set objRegExp = New Regexp

objRegExp.IgnoreCase = True
objRegExp.Global = True
objRegExp.Pattern = strPAT

'Replace all HTML tag matches with the empty string
strOutput = objRegExp.Replace(strHTML, strNEW)

stripHTML = strOutput 'Return the value of strOutput

Set objRegExp = Nothing
End Function

'This Function will find a pattern and delete the rest
Function findHTML(strHTML, strPAT)
'Strips the HTML tags from strHTML
Dim objRegExp, strOutput
Set objRegExp = New Regexp

objRegExp.IgnoreCase = True
objRegExp.Global = True
objRegExp.Pattern = strPAT

'Extract HTML tag match
Set strOutput = objRegExp.Execute(strHTML)

For Each Match in strOutput
tempHTML = tempHTML & Match.value & "<BR>" & VBCRLF
Next

findHTML = tempHTML
Set objRegExp = Nothing
End Function

'This Function retrieves a webpage from the 'subject' site
'and then find and strips HTML -- customized to work with BBC only
Function GetNews(subject)
Set obj = WScript.CreateObject("InetCtls.Inet.1")
obj.RequestTimeOut=100

sRequest = trim(subject)
sText = obj.OpenURL (CStr(sRequest))
vText = obj.OpenURL (CStr(sRequest))

'Find and Strip HTML
sText = findHTML(sText, "<a name=""startcontent(.|\n)+?<hr>")
sText = stripHTML(sText, "<hr>", "")
sText = stripHTML(sText, "<script(.|\n)+?script>", "")
sText = stripHTML(sText, "<form(.|\n)+?form>", "")
sText = stripHTML(sText, "<span(.|\n)+?span>", "")
sText = stripHTML(sText, "<a href=""javascript(.|\n)+?a>", "")
sText = stripHTML(sText, "<div(.|\n)+?>", "")
sText = stripHTML(sText, "<\/div>", "")
sText = stripHTML(sText, "<img(.|\n)+?>", "")
sText = stripHTML(sText, "", "")
sText = stripHTML(sText, "", "")
sText = stripHTML(sText, "<a name=""startcontent""></a>", "")
sText = stripHTML(sText, "[\t]+", "")
sText = stripHTML(sText, "[\r]+", "")
sText = stripHTML(sText, "[\n]+", "")
' sText = stripHTML(sText, "[\s]+", "%20")
sText = stripHTML(sText, "<br>", " -- ")
sText = stripHTML(sText, "<br(.|\n)+?/>", " -- ")
sText = stripHTML(sText, "<br clear=""all"" />", " -- ")
sText = stripHTML(sText, "<(.|\n)+?>", "")

' response.write sURL
GetNews = sText

set obj = nothing
End Function

'This is the URL string that is submitted to ariannaonline.com
URLstr="http://www.ariannaonline.com/interact/phorum/post.php?t=0&a=post&f=4&p=0&author=Kehvan&email=&s ubject=If%20the%20anti-American%20scum%20think%20Bush%20is%20a%20NAZI%20t hen%20you%20can't%20wait%20another%20day.&body=If+ you+think+Bush+is+some+type+of+Hitler%2C+it+is+you +duty+as+an+Americans+to+rise+up.+Elections+are+ir relevant+the+point+an+American+president+is+actual ly+a+dictator.%0D%0A%0D%0AThe+point+is%2C+I+know+y ou+people+don%27t+believe+your+own+pathetic+rhetor ic%2C+because+you%27re+not+doing+what+would+be+nec essary+if+it+were+true+--+if+Bush+really+were+some+Hitler+or+something+of+t hat+nature+you+wouldn%27t+even+have+the+capacity+t o+say+it+in+public+just+as+I%27m+doing+now.%0D%0A% 0D%0AThe+lies+and+accusations+are+purely+partisan+ bullsh%21t+and+it%27s+disgusting%2C+especially+aft er+Sept.+11th.%0D%0A%0D%0AAnd+just+to+get+back+to+ Sept.+11th%2C+people+from+all+corners+of+American+ society+finally+saw+what+was+predicted+would+event ually+occur.+Even+though+there+was+NEVER+any+hard+ evidence+that+it+would+occur%2C+analyst+with+the+C IA+and+commissions+of+experts+in+the+field+all+pre dicted+that+something+like+Sept.+11th+would+occur. ..and+it+did.%0D%0A%0D%0AExperts+also+predict+that +terrorist+will+attempt+to+outdo+themselves+with+e ven+larger+scale+attacks+--+most+likely+chemical+or+biological.+It+is+also+pr edicted+that+Iraq+is+the+most+likely+source+of+the +chemical+or+biological+agents+Middle+Eastern+terr orist+would+use.%0D%0A%0D%0AWell%2C+I+for+one+am+s o+glad%2C+for+once%2C+the+American+public+FINALLY+ GETS+IT+and+your+pathetic%2C+dumbassed+and+shortsi ghted+opinion+is+in+the+extreme+minority.%0D%0A%0D %0AAs+well%2C+I%27ll+say+the+same+thing+I+said+to+ Smythe%2C+to+Mac+and+then+to+Mike%2C+...%0D%0A%0D% 0AI+respect+anyone%27s+right+to+disagree%2C+but+th at+doesn%27t+change+the+fact+that+this+is+a+free+c ountry+and+if+socialist+scum+can+%22protest%22+Bus h+by+disrupting+American+cities+and+citizens%2C+th en+I+say+turn+about+is+fair+play.%0D%0A%0D%0AI%27m +not+preventing+anyone%27s+ability+to+post%2C+nor+ am+I+denying+anyone%27s+ability+to+speak+their+min d.%0D%0A%0D%0AThese+protesters+care+not+one+bit+ab out+who%27s+life+they+disrupt%2C+even+if+they+disr upt+the+lives+of+those+people+who+may+philosophica lly+agree+with+their+position.+They+don%27t+even+c are+if+they+interfere+with+a+cities+ability+to+res pond+to+crime+or+catastrophe.+They+think+it%27s+th eir+right.%0D%0A%0D%0AAs+I+said%2C+turn+about+IS+f air+play.%0D%0A%0D%0AAt+least+I+limit+my+%22protes ting%22+to+a+venue+where+it+genuinely+does+not+int erfere+with+the+real+world.%0D%0A%0D%0AMy+intent+i s+NOT+to+drive+legitimate+debate+off+the+front+pag e%2C+but+to+protest+what+is+anti-Bush+in+its+intent+and+is+anti-American+in+practice.%0D%0A%0D%0ASome+like+to+clai m+what+I%27m+doing+is+undemocratic%2C+yet+believe+ that+illegally+block+city+streets+is+democratic.+W ell%2C+my+actions+are+no+different+from+the+protes ter+in+the+street+--+I%27m+disrupting+to+make+the+point.%0D%0A%0D%0AI+ wonder+how+long+it+will+take+for+some+to+get+the+p oint%3F%0D%0A%0D%0A" & Now()

Set obj2 = WScript.CreateObject("InetCtls.Inet.1")
obj2.RequestTimeOut=100

sRequest = trim(URLstr)

sText = obj2.OpenURL (CStr(sRequest))

sText = ""
set obj2 = nothing
***

For those with the knowledge, this code is straight forward and requires little editing to make it function for another website, but to describe how that could be accomplished is beyond the scope of this post.

__________________________________________________ __________

ESBE: This guy has got to GO, it's only taken him one day to make a mockery of everyone here by assuming my identity. I won't be back writing anything politically meaningful until he is. I don't like having my efforts erased on account of his ongoing fraud. HE IS ONE SICK PUPPY.

Jay_Esbe
11-07-2003, 11:46 AM
Do you get this:

"With that said, my protest will continue. I'll change my nick name, but it's not going to stop until these anti-American scum cease their protests in the streets.

Sadly there are no moderators on this forum, and one positve that could come of this is that a moderator would begin to moderate the PATHETIC and REPETITIVE LIES and ACCUSATIONS from these SCUM who don't deserve the right to call themselves American.">>>>>>

____________________________________

ESBE:


Is there ANY additional evidence one ought to need to understand this pukes intentions?

PatRiot
11-07-2003, 12:21 PM
Thank you, Jay.

It appears that Kehvan's not content to have ruined the old site, but is intent on strangling this one in its cradle.

If this site is to have a vibrant life, Kehvan must be locked out.

kehvan
11-07-2003, 12:58 PM
Do you get this:

"With that said, my protest will continue. I'll change my nick name, but it's not going to stop until these anti-American scum cease their protests in the streets.

Sadly there are no moderators on this forum, and one positve that could come of this is that a moderator would begin to moderate the PATHETIC and REPETITIVE LIES and ACCUSATIONS from these SCUM who don't deserve the right to call themselves American.">>>>>>

____________________________________

ESBE:


Is there ANY additional evidence one ought to need to understand this pukes intentions?Apparently Jay Esbe, you did not get it.

Let me quote myself...

With that said, my protest will continue. I'll change my nick name, but it's not going to stop until these anti-American scum cease their protests in the streets.

My intention was clear, as long as those supposed "peace protesters" were blocking the streets and intersections, I was going to continue my own little protest.

Are they still blocking the streets?

Biederman
11-07-2003, 02:44 PM
My intention was clear, as long as those supposed "peace protesters" were blocking the streets and intersections, I was going to continue my own little protest.

Are they still blocking the streets?
Standard reich-wingnut revisionism - the word "blocking" does not appear in the original statement:
With that said, my protest will continue. I'll change my nick name, but it's not going to stop until these anti-American scum cease their protests in the streets.
btw - We were in the streets again on October 25 - did you catch us on the news?

GreenDragon
11-07-2003, 05:03 PM
Want a Kleenex(TM) Esbe>?

Whitey
11-09-2003, 09:01 AM
Kehvan made what appears to be an honest mistake, in getting Esbe momentarily deleted. K. acknowledged the mistake & apologized for it. Seems to me the real reason Esbe & alia want him banned, is he's smarter & more articulate than they are. That's not a class thing to do. 8)

Leo
11-13-2003, 06:30 PM
Whitey,
The BA needs your flair for the irrelavent and lying.

Whitey
11-13-2003, 07:24 PM
Whitey,
The BA needs your flair for the irrelavent and lying.

Oh, NO! Leo the Liar called me a lyre! Just for that, I'm tempted not to tell him how to spell "irrelevant." But that would be petty. :lol:

Peter Angelo
12-05-2003, 05:22 AM
The Nazis burned books and killed anyone with a mind and courage. Idiots and murderers will always try to silence truth. They expose their real intentions and will be remembered when things change. Things always change. We have a permanent record on the E-Grapevine that can't be erased. My posts are on this forum and many others all around the world. Forum in Kuala Lampur, Iran, and all over the world have my posts. AARP, C-SPAN, the White House, and everywhere.

My biggest fans are on al-Jazeera.

I snail mail copies everywhere.

Put that in your spam and choke on it, loser.

My "stuff" will live forever in cyberspace and printouts for all of God's children to learn from.

Not all Americans are serial killers, just you.