Apache Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsSystem AdministrationApache Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now!
  #1  
Old January 31st, 2001, 08:58 AM
waguila waguila is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2001
Location: NY
Posts: 1 waguila User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question

Hi, anyone have the answer to this:

If I enter the location and name of a script in the location bar of the browser the script runs as normal.

I have tried
<Location /cgi-bin/scripname.pl>
Order Allow,Deny
Allow from somepath/somehtmlpage
</Location>

In vain the above prevents the script from running at all but I want the script to be executed by a link on a page and only by that link on an html page.

Reply With Quote
  #2  
Old January 31st, 2001, 03:45 PM
freebsd freebsd is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2001
Posts: 5 freebsd User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
>>f I enter the location and name of a script in the location bar of the browser

This is GET method.

If your script accepts just POST method, the easiest way to solve your problem is to:

<Location /cgi-bin/scripname.pl>
<Limit GET>
Order deny,allow
Deny from all
</Limit>
<LimitExcept POST>
Order allow,deny
Allow from all
</LimitExcept>
</Location>

You can't set Allow from to path.


It it must be GET method:

SetEnvIf Referer "^http://www.domain.com/somepath/somehtmlpage.html$" ok
<Location /cgi-bin/scripname.pl>
Order Deny,Allow
Deny from all
Allow from env=ok
</Location>

Reply With Quote
Reply

Viewing: Dev Shed ForumsSystem AdministrationApache Development > How to prohibit direct cgi excution!?


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway