Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> NukeSentinel(tm)
Author Message
SlashDot
New Member
New Member



Joined: Jan 08, 2005
Posts: 22
Location: Bangladesh

PostPosted: Sun Jun 19, 2005 7:20 am Reply with quote

Helo all. I am in a bit of a jam. i have been working to get my site upto html 4.1 standard. Now whenever i am trying to validate my site i get this:
[ Only registered users can see links on this board! Get registered or login! ]
Quote:
I got the following unexpected response when trying to retrieve <http://www.sddesign.biz>:

403 Forbidden

Please make sure you have entered the URL correctly.


Then i pulled down the .htaccess from the root and tried. Then i got the following:

Quote:
Note:
The URL you gave me, <http://www.sddesign.biz>, returned a redirect to <http://www.amishrakefight.org/gfy/>.


i am validating via : http://jigsaw.w3.org/

So its clear that senteniel is taking that as an hack attempt and redirecting it to that site lol.
Now do i need to turn senteniel off to let the validator work? But that proposes to be a big problem when any user will try to validate my site and the error. and ofcourse there are security issues.
 
View user's profile Send private message Visit poster's website
SlashDot







PostPosted: Sun Jun 19, 2005 7:28 am Reply with quote

For whatever its worth i am attaching my .htaccess file here as well just to be sure.

Code:
##########################################################################

# PHP-Nuke Platinum: .htaccess 0.13                                      #
#                                                                        #
# Author:        Bill Murrin (Audioslaved)                               #
#                (postmaster@audioslaved.com)                            #
#                http://www.gt-nextgen.com                               #
#                                                                        #
# Ported by:     LombudXa (Rodmar)         (Lom@evolved-systems.net)     #
#                                                                        #
#                http://www.evolved-systems.net                          #
#                http://www.sddesign.biz                                 #
#                http://www.platinummods.com                             #
#                                                                        #
# File Description: This .htaccess file contains improved security code  #
#                   and rewrite rules for GT-NextGen to improve security #
#                   as well as creating short URL's using the PHP module #
#                   Rewrite                                              #
##########################################################################
# This MOD is released under the GPL License.                            #
##########################################################################
# «evolved Systems][Clan»: The x-traordinary Unreal Community            #
##########################################################################

##########################################################################
# General .htaccess rules:                                               #
##########################################################################

Options All -Indexes
DirectoryIndex index.php index.htm index.html

# -------------------------------------------
# Start of NukeSentinel(tm) admin.php Auth
# -------------------------------------------
<Files /home/sddesign/.htpasswds/.staccess>
deny from all
</Files>

#<Files admin.php>
#<Limit GET POST PUT>
#require valid-user
#</Limit>
#AuthName "Restricted by NukeSentinel(tm)"
#AuthType Basic
#AuthUserFile /home/sddesign/.htpasswds/.staccess
#</Files>
# -------------------------------------------
# End of NukeSentinel(tm) admin.php Auth
# -------------------------------------------

<Limit GET PUT POST>
order allow,deny
allow from all
</Limit>

# Disable .htaccess viewing from browser
<files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
</files>

<files ~ "\config.php$">
    deny from all
</files>

# deny most common except .php/.html
<FilesMatch "\.(inc|tpl|h|ihtml|sql|ini|conf|class|bin|spd|theme|module|exe)$">
deny from all
</FilesMatch>

##########################################################################
# PHP's mod_rewrite module (test functionality):                         #
##########################################################################

Options +FollowSymlinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

# RewriteRule ^(mod_rewrite_test.php)$      mod_rewrite_test.php?check_mod_rewrite=1    [QSA] [L]
# RewriteRule ^$            mod_rewrite_test.php?check_mod_rewrite=1    [QSA] [L]
# this may cause issues with subdirs and so I have not enabled it.
</IfModule>

##########################################################################
# General Rewrite Conditions and Rules:                                  #
##########################################################################

# Protection phpBB
RewriteCond %{HTTP_USER_AGENT} ^LWP [NC,OR]
RewriteCond %{REQUEST_URI} ^visualcoders [NC,OR]
RewriteCond %{REQUEST_URI} ^envidiosos [NC,OR]
RewriteCond %{REQUEST_URI} ^civa [NC,OR]
RewriteCond %{REQUEST_URI} ^filepack.superbr.org [NC,OR]
RewriteCond %{QUERY_STRING} rush=([^&]+) [NC,OR]
RewriteCond %{QUERY_STRING} ^(.*)wget(.*) [NC,OR]

# prevent access from santy webworm a-e
RewriteCond %{QUERY_STRING} ^(.*)highlight=\%2527 [OR]
RewriteCond %{QUERY_STRING} ^(.*)rush=\%65\%63\%68 [OR]
RewriteCond %{QUERY_STRING} ^(.*)rush=echo [OR]
RewriteCond %{QUERY_STRING} ^(.*)wget\%20
RewriteRule ^.*$ http://127.0.0.1/ [R,L]

# prevent pre php 4.3.10 bug
# RewriteCond %{HTTP_COOKIE}% s.*):\%22test1\%22\%3b
# RewriteRule ^.*$ http://127.0.0.1/ [R,L]

# prevent perl user agent (most often used by santy)
RewriteCond %{HTTP_USER_AGENT} ^lwp.* [NC]
RewriteRule ^.*$ http://127.0.0.1/ [R,L]

# this ruleset is to "stop" stupid attempts to use MS IIS exploits
# NIMDA
RewriteCond %{REQUEST_URI} /(admin¦cmd¦httpodbc¦nsiislog¦root¦shell)\.(dll¦exe) [NC]
RewriteRule !(error\.php|robots\.txt) /error.php?mode=nimda [L,E=HTTP_USER_AGENT:NIMDA_EXPLOIT,T=application/x-httpd-cgi]
# RewriteRule .* - [F,L]

# CODERED
RewriteCond %{REQUEST_URI} /default\.(ida¦idq)$ [NC,OR]
RewriteCond %{REQUEST_URI} /.*\.printer$ [NC]
RewriteRule !(error\.php|robots\.txt) /error.php?mode=codered [L,E=HTTP_USER_AGENT:CODERED_EXPLOIT,T=application/x-httpd-cgi]
# RewriteRule .* - [F,L]

# IE's "make available offline" mode
RewriteCond %{HTTP_USER_AGENT} MSIECrawler [OR]

# unknown bot
RewriteCond %{HTTP_USER_AGENT} ^NG [OR]

# You may want to enable these lines below to disallow php and perl scripts to access your site
#RewriteCond %{HTTP_USER_AGENT} ^.*PHP.*$ [OR]
#RewriteCond %{HTTP_USER_AGENT} ^.*libwww-perl [NC,OR]

# Ignorant user trying to edit my site
RewriteCond %{HTTP_USER_AGENT} FrontPage [OR]
#this one will ban everything microsoft. Use with caution.
RewriteCond %{HTTP_USER_AGENT} ^(Microsoft|MFC).(Data|URL|WebDAV|Foundation).(Access|Control|MiniRedir|Class) [NC,OR]

# MSOffice
RewriteCond %{REQUEST_URI} ^/(MSOffice|_vti) [NC,OR]

# Various
RewriteCond %{REQUEST_URI} ^/(bin/|cgi/|cgi\-local/|cgi\-bin/|sumthin) [NC,OR]
RewriteCond %{THE_REQUEST} ^GET\ http [NC,OR]
RewriteCond %{REQUEST_URI} /sensepost\.exe [NC,OR]
RewriteCond %{REQUEST_METHOD}!^(GET|HEAD|POST) [NC,OR]

# rude bot
RewriteCond %{HTTP_USER_AGENT} Atomz [OR]
RewriteCond %{HTTP_USER_AGENT} FlickBot [OR]
RewriteCond %{HTTP_USER_AGENT} "efp@gmx\.net" [OR]
RewriteCond %{HTTP_USER_AGENT} imagefetch [OR]
RewriteCond %{HTTP_USER_AGENT} "LINKS ARoMATIZED" [OR]
RewriteCond %{HTTP_USER_AGENT} "mister pix" [NC,OR]
RewriteCond %{HTTP_USER_AGENT} PersonaPilot [OR]
RewriteCond %{HTTP_USER_AGENT} Sqworm [OR]
RewriteCond %{HTTP_USER_AGENT} SurveyBot [OR]

# dumb bot, doesn't know how to follow links, generates lots of 404s
RewriteCond %{HTTP_USER_AGENT} vayala [OR]

# dumb bot
RewriteCond %{HTTP_USER_AGENT} "^Mozilla/4.0$" [OR]

