PHP Web Host - Quality Web Hosting For All PHP Applications Free RavenNuke(tm) Add Ons
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.
Author Message
CurtisH
Life Cycles Becoming CPU Cycles


Joined: Mar 15, 2004
Posts: 638
Location: Waco, TX

PostPosted: Tue Mar 15, 2005 6:14 pm Reply with quote Back to top

With Santy Worm protection enabled, if I search for an author and then click on any of there posts (link) I am directed to a possible santy worm attack. Disabling the Santy Worm protection the issue goes away.
View user's profile Send private message Yahoo Messenger
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16648
Location: Kansas

PostPosted: Tue Mar 15, 2005 6:21 pm Reply with quote Back to top

If you are using the SantyWorm code in NukeSentinel, I highly recommend that you don't. Use the .htaccess method because it is safer and less conflicts. That code is for those that have no other alternative.
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
CurtisH
Life Cycles Becoming CPU Cycles


Joined: Mar 15, 2004
Posts: 638
Location: Waco, TX

PostPosted: Tue Mar 15, 2005 6:26 pm Reply with quote Back to top

Ok, I will seek out directions on the htaccess method. Thanks Raven. Smile
View user's profile Send private message Yahoo Messenger
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16648
Location: Kansas

PostPosted: Tue Mar 15, 2005 6:29 pm Reply with quote Back to top

Code:
RewriteEngine on
#The next lines check for Email Spammers Robots and redirect them to a fake page
#Check for Santy Worms and redirect them to a fake page
RewriteCond %{HTTP_USER_AGENT} ^LWP                   [NC,OR]
RewriteCond %{REQUEST_URI} ^visualcoders              [NC,OR]
RewriteCond %{QUERY_STRING} rush=([^&]+)              [NC,OR]
RewriteCond %{REQUEST_URI} ^envidiosos                [NC,OR]
RewriteCond %{REQUEST_URI} ^civa                      [NC,OR]
#variant-6 redirect all inner http:// request
RewriteCond %{QUERY_STRING} ^(.*)http://(.*)            [NC,OR]
#variant-7 redirect all inner http request regardless if encoded
RewriteCond %{QUERY_STRING} ^(.*)http%3A%2F%2F(.*)      [NC]
RewriteRule ^.*$ http://127.0.0.1 [R,L]
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
CurtisH
Life Cycles Becoming CPU Cycles


Joined: Mar 15, 2004
Posts: 638
Location: Waco, TX

PostPosted: Tue Mar 15, 2005 6:38 pm Reply with quote Back to top

Do I place that at the beginning of my htaccess?
View user's profile Send private message Yahoo Messenger
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16648
Location: Kansas

PostPosted: Tue Mar 15, 2005 6:44 pm Reply with quote Back to top

Doesn't really matter, but I would have it towards the top
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
CurtisH
Life Cycles Becoming CPU Cycles


Joined: Mar 15, 2004
Posts: 638
Location: Waco, TX

PostPosted: Tue Mar 15, 2005 7:01 pm Reply with quote Back to top

Thanks a bunch. That got me taken care of. Smile
View user's profile Send private message Yahoo Messenger
Dreakon
New Member
New Member


Joined: Aug 17, 2004
Posts: 11

PostPosted: Fri Mar 25, 2005 7:56 am Reply with quote Back to top

I am having the same problem. I added the code to .htaccess, but I dont know how to stop NukeSentinel from using the Santy worm code. Care to explain please?
View user's profile Send private message
CurtisH
Life Cycles Becoming CPU Cycles


Joined: Mar 15, 2004
Posts: 638
Location: Waco, TX

PostPosted: Fri Mar 25, 2005 8:02 am Reply with quote Back to top

Under Sentinel Administration scroll down to the Santy Worm Protection setting. Select OFF

That should fix your issue
View user's profile Send private message Yahoo Messenger
Dreakon
New Member
New Member


Joined: Aug 17, 2004
Posts: 11

PostPosted: Fri Mar 25, 2005 8:03 am Reply with quote Back to top

d***, that was a fast reply, I feel stupid because I looked through the options and saw it. Tried to come back here and edit and it was already answered. Thanks! Smile
View user's profile Send private message
SmackDaddy
Involved
Involved


Joined: Jun 02, 2004
Posts: 268
Location: Englewood, OH

PostPosted: Wed Mar 30, 2005 10:41 am Reply with quote Back to top

Thank you for the info....this helped me out as well....cheers!
View user's profile Send private message Send e-mail Visit poster's website
shmk
Worker
Worker


Joined: Dec 21, 2004
Posts: 116

PostPosted: Wed Apr 20, 2005 2:12 am Reply with quote Back to top

