Reseller Hosting, Shared Hosting, Dedicated Hosting by Vortech Inc.

Go Back   Reseller Hosting, Shared Hosting, Dedicated Hosting by Vortech Inc. > >>Network Information & News and Announcements > News and Announcements
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

News and Announcements This is where you can read announcements regarding Vortech Inc.

Reply
 
Thread Tools Display Modes
  #46  
Old 06-17-2005, 02:55 PM
xwisdom xwisdom is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
Windows Plans

Hi,

What about windows plans? Will this change also affect windows servers?

__
xWisdom
Reply With Quote
  #47  
Old 06-17-2005, 05:59 PM
djlightning djlightning is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
Quote:
Originally Posted by ixie02
A little off the subject, but is their something we can scan for in the code to make sure that apps we are considering using/installing or are using don't require that 'allow_url_fopen' be enabled?
If using Dreamweaver you can search for it Using the Find (CTRL + F) function.
If you have shell access on a Linux/Unix Server you can use GREP to find it. Read the GREP MAN Pages on how to do that.

On a side note.... an advance warning about this would have been nice to save face with customers.
Reply With Quote
  #48  
Old 06-17-2005, 06:12 PM
djlightning djlightning is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
Found this little script, may help for a quick find.
Code:
<html> <head><title>Site Grep Search-engine</title></head> <body> <p> <form action="<?=$PHP_SELF;?>" method="post"> <input type="text" name="searchstr" value="<?php echo "$searchstr"; ?>" size="20" maxlength="30"/> <input type="submit" value="Search!"/> </form> </p> <?php if ( ! empty( $searchstr ) ) { // empty() is used to check if we've any search string // if we do, call grep and display the results. echo "<hr/>\n"; // call grep with case-insensitive search mode on all files $cmdstr = "grep -i $searchstr *"; $fp = popen( $cmdstr, "r" ); // open the output of command as a pipe $myresult = array(); // to hold my search results while( $buffer = fgetss ( $fp, 4096 ) ) { // grep returns in the format // filename: line // So, we use split() to split the data list( $fname, $fline ) = split( ":", $buffer, 2 ); // we take only the first hit per file if ( !defined( $myresult[$fname] ) ) $myresult[$fname] = $fline; } // we have results in a hash. lets walk through it & print it if ( count( $myresult ) ) { echo "<ol>\n"; while( list( $fname, $fline ) = each( $myresult ) ) echo "<li><a href=\"$fname\">$fname</a> : $fline </li>\n"; echo "</ol>\n"; } else { // no hits echo "Sorry. Search on <strong>$searchstr</strong>returned no results.<br/>\n"; } pclose( $fp ); } ?> </body> </html>
Reply With Quote
  #49  
Old 06-17-2005, 06:55 PM
admin's Avatar
admin admin is offline
Vortech Inc. Owner
Owner
 
Location: Orlando FL
Send a message via ICQ to admin
This change is unix only...
__________________
Brad Pugh
http://www.vortechhosting.com
------

Local System/Network Monitor
http://nagios.hsphere.cc/
Login:guest Pass:guest
XML FEED http://nagios.hsphere.cc/feed.xml
------

My Other Life:
Reply With Quote
  #50  
Old 06-17-2005, 11:06 PM
mresell's Avatar
mresell mresell is offline
ePerson
Vortech Inc. Customer
 
Location: Around the \bin
Yeah this sucks, but if it is that big a security problem...it needs immediate attention. In this case there are options. The SSH access being turned off with no options really was much worse. It is a security issue in the changing internet...all of which get more important everyday. Play up the immediate response to security issues as a plus. As a reseller you didn't create the security problem, but you can sure be proactive about it.
Reply With Quote
  #51  
Old 06-18-2005, 01:25 PM
Ram_Argid Ram_Argid is offline
Vortech Inc. Customer
Vortech Inc. Customer
 
I support this change. I too would have liked a little more notice, but hey when you're being nailed you gotta do something. I guarantee you all would be screaming MUCH louder if your sites had been defaced by some miscreant.

Quote:
Originally Posted by admin
Might want to take that up with php, we did not make php and can't control how functions suchs as fopen work other than the options they give us. They offer us NO options to secure it.

It has been. How about upgrading to PHP 5. I know there are some issues with it, but you may want to consider bringing it up on a box and start integrating it for those who want to use it.

I for one would love to start developing for it on a couple projects right now and I intend to continue with Vortech for as long as I can see at this point.
Reply With Quote
  #52  
Old 06-19-2005, 01:11 AM
admin's Avatar
admin admin is offline
Vortech Inc. Owner
Owner
 
Location: Orlando FL
Send a message via ICQ to admin
I think we will wait a bit longer for php5 but we have been testing it.

It still has some issues, we int he works for a new way for a bit more secure php as well on the unix side.
__________________
Brad Pugh
http://www.vortechhosting.com
------

Local System/Network Monitor
http://nagios.hsphere.cc/
Login:guest Pass:guest
XML FEED http://nagios.hsphere.cc/feed.xml
------

My Other Life:
Reply With Quote
  #53  
Old 06-19-2005, 11:01 AM
daverozelle's Avatar
daverozelle daverozelle is offline
Indi-Contractor by Force
Vortech Inc. Customer
 
Location: Western, PA - USA
Quote:
Originally Posted by sheptech
FYI I had concerns about this affecting the downloads plugin of e107 - so far it does not as near as I can tell.

In case anyone cares, 3rd party apps I'm using that survive the change are:
e107 v0.616, v0.617 (includes core newsfeeds, downloads)
e107 plugins: Coppermine (current ver)
ZenCart v1.1.4d (oops!, need to update)

still looking into e107 plugin SimpleCart
fyi I don't use electronic delivery for anything in the carts.

I have been using e107 for years on a few sites. Everything I have is still up and running except the custom XML feed pages I had built. I will have to totally recode them now. Unfotunately for me, those handful of pages are the core product I provided and why I have those sites at all.
__________________
-daverozelle

I drive fast, I turn fast, I do everything fast. I even breakfast. I tend to confuse people with my sudden changes of heart. Sometimes I even confuse myself, which tends to cause problems.
Reply With Quote
  #54  
Old 06-21-2005, 07:51 PM
ngcomputing ngcomputing is offline
Registered User
Junior Member
 
Location: Florida, USA
Question

Why not allow url fopens only above the document root? I really only use the function in conjunction (no pun intended) with a cron tab to fetch raw data from other sites in order to parse and merge data into a new html output file.

An example of what I do with this is fetch the doppler radar page from weather.com then fetch the 10 day outlook page from weather.com and merge them into a single output file. (of course, I do keep the weather.com logo and link back to their site - to respect legal issues using the content according to their EULA).

---

ngcomputing

Last edited by ngcomputing : 06-21-2005 at 07:54 PM.
Reply With Quote
  #55  
Old 06-21-2005, 08:00 PM
ngcomputing ngcomputing is offline
Registered User
Junior Member
 
Location: Florida, USA
Rather than dealing with the hassle of curl and a work around, I figure it would be just easier to set up one of those "host your site for free accounts", use a remote fopen to pull the data from there, then have a cron to push the data over to a folder on your hsphere server.
Reply With Quote
  #56  
Old 06-21-2005, 08:04 PM
ngcomputing ngcomputing is offline
Registered User
Junior Member
 
Location: Florida, USA
Quote:
Originally Posted by daverozelle
I have been using e107 for years on a few sites. Everything I have is still up and running except the custom XML feed pages I had built. I will have to totally recode them now. Unfotunately for me, those handful of pages are the core product I provided and why I have those sites at all.


Just thank God for OOP in PHP, this is where good planning can let you just redefine the class to fix an issue like this in a snap. (well almost)
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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
Forum Jump


All times are GMT -5. The time now is 05:56 AM.


Powered by vBulletin Version 3.5.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Vortech Inc. ©2005
Page generated in 0.65078 seconds with 26 queries
[Output: 90.70 Kb. compressed to 83.46 Kb. by saving 7.23 Kb. (7.98%)]