# Cyveillance is a spybot that scours the web for copyright violations and ?damaging information? on
# behalf of clients such as the RIAA and MPAA. Their robot spoofs its User-Agent to look like Internet
# Explorer, and it completely ignores robots.txt.
# Banned by IP address.
RewriteCond %{REMOTE_ADDR} ^63\.148\.99\.2(2[4-9]|[34][0-9]|5[0-5])$ [OR]
RewriteCond %{REMOTE_ADDR} ^63\.226\.3[34]\. [OR]
RewriteCond %{REMOTE_ADDR} ^63\.212\.171\.161$ [OR]
RewriteCond %{REMOTE_ADDR} ^65\.118\.41\.(19[2-9]|2[01][0-9]|22[0-3])$ [OR]

# NameProtect peddles their ?online brand monitoring? to unsuspecting and gullible companies
# looking for people to sue. Despite the claims on their robot information page, they do not
# respect robots.txt; in fact, they spoof their User-Agent in multiple ways to avoid detection.
# Banned by User-Agent and IP address.
RewriteCond %{REMOTE_ADDR} ^12\.148\.196\.(12[8-9]|1[3-9][0-9]|2[0-4][0-9]|25[0-5])$ [OR]
RewriteCond %{REMOTE_ADDR} ^12\.148\.209\.(19[2-9]|2[0-4][0-9]|25[0-5])$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^NPBot   [NC,OR]

# Web Content International
RewriteCond %{REMOTE_ADDR} ^65\.102\.12\.2(2[4-9]|3[01])$ [OR]
RewriteCond %{REMOTE_ADDR} ^65\.102\.17\.(3[2-9]|[4-6][0-9]|7[01]|8[89]|9[0-5]|10[4-9]|11[01])$ [OR]
RewriteCond %{REMOTE_ADDR} ^65\.102\.23\.1(5[2-9]|6[0-7])$ [OR]

# Wordtracker
RewriteCond %{REMOTE_ADDR} ^128\.242\.197\.101$ [OR]

# Unknown
# unknown.Level3.net
RewriteCond %{REMOTE_ADDR} ^64\.156\.198\.(6[89]|7[0-9]|80)$ [OR]

# host25x.keebler.com
RewriteCond %{REMOTE_ADDR} ^65\.223\.250\.25[0-3]$ [OR]

# Turnitin spybot
RewriteCond %{REMOTE_ADDR} ^64\.140\.49\.6([6-9])$ [OR]
RewriteCond %{HTTP_USER_AGENT} TurnitinBot [OR]

RewriteCond %{HTTP_USER_AGENT} ^.*FileHound.*$

# Used to send these bots to another place. Change the url to whatever you would like.
# RewriteRule /* http://www.geocities.com/WestHollywood/Heights/3204/1home.html [L,R]
RewriteRule !(error\.php|robots\.txt) /error.php?mode=badua [L,E=HTTP_USER_AGENT:BAD_USER_AGENT]
# This could also be used to simply deny access to your site instead of the one above
# RewriteRule .* - [F,L]

# Block if useragent and referer are unknown.
# the referer string will cause some problems with mozilla so it has been diabled
RewriteCond %{HTTP_REFERER} ^-$ [OR]
RewriteCond %{HTTP_USER_AGENT} ^-$

# Used to send these bots to another place. Change the url to whatever you would like.
# RewriteRule /* http://www.geocities.com/WestHollywood/Heights/3204/1home.html [L,R]
RewriteRule !(error\.php|robots\.txt) /error.php?mode=noagent [L,T=application/x-httpd-cgi]
# This could also be used to simply deny access to your site instead of the one above
# RewriteRule .* - [F,L]

# This ruleset is for formmail script abusers.
# we don't use Perl for Postnuke so this is not really needed.
RewriteCond %{REQUEST_URI} (mail.?form|form|form.?mail|mail|mailto)\.(cgi¦exe¦pl)$ [NC]
RewriteRule !(error\.php|robots\.txt) /error.php?mode=noformmail [L,E=HTTP_USER_AGENT:FORMMAIL_EXPLOIT,T=application/x-httpd-cgi]

##########################################################################
# Bots: Email, Spammers and Robots Rewrite Conditions:                   #
##########################################################################