I have to use santy worm protection because haven't the possibility to use .htaccess on my host.

I got the same problem, I have resolved it removing the "highlight" option in the search (in my search highlight field is always void... probably a bug in my theme Confused ):

Code:
Open ./modules/Forums/search.php

Find:

$topic_url = append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . '=' . $searchset[$i]['topic_id'] . "&highlight=$highlight_active");
$post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $searchset[$i]['post_id'] . "&highlight=$highlight_active") . '#' . $searchset[$i]['post_id'];

Substitute with (or comment and add under...):

$topic_url = append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . '=' . $searchset[$i]['topic_id']);
$post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $searchset[$i]['post_id']) . '#' . $searchset[$i]['post_id'];


You now haven't highlight search function, but won't get the error "probably santy worm" Wink
View user's profile Send private message
blith
Client


Joined: Jul 18, 2003
Posts: 975

PostPosted: Tue Oct 10, 2006 8:43 pm Reply with quote Back to top

Raven wrote:
Code:
RewriteEngine on
#The next lines check for Email Spammers Robots and redirect them to a fake page
#Check for Santy Worms and redirect them to a fake page
RewriteCond %{HTTP_USER_AGENT} ^LWP                   [NC,OR]
RewriteCond %{REQUEST_URI} ^visualcoders              [NC,OR]
RewriteCond %{QUERY_STRING} rush=([^&]+)              [NC,OR]
RewriteCond %{REQUEST_URI} ^envidiosos                [NC,OR]
RewriteCond %{REQUEST_URI} ^civa                      [NC,OR]
#variant-6 redirect all inner http:// request
RewriteCond %{QUERY_STRING} ^(.*)http://(.*)            [NC,OR]
#variant-7 redirect all inner http request regardless if encoded
RewriteCond %{QUERY_STRING} ^(.*)http%3A%2F%2F(.*)      [NC]
RewriteRule ^.*$ http://127.0.0.1 [R,L]


I had a user with crush in his name and he received this message. I put your code in thehtaccess and it worked. Is this still the case with RavenNuke 2.20? That is what I am using...
View user's profile Send private message Visit poster's website
montego
Site Admin


Joined: Aug 29, 2004
Posts: 8625
Location: Arizona

PostPosted: Tue Oct 10, 2006 9:31 pm Reply with quote Back to top

I believe, from what Technocrat has said, that if you are up on the BBtoNuke forum updates, this issue is no longer there, and so these are no longer necessary. Since 2.02.02 is at 2.0.20, you should be fine.
View user's profile Send private message Visit poster's website
blith
Client


Joined: Jul 18, 2003
Posts: 975

PostPosted: Tue Oct 10, 2006 11:16 pm Reply with quote Back to top

montego wrote:
I believe, from what Technocrat has said, that if you are up on the BBtoNuke forum updates, this issue is no longer there, and so these are no longer necessary. Since 2.02.02 is at 2.0.20, you should be fine.

Okay, but I had a "possible Santy Worm attack" message when a user clicked on his account activation link.
View user's profile Send private message Visit poster's website
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16648
Location: Kansas

PostPosted: Tue Oct 10, 2006 11:43 pm Reply with quote Back to top

Compare it to that logic in .htaccess and you should see right away why it got flagged. Remember that NukeSentinel(tm) also has Santy Worm protection.
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
evaders99
Moderator


Joined: Apr 30, 2004
Posts: 3221

PostPosted: Wed Oct 11, 2006 10:43 am Reply with quote Back to top

Make sure the username isn't using anything banned like "perl"
View user's profile Send private message Visit poster's website
blith
Client


Joined: Jul 18, 2003
Posts: 975

PostPosted: Fri Oct 13, 2006 12:14 pm Reply with quote Back to top

so my question is: Now that I have placed the code in my htaccess can I turn off Nuke Sentinel Santy Worm protection? Thank you all!
View user's profile Send private message Visit poster's website
Display posts from previous:       
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.

View next topic
View previous topic
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 vote in polls in this forum
Forums ©
 

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest © 2002-2010 by Raven

You can syndicate our news using the file xml

CSE HTML Validator Helped Clean up This Page! [Valid RSS] valid RSS 2.0 Valid robots.txt Stop Spam Harvesters, Join Project Honey Pot

Website engines core code is © copyright by PHP-Nuke but has been heavily patched and modified by myself and others.
PHP-Nuke is a free software released under the GNU/GPL.


:: fisubice phpbb2 style by Daz :: PHP-Nuke theme by www.nukemods.com ::
:: fisubice Theme Modified by the RavenNuke™ Team ::

:: W3C CSS Compliance Validation :: W3C HTML 4.01 Transitional Compliance Validation ::

zerosum