# The next lines check for Email Spammers Robots and redirect them to a fake page
RewriteCond %{HTTP_USER_AGENT} ^Alexibot                [OR]
RewriteCond %{HTTP_USER_AGENT} ^asterias                [OR]
RewriteCond %{HTTP_USER_AGENT} ^BackDoorBot             [OR]
RewriteCond %{HTTP_USER_AGENT} ^Black.Hole              [OR]
RewriteCond %{HTTP_USER_AGENT} ^BlackWidow              [OR]
RewriteCond %{HTTP_USER_AGENT} ^BlowFish                [OR]
RewriteCond %{HTTP_USER_AGENT} ^BotALot                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^BuiltBotTough           [OR]
RewriteCond %{HTTP_USER_AGENT} ^Bullseye                [OR]
RewriteCond %{HTTP_USER_AGENT} ^BunnySlippers           [OR]
RewriteCond %{HTTP_USER_AGENT} ^Cegbfeieh               [OR]
RewriteCond %{HTTP_USER_AGENT} ^CheeseBot               [OR]
RewriteCond %{HTTP_USER_AGENT} ^CherryPicker            [OR]
RewriteCond %{HTTP_USER_AGENT} ^ChinaClaw               [OR]
RewriteCond %{HTTP_USER_AGENT} ^CopyRightCheck          [OR]
RewriteCond %{HTTP_USER_AGENT} ^cosmos                  [OR]
RewriteCond %{HTTP_USER_AGENT} ^Crescent                [OR]
RewriteCond %{HTTP_USER_AGENT} ^Custo                   [OR]
RewriteCond %{HTTP_USER_AGENT} ^DISCo                   [OR]
RewriteCond %{HTTP_USER_AGENT} ^DittoSpyder             [OR]
RewriteCond %{HTTP_USER_AGENT} ^Download\ Demon         [OR]
RewriteCond %{HTTP_USER_AGENT} ^eCatch                  [OR]
RewriteCond %{HTTP_USER_AGENT} ^EirGrabber              [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailCollector          [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon             [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailWolf               [OR]
RewriteCond %{HTTP_USER_AGENT} ^EroCrawler              [OR]
RewriteCond %{HTTP_USER_AGENT} ^Express\ WebPictures    [OR]
RewriteCond %{HTTP_USER_AGENT} ^ExtractorPro            [OR]
RewriteCond %{HTTP_USER_AGENT} ^EyeNetIE                [OR]
RewriteCond %{HTTP_USER_AGENT} ^FlashGet                [OR]
RewriteCond %{HTTP_USER_AGENT} ^Foobot                  [OR]
RewriteCond %{HTTP_USER_AGENT} ^FrontPage               [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^GetRight                [OR]
RewriteCond %{HTTP_USER_AGENT} ^GetWeb!                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go-Ahead-Got-It         [OR]
RewriteCond %{HTTP_USER_AGENT} ^Googlebot-Image         [OR]
RewriteCond %{HTTP_USER_AGENT} ^Go!Zilla                [OR]
RewriteCond %{HTTP_USER_AGENT} ^GrabNet                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^Grafula                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^Harvest                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^hloader                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^HMView                  [OR]
RewriteCond %{HTTP_USER_AGENT} ^httplib                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^HTTrack                 [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^humanlinks              [OR]
RewriteCond %{HTTP_USER_AGENT} ^ia_archiver             [OR]
RewriteCond %{HTTP_USER_AGENT} ^Image\ Stripper         [OR]
RewriteCond %{HTTP_USER_AGENT} ^Image\ Sucker           [OR]
RewriteCond %{HTTP_USER_AGENT} ^Indy\ Library           [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^InfoNaviRobot           [OR]
RewriteCond %{HTTP_USER_AGENT} ^InterGET                [OR]
RewriteCond %{HTTP_USER_AGENT} ^Internet\ Ninja         [OR]
RewriteCond %{HTTP_USER_AGENT} ^JennyBot                [OR]
RewriteCond %{HTTP_USER_AGENT} ^JetCar                  [OR]
RewriteCond %{HTTP_USER_AGENT} ^JOC\ Web\ Spider        [OR]
RewriteCond %{HTTP_USER_AGENT} ^Kenjin.Spider           [OR]
RewriteCond %{HTTP_USER_AGENT} ^Keyword.Density         [OR]
RewriteCond %{HTTP_USER_AGENT} ^larbin                  [OR]
RewriteCond %{HTTP_USER_AGENT} ^LeechFTP                [OR]
RewriteCond %{HTTP_USER_AGENT} ^LexiBot                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^libWeb/clsHTTP          [OR]
RewriteCond %{HTTP_USER_AGENT} ^LinkextractorPro        [OR]
RewriteCond %{HTTP_USER_AGENT} ^LinkScan/8.1a.Unix      [OR]
RewriteCond %{HTTP_USER_AGENT} ^LinkWalker              [OR]
RewriteCond %{HTTP_USER_AGENT} ^lwp-trivial             [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mass\ Downloader        [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mata.Hari               [OR]
RewriteCond %{HTTP_USER_AGENT} ^Microsoft.URL           [OR]
RewriteCond %{HTTP_USER_AGENT} ^MIDown\ tool            [OR]
RewriteCond %{HTTP_USER_AGENT} ^MIIxpc                  [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mister.PiX              [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mister\ PiX             [OR]
RewriteCond %{HTTP_USER_AGENT} ^moget                   [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/2               [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/3.Mozilla/2.01  [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla.*NEWT           [OR]
RewriteCond %{HTTP_USER_AGENT} ^Navroad                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^NearSite                [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetAnts                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetMechanic             [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetSpider               [OR]
RewriteCond %{HTTP_USER_AGENT} ^Net\ Vampire            [OR]
RewriteCond %{HTTP_USER_AGENT} ^NetZIP                  [OR]
RewriteCond %{HTTP_USER_AGENT} ^NICErsPRO               [OR]
RewriteCond %{HTTP_USER_AGENT} ^NPBot                   [OR]
RewriteCond %{HTTP_USER_AGENT} ^Octopus                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline.Explorer        [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline\ Explorer       [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline\ Navigator      [OR]
RewriteCond %{HTTP_USER_AGENT} ^Openfind                [OR]
RewriteCond %{HTTP_USER_AGENT} ^PageGrabber             [OR]
RewriteCond %{HTTP_USER_AGENT} ^Papa\ Foto              [OR]
RewriteCond %{HTTP_USER_AGENT} ^pavuk                   [OR]
RewriteCond %{HTTP_USER_AGENT} ^pcBrowser               [OR]
RewriteCond %{HTTP_USER_AGENT} ^ProPowerBot/2.14        [OR]
RewriteCond %{HTTP_USER_AGENT} ^ProWebWalker            [OR]
RewriteCond %{HTTP_USER_AGENT} ^ProWebWalker            [OR]
RewriteCond %{HTTP_USER_AGENT} ^QueryN.Metasearch       [OR]
RewriteCond %{HTTP_USER_AGENT} ^ReGet                   [OR]
RewriteCond %{HTTP_USER_AGENT} ^RepoMonkey              [OR]
RewriteCond %{HTTP_USER_AGENT} ^RMA                     [OR]
RewriteCond %{HTTP_USER_AGENT} ^SiteSnagger             [OR]
RewriteCond %{HTTP_USER_AGENT} ^SlySearch               [OR]
RewriteCond %{HTTP_USER_AGENT} ^SmartDownload           [OR]
RewriteCond %{HTTP_USER_AGENT} ^SpankBot                [OR]
RewriteCond %{HTTP_USER_AGENT} ^spanner                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperBot                [OR]
RewriteCond %{HTTP_USER_AGENT} ^SuperHTTP               [OR]
RewriteCond %{HTTP_USER_AGENT} ^Surfbot                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^suzuran                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^Szukacz/1.4             [OR]
RewriteCond %{HTTP_USER_AGENT} ^tAkeOut                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^Teleport                [OR]
RewriteCond %{HTTP_USER_AGENT} ^Teleport\ Pro           [OR]
RewriteCond %{HTTP_USER_AGENT} ^Telesoft                [OR]
RewriteCond %{HTTP_USER_AGENT} ^The.Intraformant        [OR]
RewriteCond %{HTTP_USER_AGENT} ^TheNomad                [OR]
RewriteCond %{HTTP_USER_AGENT} ^TightTwatBot            [OR]
RewriteCond %{HTTP_USER_AGENT} ^Titan                   [OR]
RewriteCond %{HTTP_USER_AGENT} ^toCrawl/UrlDispatcher   [OR]
RewriteCond %{HTTP_USER_AGENT} ^toCrawl/UrlDispatcher   [OR]
RewriteCond %{HTTP_USER_AGENT} ^True_Robot              [OR]
RewriteCond %{HTTP_USER_AGENT} ^turingos                [OR]
RewriteCond %{HTTP_USER_AGENT} ^TurnitinBot/1.5         [OR]
RewriteCond %{HTTP_USER_AGENT} ^URLy.Warning            [OR]
RewriteCond %{HTTP_USER_AGENT} ^VCI                     [OR]
RewriteCond %{HTTP_USER_AGENT} ^VoidEYE                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebAuto                 [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebBandit               [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebCopier               [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebEMailExtrac.*        [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebEnhancer             [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebFetch                [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebGo\ IS               [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web.Image.Collector     [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Image\ Collector   [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebLeacher              [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebmasterWorldForumBot  [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebReaper               [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebSauger               [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website\ eXtractor      [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website.Quester         [OR]
RewriteCond %{HTTP_USER_AGENT} ^Website\ Quester        [OR]
RewriteCond %{HTTP_USER_AGENT} ^Webster.Pro             [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebStripper             [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Sucker             [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebWhacker              [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebZip                  [OR]
RewriteCond %{HTTP_USER_AGENT} ^Wget                    [OR]
RewriteCond %{HTTP_USER_AGENT} ^Widow                   [OR]
RewriteCond %{HTTP_USER_AGENT} ^[Ww]eb[Bb]andit         [OR]
RewriteCond %{HTTP_USER_AGENT} ^WWW-Collector-E         [OR]
RewriteCond %{HTTP_USER_AGENT} ^WWWOFFLE                [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider       [OR]
RewriteCond %{HTTP_USER_AGENT} ^Xenu's                  [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus

##########################################################################
# GT-NExtGEn 0.4a Rewrite Rules:                                         #
##########################################################################

# RewriteCond %{HTTP_USER_AGENT}  ^-?$
# RewriteRule ^.*$ /www/nukecops/noID.php [L]

RewriteRule ^.*$ emailsforyou.php [L]

RewriteRule ^index.html index.php [L]

# Articles
# RewriteRule ^article-([0-9]*)-([a-z]*)-([0-9]*)-([0-9]*).html article.html$1&mode=$2&order=$3&thold=$4 [L]
# RewriteRule ^article-([0-9-]*)-([a-z]*)-([0-9]*)-([0-9]*).html([0-9#]*) modules.php?name=News&file=article&thold=$1&mode=$2&order=$3&sid=$4$5 [L]
# RewriteRule ^article-topic([0-9]*)-page([0-9]*).html article-topic-.html$1&pagenum=$2 [L]
# RewriteRule ^article-category([0-9]*)-page([0-9]*).html modules.php?name=News&file=categories&op=newindex&catid=$1&pagenum=$2 [L]
# RewriteRule ^article-category-([0-9]*).html modules.php?name=News&file=categories&op=newindex&catid=$1 [L]
# RewriteRule ^article-print-([0-9]*).html modules.php?name=News&file=print&sid=$1 [L]
# RewriteRule ^article-friend-([0-9]*).html modules.php?name=News&file=friend&op=FriendSend&sid=$1 [L]
# RewriteRule ^article-page-([0-9]*).html modules.php?name=News&pagenum=$1 [L]
# RewriteRule ^article([1-9][0-9]*).html article.html$1 [L]
# RewriteRule ^article-topic-([0-9]*).html article-topic-.html$1 [L]
# RewriteRule ^allnews.html modules.php?name=News&file=allindex [L]
# RewriteRule ^news.html news.html [L]

# AvantGo
# RewriteRule ^avantgo-print-([0-9]*).html modules.php?name=AvantGo&file=print&sid=$1 [L]
# RewriteRule ^avantgo.html avantgo.html [L]

# Ban_Request
RewriteRule ^banrequest.html modules.php?name=Ban_Request [L]

# Blocked_IPs
RewriteRule ^blockedips.html modules.php?name=Blocked_IPs [L]

# Blocked_Ranges
RewriteRule ^blockedranges.html modules.php?name=Blocked_Ranges [L]

# Blocked_Referers
RewriteRule ^blockedreferers.html modules.php?name=Blocked_Referers [L]

# Sentinel
RewriteRule ^sentinel-(STIPS|STRanges|STReferers|STIP2C).html modules.php?name=Sentinel&op=$1 [L]
RewriteRule ^sentinel.html modules.php?name=Sentinel [L]

# Calendar
# RewriteRule ^calendar-showmonth-([0-9]*)-([0-9]*)-([0-9]*).html modules.php?name=Calendar&op=ShowMonth&month=$1&day=$2&year=$3 [L]
# RewriteRule ^calendar-showday-month-([0-9]*)-([0-9]*)-([0-9]*).html modules.php?name=Calendar&op=ShowDay&month=$1&day=$2&year=$3 [L]
# RewriteRule ^calendar-showday-([0-9]*)-([0-9]*)-([0-9]*).html modules.php?name=Calendar&op=ShowDay&day=$1&month=$2&year=$3 [L]
# RewriteRule ^calendar-showevent-month-([0-9]*)-([0-9]*)-([0-9]*)-id-([0-9]*).html modules.php?name=Calendar&op=ShowEvent&month=$1&day=$2&year=$3&eventid=$4 [L]
# RewriteRule ^calendar-print-([0-9]*)-([0-9]*)-([0-9]*)-([0-9]*).html modules.php?name=Calendar&printing=$1&day=$2&month=$3&year=$4 [L]
# RewriteRule ^calendar-([0-9]*)-([0-9]*).html modules.php?name=Calendar&month=$1&year=$2 [L]
# RewriteRule ^calendar-addevent.html modules.php?name=Calendar&op=AddEvent [L]
# RewriteRule ^calendar-submitevent.html modules.php?name=Calendar&op=SubmitEvent [L]
# RewriteRule ^calendar.html modules.php?name=Calendar [L]

# Classifieds
# RewriteRule ^account-logout.html account-logout.html [L]
# RewriteRule ^account.html account.html [L]
# RewriteRule ^messages-post-([0-9]*).html messages-post-.html$1 [L]
# RewriteRule ^messages.html messages.html [L]
# RewriteRule ^send-ad-([0-9]*).html modules.php?name=Classifieds&file=friend&id=$1 [L]
# RewriteRule ^save-ad-([0-9]*).html modules.php?name=Classifieds&file=adsbox&op=SaveAds&id_ads=$1 [L]
# RewriteRule ^edit-ad-([0-9]*).html modules.php?name=Classifieds&file=adsbox&op=editposted&id=$1 [L]
# RewriteRule ^delete-ad-([0-9]*).html modules.php?name=Classifieds&file=adsbox&op=deleteads&id=$1 [L]
# RewriteRule ^email-member-ad-([0-9]*).html modules.php?name=Classifieds&file=contact&id=$1 [L]
# RewriteRule ^advert-disclaimer-([0-9]*).html modules.php?name=Classifieds&op=Disclaimer&no=$1 [L]
# RewriteRule ^advert-view-ads-([0-9]*).html modules.php?name=Classifieds&op=ViewAds&id_catg=$1 [L]
# RewriteRule ^advert-view-category-([0-9]*).html modules.php?name=Classifieds&op=ViewCatg&id_catg=$1 [L]
# RewriteRule ^advert-view-details-([0-9]*).html modules.php?name=Classifieds&op=ViewDetail&id_ads=$1 [L]
# RewriteRule ^advert-comment.html modules.php?name=Classifieds&op=SubmitComment [L]
# RewriteRule ^view-adverts.html modules.php?name=Classifieds&op=viewads [L]
# RewriteRule ^popular-adverts.html modules.php?name=Classifieds&op=mostpop [L]
# RewriteRule ^search-adverts.html modules.php?name=Classifieds&file=search [L]
# RewriteRule ^adverts-box.html modules.php?name=Classifieds&file=adsbox [L]
# RewriteRule ^post-advert.html modules.php?name=Classifieds&file=postads [L]
# RewriteRule ^adverts.html modules.php?name=Classifieds [L]

# Contact
RewriteRule ^contact.html modules.php?name=Contact [L]

# Contact
RewriteRule ^colormatch.html modules.php?name=ColorMatch [L]

# Chat
RewriteRule ^chat-room-([0-9]*).html modules.php?op=modload&name=Chat&file=chat&rid=$1&first=$2 [L]
RewriteRule ^chat-joinroom-([0-9]*).html modules.php?op=modload&name=Chat&file=index&roomid=$1 [L]
RewriteRule ^chat.html modules.php?op=modload&name=Chat&file=index [L]
RewriteRule ^chat.html modules.php?name=Chat [L]

#Digital_Goods
RewriteRule ^esolution_goods-cat([0-9]*)-min([0-9]*)-order([a-zA-Z]*)-catswitch([0-9]*)-dlswitch([0-9]*).html modules.php?name=Digital_Goods&cid=$1&min=$2&orderby=$3&catswitchtype=$4&dlswitchtype=$5[L]
RewriteRule ^esolution_goods-cat([0-9]*)-order([a-zA-Z]*)-catswitch([0-9]*)-dlswitch([0-9]*).html modules.php?name=Digital_Goods&cid=$1&orderby=$2&catswitchtype=$3&dlswitchtype=$4[L]
RewriteRule ^esolution_goods-cat([0-9]*)-catswitch([0-9]*)-dlswitch([0-9]*).html modules.php?name=Digital_Goods&cid=$1&catswitchtype=$2&dlswitchtype=$3[L]
RewriteRule ^esolution_goods-rate([0-9]*)-(percent|num).html modules.php?name=Digital_Goods&op=MostPopular&ratenum=$1&ratetype=$2[L]
RewriteRule ^esolution_goods-mostpop-catswitch([0-9]*)-dlswitch([0-9]*).html modules.php?name=Digital_Goods&op=MostPopular&catswitchtype=$1&dlswitchtype=$2[L]
RewriteRule ^esolution_goods-new-show-([0-9]*).html modules.php?name=Digital_Goods&op=NewDigitalGoods&newdownloadshowdays=$1[L]
RewriteRule ^esolution_goods-newgoods([0-9]*).html modules.php?name=Digital_Goods&op=NewDigitalGoods&selectdate=$1[L]
RewriteRule ^esolution_goods-newdate([0-9]*).html modules.php?name=Digital_Goods&op=NewDownloadsDate&selectdate=$1[L]
RewriteRule ^esolution_goods-new.html modules.php?name=Digital_Goods&op=NewDigitalGoods
RewriteRule ^esolution_goods-broken([0-9]*).html modules.php?name=Digital_Goods&op=brokendownload&lid=$1[L]
RewriteRule ^esolution_goods-([0-9]*).html modules.php?name=Digital_Goods&op=getdetailed&lid=$1[L]
RewriteRule ^esolution_goods-mod([0-9]*).html modules.php?name=Digital_Goods&op=modifydownloadrequest&lid=$1[L]
RewriteRule ^esolution_goods-search([a-zA-Z0-9_-]*)-min([0-9]*)-order([a-zA-Z]*)-catswitch([0-9]*)-dlswitch([0-9]*).html  modules.php?name=Digital_Goods&op=search&query=$1&min=$2&orderby=$3&catswitchtype=$4&dlswitchtype=$5[L]
RewriteRule ^esolution_goods-search([a-zA-Z0-9_-]*)-order([a-zA-Z]*)-catswitch([0-9]*)-dlswitch([0-9]*).html modules.php?name=Digital_Goods&op=search&query=$1&orderby=$2&catswitchtype=$3&dlswitchtype=$4[L]
RewriteRule ^esolution_goods.html modules.php?name=Digital_Goods
RewriteRule ^esolution_goods-catswitch([0-9]*)-dlswitch([0-9]*).html modules.php?name=Digital_Goods&catswitchtype=$1&dlswitchtype=$2[L]
RewriteRule ^submit_esolution_goods.html modules.php?name=Submit_Digital_Goods
RewriteRule ^esolution_goods-propose.html modules.php?name=Digital_Goods&op=ProposeCategory
RewriteRule ^e-add-review([0-9]*).html modules.php?name=Digital_Goods&op=AddTestamonial&lid=$1[L]
RewriteRule ^e-view-review-title-([0-9]*)-tid([0-9]*)-lid([0-9]*).html modules.php?name=$module_name&op=ViewTestamonial&ttitle=$1&tid=$2&lid=$3[L]
#E SOLUTION
RewriteRule ^e-subscriptions.html modules.php?name=E-Solution
RewriteRule ^e-subscriptions-([0-9]*).html  modules.php?name=E-Solution&op=getdetailed&getdetailed=$1[L]
RewriteRule ^e-subscriptions-thankyou.html modules.php?name=E-Solution&file=PremiumMemberpaid
RewriteRule ^e-subscriptions-canceled.html modules.php?name=E-Solution&file=PremiumMembercancel

# Content
# RewriteRule ^content_add.html modules.php?name=Content&pa=add_page [L]
# RewriteRule ^content-([0-9]*)-page([0-9]*).html contentid-.html$1&page=$2 [L]
# RewriteRule ^content-cat-([0-9]*).html content-cat-.html$1 [L]
# RewriteRule ^content-([0-9]*).html contentid-.html$1 [L]
# RewriteRule ^content.html content.html [L]

# Docs
RewriteRule ^(about|disclaimer|privacy|terms).html modules.php?name=Docs&file=$1 [L]
RewriteRule ^notice.html modules.php?name=Docs [L]

# Donations
RewriteRule ^donations-makedonation.html donations.html#MakeDonation [L]
RewriteRule ^donations.html donations.html [L]

# Downloads
RewriteRule ^download-show-detailedlist-([a-zA-Z0-9_-]*).html modules.php?name=Downloads&d_op=ns_dl_auth_full_list&author=$1#auth [L]
RewriteRule ^downloadrecommend-([0-9]*)-([0-9]*)-([[:punct:]/:\-\'(){}.&=_a-zA-Z0-9\ ]*).html modules.php?name=Downloads&d_op=ns_dl_rec_dl&cid=$1&lid=$2&ttitle=$3 [L]
RewriteRule ^download-send.html modules.php?name=Downloads&d_op=ns_dl_send_rec [L]
RewriteRule ^download-file-mirrortwo([0-9]*).html modules.php?name=Downloads&d_op=ns_dl_get_mirror_two&lid=$1 [L]
RewriteRule ^download-file-mirrorone([0-9]*).html modules.php?name=Downloads&d_op=ns_dl_get_mirror_one&lid=$1 [L]
RewriteRule ^downloaddetails-([0-9]*)-([0-9]*)-([[:punct:]/:\-\'{}()\%._&a-zA-Z0-9+=\ ]*).html modules.php?name=Downloads&d_op=viewdownloaddetails&cid=$1&lid=$2&ttitle=$3 [L]
RewriteRule ^downloadcomments-([0-9]*)-([0-9]*)-([[:punct:]/:\-\'{}()\%._&a-zA-Z0-9+=\ ]*).html modules.php?name=Downloads&d_op=viewdownloadcomments&cid=$1&lid=$2&ttitle=$3 [L]
RewriteRule ^download-mod-([0-9]*).html modules.php?name=Downloads&d_op=modifydownloadrequest&lid=$1 [L]
RewriteRule ^download-broken-([0-9]*).html modules.php?name=Downloads&d_op=brokendownload&lid=$1 [L]
RewriteRule ^download-shownew-([0-9]*).html modules.php?name=Downloads&d_op=NewDownloads&newdownloadshowdays=$1 [L]
RewriteRule ^download-seldate-([a-zA-Z0-9+]*).html modules.php?name=Downloads&d_op=NewDownloadsDate&selectdate=$1 [L]
RewriteRule ^download-file-([0-9]*).html modules.php?name=Downloads&d_op=getit&lid=$1 [L]
RewriteRule ^ratedownload-([0-9]*)-([0-9]*)-([[:punct:]/:\-\'{}()\%._&a-zA-Z0-9+=\ ]*).html modules.php?name=Downloads&d_op=ratedownload&cid=$1&lid=$1&ttitle=$2 [L]
RewriteRule ^ratedownload-([0-9]*).html modules.php?name=Downloads&d_op=ratedownload&lid=$1 [L]
RewriteRule ^download-(TopRated|MostPopular)-([0-9]*)-(num|percent).html modules.php?name=Downloads&d_op=$1&ratenum=$2&ratetype=$3 [L]
RewriteRule ^downloads-(AddDownload|NewDownloads|MostPopular|TopRated).html modules.php?name=Downloads&d_op=$1 [L]
RewriteRule ^download([0-9]*)-orderby([a-zA-Z0-9+]*).html modules.php?name=Downloads&d_op=viewdownload&cid=$1&orderby=$2 [L]
RewriteRule ^download([0-9]*)-([0-9]*)-([a-zA-Z0-9+]*)-([0-9]*).html modules.php?name=Downloads&d_op=viewdownload&cid=$1&min=$2&orderby=$3&show=$4 [L]
RewriteRule ^download-search-([[:punct:]/:\-\'{}()\%._&a-zA-Z0-9+=\ ]*)-([0-9]*)-([a-zA-Z0-9+]*)-([0-9]*).html modules.php?name=Downloads&d_op=search&query=$1&min=$2&orderby=$3&show=$4 [L]
RewriteRule ^download-search-([[:punct:]/:\-\'{}()\%._&a-zA-Z0-9+=\ ]*)-([a-zA-Z0-9+]*).html modules.php?name=Downloads&d_op=search&query=$1&orderby=$2 [L]
RewriteRule ^download-search.html modules.php?name=Downloads&d_op=search [L]
RewriteRule ^download-outside-([0-9]*).html modules.php?name=Downloads&d_op=outsidedownloadsetup&lid=$1 [L]
RewriteRule ^downloads-cat-([0-9]*).html modules.php?name=Downloads&d_op=viewdownload&cid=$1#cat [L]
RewriteRule ^download-upload.html modules.php?name=Downloads&file=ns_uploads_file&type=file [L]
RewriteRule ^downloads-gfx-([a-zA-Z0-9+]*).html modules.php?name=Downloads&d_op=gfx&random_num=$1 [L]
RewriteRule ^downloads-help-([a-zA-Z0-9+]*).html modules.php?name=Downloads&d_op=ns_pass_help&thepass=$1 [L]
RewriteRule ^downloads.html downloads.html [L]

# Encyclopedia
# RewriteRule ^encyclopedia-([0-9]*)-page([0-9]*)-([a-zA-Z0-9_-]*).html modules.php?name=Encyclopedia&op=content&tid=$1&page=$2&query=$3 [L]
# RewriteRule ^encyclopedia-([0-9]*)-page([0-9]*).html modules.php?name=Encyclopedia&op=content&tid=$1&page=$2 [L]
# RewriteRule ^encyclopedia-([0-9]*)-([a-zA-Z0-9_-]*).html modules.php?name=Encyclopedia&op=content&tid=$1&query=$2 [L]
# RewriteRule ^encyclopedia-([0-9]*).html modules.php?name=Encyclopedia&op=content&tid=$1 [L]
# RewriteRule ^encyclopedia-list-([0-9]*).html modules.php?name=Encyclopedia&op=list_content&eid=$1 [L]
# RewriteRule ^encyclopedia-terms([0-9]*)-([A-Z]*).html modules.php?name=Encyclopedia&op=terms&eid=$1&ltr=$2 [L]
# RewriteRule ^encyclopedia-search-([a-zA-Z0-9_-]*).html modules.php?name=Encyclopedia&file=search&query=$1 [L]
# RewriteRule ^encyclopedia-search.html modules.php?name=Encyclopedia&file=search [L]
# RewriteRule ^encyclopedia.html encyclopedia.html [L]

# Feedback
RewriteRule ^feedback.html contact.html [L]

# FAQ
# RewriteRule ^faq-([0-9]*)-([a-zA-Z0-9\+\&\-\/%[:punct:]\.\;]*).html faq.html?myfaq=yes&id_cat=$1&categories=$2 [L]
RewriteRule ^faq-add.html faq.html?faqaddnew=y
RewriteRule ^faq-cat-([0-9]*).html faq.html?file=index&myfaq=yes&id_cat=$1
RewriteRule ^faq.html faq.html [L]

# Forum_Survey
RewriteRule ^forumsurvey-viewall-order-([0-9]*).html modules.php?name=Forum_Survey&op=viewall&op=view_order$1 [L]
RewriteRule ^forumsurvey-viewall.html modules.php?name=Forum_Survey&op=viewall [L]
RewriteRule ^forumsurvey.html modules.php?name=Forum_Survey [L]

# Forums
RewriteRule ^forums-kb-(approve|delete|unapprove)-article-([0-9]*)-([0-9]*)-([0-9]*)-([0-9]*).html forums.html?file=kb&mode=moderate&action=$1&page=$2&cat=$3&c=yes&a=$4&start=$5 [L]
RewriteRule ^forums-kb-(approve|delete|unapprove)-article-([0-9]*)-([0-9]*)-([0-9]*).html forums.html?file=kb&mode=moderate&action=$1&a=$2&cat=$3&page=&start=$4 [L]
RewriteRule ^forums-kb-article-([0-9]*)-highlight-([[:punct:]/:\-\'{}()\%._&a-zA-Z0-9+=\ ]*).html forums.html?file=kb&mode=article&k=$1&highlight=$2 [L]
RewriteRule ^forums-kb_search-results.html forums.html?file=kb_search&mode=results [L]
RewriteRule ^forums-kb-cat-([0-9]*)-([0-9]*)-([0-9]*).html forums.html?file=kb&page=$1&mode=cat&cat=$2&start=$3 [L]
RewriteRule ^forums-kb-cat-([0-9]*)-([0-9]*).html forums.html?file=kb&mode=cat&cat=$1&start=$2 [L]
RewriteRule ^forums-kb-cat-([0-9]*).html forums.html?file=kb&mode=cat&cat=$1 [L]
RewriteRule ^forums-kb-(mostpopular|toprated|latest).html forums.html?file=kb&mode=stats&stats=$1 [L]
RewriteRule ^forums-kb-rate-article-([0-9]*).html forums.html?file=kb&mode=rate&cat=&k=$1 [L]
RewriteRule ^forums-kb-(edit|rate)-article-([0-9]*).html forums.html?file=kb&mode=$1&k=$2 [L]
RewriteRule ^forums-kb-edit.html forums.html?file=kb&mode=edit [L]
RewriteRule ^forums-kb-article-([0-9]*)-page-([0-9]*)-([0-9]*).html forums.html?file=kb&mode=article&k=$1&page_num=$2&start=$3 [L]
RewriteRule ^forums-kb-article-([0-9]*).html forums.html?file=kb&mode=article&k=$1 [L]
RewriteRule ^forums-bm-([0-9]*).html forums.html?file=index&bm=$1 [L]
RewriteRule ^forums-aucgroup-([0-9]*).html forums.html?file=auc_listing&id=$1 [L]
RewriteRule ^forums-printtopic-([0-9]*)-([0-9]*).html forums.html?file=printview&t=$1&start=$2 [L]
RewriteRule ^forums-attachments-(ASC|DESC)-([0-9]*)-([0-9]*).html forums.html?file=attachments&mode=downloads&order=$1&f=$2&start=$3 [L]
RewriteRule ^forums-attachments.html forums.html?file=attachments [L]
RewriteRule ^forums-attachments-download-([0-9]*).html forums.html?file=download&id=$1 [L]
RewriteRule ^forums-buddylist-who.html forums.html?file=buddylist&who= [L]
RewriteRule ^ftopict-([0-9]*)-(kicked|unkicked)-([0-9]*)-(kicker|unkicker)-([0-9]*)-([0-9]*)-([0-9]*).html forums.html?file=thread_kicker&thread_tag=$1&$2=$3&$4=$5&mstatus=$6&post_id=$7 [L]
RewriteRule ^ftopic-report-(delete|finished|reportpost|notfinished)-(id|post)-([0-9]*).html forums.html?file=report&mode=$1&$2=$3 [L]
RewriteRule ^forum-printtopic-([0-9]*)-([0-9]*)-([0-9]*)-([0-9]*)-([a-z]*)-([a-z]*)-([0-9]*).html forums.html?file=viewtopic&printertopic=$1&t=$2&start=$3&postdays=$4&postorder=$5&vote=$6&popup=$7 [L]
RewriteRule ^ftopic-([0-9]*)-([0-9]*)-days([0-9]*)-order(desc|asc)-([A-Za-z0-9_-]*).html forums.html?file=viewtopic&t=$1&start=$2&postdays=$3&postorder=$4&highlight=$5 [L]
RewriteRule ^ftopic-([0-9]*)-days([0-9]*)-order(desc|asc)-([0-9]*).html forums.html?file=viewtopic&t=$1&postdays=$2&postorder=$3&start=$4 [L]
RewriteRule ^ftopic-([0-9]*)-([0-9]*).html forums.html?file=viewtopic&t=$1&start=$2 [L]
RewriteRule ^ftopic-([0-9]*)-(previous|next).html forums.html?file=viewtopic&t=$1&view=$2 [L]
RewriteRule ^ftopic-([0-9]*).html forums.html?file=viewtopic&t=$1 [L]
RewriteRule ^ftopic-([0-9]*)-([0-9]*)-(add|remove)buddy.html forums.html?file=viewtopic&p=$1&b=$2&buddy_action=$3 [L]
RewriteRule ^ftopic(t|p)-([0-9]*)-([A-Za-z0-9_-]*).html forums.html?file=viewtopic&$1=$2&highlight=$3 [L]
RewriteRule ^ftopic-([0-9]*)-(watch|unwatch)-([0-9]*).html forums.html?file=viewtopic&t=$1&$2=topic&start=$3 [L]
RewriteRule ^ftopic(t|p)-([0-9]*).html forums.html?file=viewtopic&$1=$2 [L]
RewriteRule ^ftopic(t|p)-([0-9]*).html#([0-9]*) forums.html?file=viewtopic&$1=$2#$3 [L]
RewriteRule ^forums-comments_list-start-([0-9]*).html forums.html?file=comments_list&start=$1 [L]
RewriteRule ^forums-comments_new-([0-9]*).html forums.html?file=comments_new&gid=$1 [L]
RewriteRule ^forums-statarcade-user-([0-9]*)-start-([0-9]*).html forums.html?file=modules&name=Forums&file=statarcade&uid=$1&start=$2 [L]
RewriteRule ^forums-toparcade-start-([0-9]*).html forums.html?file=modules&name=Forums&file=toparcade&uid=&start=$1 [L]
RewriteRule ^forums-arcade-game-([0-9]*).html forums.html?file=modules&name=Forums&file=games&gid=$1 [L]
RewriteRule ^forums-arcade-start-([0-9]*).html forums.html?file=modules&name=Forums&file=arcade&cid=0&start=$1 [L]
RewriteRule ^forums-arcade-(favori|delfavori)-([0-9]*).html forums.html?file=arcade&$1=$2 [L]
RewriteRule ^forums-arcade-search-([0-9]*).html forums.html?file=arcade_search&x=$1 [L]
RewriteRule ^forums-arcade-gamepopup-([0-9]*).html forums.html?file=gamespopup&gid=$1 [L]
RewriteRule ^forums-arcade-cat-([0-9]*).html forums.html?file=arcade&cid=$1 [L]
RewriteRule ^forums-arcade-userstats-([0-9]*).html forums.html?file=statarcade&uid=$1 [L]
RewriteRule ^forums-arcade-scoreboard-([0-9]*).html forums.html?file=scoreboard&gid=$1 [L]
RewriteRule ^forums-arcade-game-([0-9]*).html forums.html?file=games&gid=$1 [L]
RewriteRule ^forums-profileviewuser-([0-9]*)-([0-9]*).html forums.html?file=profile_view_user&u=$1&p=$2 [L]
RewriteRule ^forum-glance-([0-9]*).html forums.html?file=index&glance_recent_offset=$1 [L]
RewriteRule ^forum-(editprofile|register|signature).html forums.html?file=profile&mode=$1 [L]
RewriteRule ^forum-userprofile-([0-9]*)-([0-9]*)-(add|remove)buddy.html forums.html?file=profile&u=$1&mode=viewprofile&b=$2&buddy_action=$3 [L]
RewriteRule ^forum-userprofile-([0-9]*).html forums.html?file=profile&u=$1&mode=viewprofile [L]
RewriteRule ^forum-userprofile-([0-9]*).html profile-.html$1 [L]
RewriteRule ^forum-register-new.html forums.html?file=profile&mode=register&agreed=true [L]
RewriteRule ^forum-register-coppa.html forums.html?file=profile&mode=register&agreed=true&coppa=true [L]
RewriteRule ^forums-posting.html forums.html?file=modules&name=Forums&file=posting [L]
RewriteRule ^forum-faq-bbcode.html forums.html?file=faq&mode=bbcode [L]
RewriteRule ^ftopic-iplookup-([0-9]*)-([0-9]*)-dns-([A-Za-z0-9_\.\-]*).html forums.html?file=modcp&mode=ip&p=$1&t=$2&rdns=$3 [L]
RewriteRule ^ftopic-iplookup-([0-9]*)-([0-9]*).html forums.html?file=modcp&mode=ip&p=$1&t=$2 [L]
RewriteRule ^ftopic-post-([0-9]*).html forums.html?file=posting&t=$1 [L]
RewriteRule ^ftopic-delete-([0-9]*).html forums.html?file=posting&mode=delete&p=$1 [L]
RewriteRule ^ftopic-vote-([0-9]*).html forums.html?file=posting&mode=vote&t=$1 [L]
RewriteRule ^ftopic-new-([0-9]*).html forums.html?file=posting&mode=newtopic&f=$1 [L]
RewriteRule ^ftopic-reply-([0-9]*).html forums.html?file=posting&mode=reply&t=$1 [L]
RewriteRule ^ftopic-edit-([0-9]*).html forums.html?file=posting&mode=editpost&p=$1 [L]
RewriteRule ^ftopic-smilies.html forums.html?file=posting&mode=smilies&popup=1 [L]
RewriteRule ^ftopic-quote-([0-9]*).html forums.html?file=posting&mode=quote&p=$1 [L]
RewriteRule ^forum-posting.html forums.html?file=posting [L]
RewriteRule ^forums-uacp-([0-9]*)-([a-zA-Z0-9_-]*).html forums.html?file=uacp&u=$1&sid=$2 [L]
RewriteRule ^forums-group([0-9]*).html forums.html?file=groupcp&g=$1 [L]
RewriteRule ^forums-recent-([0-9]*)-(last24|lastweek|lastXdays|today|yesterday)-start-([0-9]*).html forums.html?file=recent&amount_days=$1&mode=$2&start=$3 [L]
RewriteRule ^forums-recent-last([0-9]*)days.html forums.html?file=recent&mode=lastXdays&amount_days=$1 [L]
RewriteRule ^forums-recent-(last24|lastweek|today|yesterday).html forums.html?file=recent&mode=$1 [L]
RewriteRule ^fsearch-author-([a-zA-Z0-9_-]*)-showresults.html search-.html$1&showresults=topics [L]
RewriteRule ^fsearch-author-([a-zA-Z0-9_-]*).html search-.html$1 [L]
RewriteRule ^fsearch-([0-9]*)-([0-9]*).html forums.html?file=search&search_id=$1&start=$2 [L]
RewriteRule ^fsearch-(unanswered|egosearch|newposts|startedtopics).html forums.html?file=search&search_id=$1 [L]
RewriteRule ^fsearch-results.html forums.html?file=search&mode=results [L]
RewriteRule ^forums-([^index][a-zA-Z0-9_-]*).html forums.html?file=$1 [L]
RewriteRule ^forum-c([0-9]*).html forums.html?file=index&c=$1 [L]
RewriteRule ^forum-([0-9]*).html forums.html?file=viewforum&f=$1 [L]
RewriteRule ^forum-mark.html forums.html?file=index&mark=forums [L]
RewriteRule ^forums.html forums.html?file=index [L]
RewriteRule ^forum-viewonline.html forums.html?file=viewonline [L]
RewriteRule ^forum-([0-9]*)-days([0-9]*)-([0-9]*).html forums.html?file=viewforum&f=$1&topicdays=$2&start=$3 [L]
RewriteRule ^forum-([0-9]*)-([0-9]*).html forums.html?file=viewforum&f=$1&start=$2 [L]
RewriteRule ^forum-([0-9]*)-mark.html forums.html?file=viewforum&f=$1&mark=topics [L]
RewriteRule ^forum-([0-9]*).html forums.html?file=viewforum&f=$1 [L]
RewriteRule ^forums.html forums.html [L]

# ForumNews
RewriteRule ^ftopic-reply-([0-9]*).html forums.html?file=posting&mode=reply&t=$1 [L]
RewriteRule ^forumnews-print-([0-9]*).html modules.php?name=ForumNews&file=print&id=$1 [L]
RewriteRule ^forumnews-page-([0-9]*)-news_id-([0-9]*).html modules.php?name=ForumNews&page=$1&news_id=$2 [L]
RewriteRule ^forumnews-page-([0-9]*).html modules.php?name=ForumNews&page=$1 [L]
RewriteRule ^forumnews-id-([0-9]*).html modules.php?name=ForumNews&id=$1 [L]
RewriteRule ^forumnews-news_id-([0-9]*).html modules.php?name=ForumNews&news_id=$1 [L]
RewriteRule ^forumnews-printpage-([0-9]*).html modules.php?name=ForumNews&file=print&id=$1 [L]
RewriteRule ^forumnews.html modules.php?name=ForumNews [L]

# Forums_Archive
RewriteRule ^forums_archive-([0-9]*)-([0-9]*)-([a-zA-Z]*).* forums.html_Archive&sa=show_month&year=$1&month=$2&month_l=$3 [L]
RewriteRule ^forums_archive-showall.html forums.html_Archive&sa=show_all [L]
RewriteRule ^forums_archive.html forums.html_Archive [L]

# ForumTopics
RewriteRule ^forumtopics.html modules.php?name=ForumTopics [L]

# Groups
RewriteRule ^groups.html groups.html [L]

# Hosting
# RewriteRule ^hosting-(hinnakiri|klienditugi|kontakt|leping|liitumine|paketid|tutvustus).html modules.php?name=Hosting&op=$1 [L]
# RewriteRule ^hosting.html modules.php?name=Hosting [L]

# Mailing_List
RewriteRule ^mailinglist-action.html modules.php?name=Mailing_List&op=MLAction [L]
RewriteRule ^mailinglist.html modules.php?name=Mailing_List [L]

# Members List
RewriteRule ^members.html members.html [L]

# MS_Analysis
RewriteRule ^analysis-([a-zA-Z0-9_-]*)-id([0-9]*)-s([0-9]*)-o([0-9]*)-([a-zA-Z0-9_-]*).html modules.php?name=MS_Analysis&file=index&op=$1&id=$2&screen=$3&overview=$4&sortby=$5 [L]
# RewriteRule ^analysis-s([0-9]*)-o([0-9]*)-([a-zA-Z0-9_-]*).html modules.php?name=MS_Analysis&file=index&op=MSAnalysisGeneral&screen=$1&overview=$2&sortby=$3 [L]
RewriteRule ^analysis-s([0-9]*)-o([0-9]*)-([a-zA-Z0-9_-]*).html modules.php?name=MS_Analysis&file=index&op=MSAnalysisGeneral&screen=$1&overview=$2&sortby= [L]
RewriteRule ^analysis-s([0-9]*)-o([0-9]*).html modules.php?name=MS_Analysis&file=index&op=MSAnalysisGeneral&screen=$1&overview=$2&sortby= [L]
RewriteRule ^analysis-s([0-9]*)-o([0-9]*).html modules.php?name=MS_Analysis&file=index&op=MSAnalysisGeneral&screen=$1&overview=$2 [L]
RewriteRule ^analysis-s([0-9]*).html modules.php?name=MS_Analysis&file=index&op=MSAnalysisGeneral&screen=$1 [L]
RewriteRule ^analysis-o([0-9]*)-s([0-9]*).html modules.php?name=MS_Analysis&file=index&op=MSAnalysisGeneral&overview=$1&screen=$2 [L]
RewriteRule ^analysis-stats-([0-9]*)-([0-9]*)-([0-9]*).html modules.php?name=MS_Analysis&file=visits&op=MSAnalysisDailyStats&year=$1&month=$2&date=$3 [L]
RewriteRule ^analysis-stats-([0-9]*)-([0-9]*).html modules.php?name=MS_Analysis&file=visits&op=MSAnalysisMonthlyStats&year=$1&month=$2 [L]
RewriteRule ^analysis-stats-([0-9]*).html modules.php?name=MS_Analysis&file=visits&op=MSAnalysisYearlyStats&year=$1 [L]
RewriteRule ^analysis-stats.html modules.php?name=MS_Analysis&file=visits&op=MSAnalysisStats [L]
RewriteRule ^analysis-admin-([a-zA-Z0-9_-]*)-([a-zA-Z0-9_-]*)-([0-9]*)-([0-9]*).html modules.php?name=MS_Analysis&file=msanalysisadminfunc&op=$1&table=$2&sort_on=$3&sort_dir=$4 [L]
RewriteRule ^analysis-admin-([a-zA-Z0-9_-]*)-([[:punct:]/:\-\'(){}.&=_a-zA-Z0-9\ ]*).html modules.php?name=MS_Analysis&file=msanalysisadminfunc&op=$1&id=$2 [L]
RewriteRule ^analysis-admin-([a-zA-Z0-9_-]*).html modules.php?name=MS_Analysis&file=msanalysisadminfunc&op=$1 [L]
RewriteRule ^analysis-pruning.html modules.php?name=MS_Analysis&file=pruning&op=MSAnalysisPruning [L]
RewriteRule ^analysis-sqlbackup.txt modules.php?name=MS_Analysis&file=backup&op=MSAnalysisDump [L]
RewriteRule ^analysis-user-([a-zA-Z0-9_-]*).html modules.php?name=MS_Analysis&file=scripts&targetscript=userinfo&op=MSAuserinfo&suser=$1 [L]
RewriteRule ^analysis.html modules.php?name=MS_Analysis&file=index [L]

# PHP-Nuke_Tools
RewriteRule ^phpnuketools.html modules.php?name=PHP-Nuke_Tools [L]

# PHP-Nuke_HOWTO
RewriteRule ^phpnukehowto-([a-zA-Z0-9_-]*).html modules.php?name=PHP-Nuke_HOWTO&page=$1 [L]
RewriteRule ^phpnukehowto.html modules.php?name=PHP-Nuke_HOWTO [L]

# Private Messages
RewriteRule ^messages-([0-9]*)-read-(sentbox|inbox|savebox|outbox)-([0-9]*)-(add|remove)buddy.html modules.php?name=Private_Messages&file=index&p=$1&mode=read&folder=$2&b=$3&buddy_action=$4 [L]
RewriteRule ^messages-(add|remove)buddy-([0-9]*).html modules.php?name=Private_Messages&file=index&buddy_action=$1&b=$2 [L]
RewriteRule ^messages-(sentbox|inbox|savebox|outbox)-read-([0-9]*).html modules.php?name=Private_Messages&file=index&folder=$1&mode=read&p=$2 [L]
RewriteRule ^messages-(edit|quote|read|reply)-([0-9]*).html modules.php?name=Private_Messages&file=index&mode=$1&p=$2 [L]
RewriteRule ^messages-(sentbox|inbox|savebox|outbox).html modules.php?name=Private_Messages&file=index&folder=$1 [L]
RewriteRule ^messages-popup-([0-9]*).html modules.php?name=Private_Messages&popup=$1&mode=newpm [L]
RewriteRule ^messages-post-([0-9]*).html messages-post-.html$1 [L]
RewriteRule ^messages-post-([0-9]*).html messages-.html$1 [L]
RewriteRule ^messages-new.html modules.php?name=Private_Messages&file=index&mode=post [L]
RewriteRule ^messages.html modules.php?name=Private_Messages&file=index [L]
RewriteRule ^messages.html messages.html [L]

# Recommend Us
RewriteRule ^recommend.html recommend.html [L]

# Reviews
# RewriteRule ^reviews-new.html reviews.html?rop=write_review [L]
# RewriteRule ^reviews-preview.html reviews.html?rop=preview_review [L]
# RewriteRule ^reviews-([0-9]*)-page&
 
Susann
Moderator



Joined: Dec 19, 2004
Posts: 3191
Location: Germany:Moderator German NukeSentinel Support

PostPosted: Sun Jun 19, 2005 8:10 am Reply with quote

libwww-perl
is in the Harvester Blocker.
User-Agent: W3C_Validator/1.305.2.148 libwww-perl/5.803
Reason: Abuse-Harvest
String: libwww-perl

You have to turn off the Harvester Blocker to validate your site and don`t forget to delete the blocked ip. But why is this redirect ?
 
View user's profile Send private message
SlashDot







PostPosted: Sun Jun 19, 2005 8:36 am Reply with quote

ahh thank you.. i will do that now. and also remove the blocked ip.
and that redirect is done by senteniel.
i think when i turn the harvester blocker off that should turn off itself as well.
i will post with the result
thank you.
 
SlashDot







PostPosted: Sun Jun 19, 2005 8:46 am Reply with quote

That did the trick. turned off harvester and now things are working. Thank you.
But i am wondering how **SAFE** it is to turn off the hervester?
i see that this site is and can be validated as well.
So does this mean in this site hervester blocking is off to???
 
Susann







PostPosted: Sun Jun 19, 2005 8:48 am Reply with quote

The redirect is strange. I visit the redirect site it´s sh*t. Rolling Eyes

Now, activate your harvester blocker immediately !

See also:
[ Only registered users can see links on this board! Get registered or login! ]
 
SlashDot







PostPosted: Sun Jun 19, 2005 10:03 am Reply with quote

helo. Now the redirect is from here:
Harvest List....
Forward to: My one is set to be: [ Only registered users can see links on this board! Get registered or login! ]
thats why that page is shown
but now i am back where i started. So without turning the hervster off there is no way to get around this??
 
Susann







PostPosted: Sun Jun 19, 2005 11:15 am Reply with quote

You can also validate by file upload.
libwwwperl is often used also from:

watson.addy.com)libwww-perl/5.803

and some other validators and services.
To turn the harvester blocker off is the way I validate my site.
 
64bitguy
The Mouse Is Extension Of Arm



Joined: Mar 06, 2004
Posts: 1164

PostPosted: Sun Jun 19, 2005 12:25 pm Reply with quote

Actually, you don't have to disable Harvester blocking, you simply need to remove the libwww-perl harvester.

Also, you need to comment this out of your .htaccess file:
Code:
# prevent perl user agent (most often used by santy)

RewriteCond %{HTTP_USER_AGENT} ^lwp.* [NC]
RewriteRule ^.*$ http://127.0.0.1/ [R,L]

_________________
Steph Benoit
100% Section 508 and W3C HTML5 and CSS Compliant (Truly) Code, because I love compliance. 
View user's profile Send private message
Susann







PostPosted: Sun Jun 19, 2005 6:22 pm Reply with quote

To disable the Harvester Blocker is a high risk, but I need only a few minutes for validation so I prefer the other way.
 
SlashDot







PostPosted: Mon Jun 20, 2005 4:10 am Reply with quote

This for both of ya guys.
after disabeling the lib perl blocker. now this is the outcome. [ Only registered users can see links on this board! Get registered or login! ]

Now is there any standard way to trace the errors that appears there? or do i just have to guess where the errors are occuring and then fix them?

This for 64 bit.
I have got a few questions.
1. my sites running on pnp 7.6. is it html 4.1 compliance?
2. if pnp 7.6 is NOT html 4.1 compliance is there any way to make the site TOTALLY html 4.1 compliant?
3. i saw that u were making 7.6.1 of pnp html 4.1 compliant. is the project still going on? or have you guys moved on to 7.7?

These information would be realy helpful.
Thank you for the help. much appretiated.
cheers!
 
64bitguy







PostPosted: Mon Jun 20, 2005 7:32 am Reply with quote

SlashDot wrote:
Now is there any standard way to trace the errors that appears there? or do i just have to guess where the errors are occuring and then fix them?


I should mention that I'm still seeing it as if the blocker is still enabled.

By the way, the quote above:

Quote:
To disable the Harvester Blocker is a high risk, but I need only a few minutes for validation so I prefer the other way.


I wanted to mention that there is nothing High Risk about disabling the harvester blocker. The Harvester function does not protect your domain against attacks, but rather scanning. There is no "Risk" in scanning.

I have completely deleted that particular harvester (from the list of harvesters on the Harvester Proection screen) for the reasons that my domain is frequently scanned by validation functions as well as users that are looking to compare a properly formatted source-code to whatever they have.

Next, regarding how to fix your code:

The errors can be displayed with the source-code. This will show you specifically where the errors are and the message usually tell you what the problem is. If you can't find the answer, do a google search by the term in question and add the word "Compliant" or "Compliance" after it.


SlashDot wrote:
This for 64 bit.
I have got a few questions.
1. my sites running on pnp 7.6. is it html 4.1 compliance?
2. if pnp 7.6 is NOT html 4.1 compliance is there any way to make the site TOTALLY html 4.1 compliant?
3. i saw that u were making 7.6.1 of pnp html 4.1 compliant. is the project still going on? or have you guys moved on to 7.7?


Well, this is off-topic, but anyway....
1) No.
2) Probably, but it would take even an expert weeks to accomplish, and that is considering that they are doing it full time. The biggest problem after the baseline code is the Platinum Themes which need a lot of work too.
3) I began a complete rewrite of 7.6.1/7.6.2; however, when the techgfx.com domain was ignored by TechGFX for over 5 months and everyone was waiting anywhere between 10 and 30 minutes for any single page to load at that domain... and then after that when the domain was in a complete outage for over a month, I officially withdrew from participation in Platinum evolution and development, even though I had re-written about 60% of the code to 100% compliance at that point.

Quite frankly, the whole TechGFX experience left a very bad taste in my mouth and I actually regret doing so much for them, only to have them ignore the user community they promised not to abandon; which, in the end, they did.

To this date, the domain is still not right and as far as I can tell, the new version of Platinum has not been evolved at all since I left. As far as I can tell, The Platinum Projects (past, present and future) are completely dead.

I want to comment that even if there weren't, I wouldn't have anything to do with them given the lack of committment and dedication to their own projects as well as the user community they have left out in the cold.

Do a search here by "Platinum" or "TechGFX" and you'll find some interesting reads.

Steph
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> NukeSentinel(tm)

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
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©