General Chat
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsGeneralGeneral Chat

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 Codewalkers Forums Sponsor:
  #1  
Old January 21st, 2004, 09:12 PM
starshot starshot is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: usa
Posts: 3 starshot User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via AIM to starshot
Source Code Protectors

Could anyone tell me what the point of source code protectors/obfuscators/whatever is? I may be missing something, but it seems to me like the most pointless thing in the world.

After all, how is anyone else gonna see your source? If somebody manages to hack you and view your source that way, your problems go way deeper than source.

So I'm just curious why there seems to be the sudden proliferation of these programs, even advertised on this site! Anybody?

Reply With Quote
  #2  
Old January 21st, 2004, 09:15 PM
Andrew's Avatar
Andrew Andrew is offline
Moderator
Click here for more information
 
Join Date: Apr 2007
Location: United Kingdom
Posts: 1,948 Andrew User rank is Private First Class (20 - 50 Reputation Level)Andrew User rank is Private First Class (20 - 50 Reputation Level)  Folding Points: 2429 Folding Title: Novice Folder
Time spent in forums: 4 Days 6 h 36 m 39 sec
Reputation Power: 4
RE: Source Code Protectors

to view php source you can use

php Code:
Original - php Code
  1.  
  2. show_source("http://site.com/site.php");



So source protector is useful.

Reply With Quote
  #3  
Old January 21st, 2004, 11:27 PM
honcho's Avatar
honcho honcho is offline
Contributing User
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Cape Cod
Posts: 1,347 honcho User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 52 m 2 sec
Reputation Power: 4
RE: Source Code Protectors

That better not work. Accessing a file with http:// means it's going through the web server, so all the PHP code will be processed. show_source() only works on locally accessible files.

Reply With Quote
  #4  
Old January 22nd, 2004, 12:59 AM
Nicky's Avatar
Nicky Nicky is offline
Contributing User
Codewalkers Novice (500 - 999 posts)
 
Join Date: Apr 2007
Location: Neverland
Posts: 606 Nicky User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 6 m 53 sec
Reputation Power: 3
RE: Source Code Protectors

ditto

Reply With Quote
  #5  
Old January 22nd, 2004, 01:16 AM
Matt Matt is offline
Contributing User
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 12 m 16 sec
Reputation Power: 7
RE: Source Code Protectors

1) They allow you to distribute your program (sell it) without giving your source away....

2) Expire your scripts on a certain date and render them useless.


Reply With Quote
  #6  
Old January 22nd, 2004, 12:18 PM
honcho's Avatar
honcho honcho is offline
Contributing User
Codewalkers Beginner (1000 - 1499 posts)
 
Join Date: Apr 2007
Location: Cape Cod
Posts: 1,347 honcho User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 52 m 2 sec
Reputation Power: 4
RE: RE: Source Code Protectors

Quote:
1) They allow you to distribute your program (sell it) without giving your source away....


That's really just security through obscurity though. Maybe better than nothing, but don't have too much confidence in it.

Reply With Quote
  #7  
Old January 22nd, 2004, 12:24 PM
Matt Matt is offline
Contributing User
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 12 m 16 sec
Reputation Power: 7
RE: Source Code Protectors

I don't know...I have a fair bit of confidence in something like Zend's Encoder:

http://www.zend.com/store/products/zend-encoder.php

There are many products out there that I don't have confidence in however...

Reply With Quote
  #8  
Old January 22nd, 2004, 07:33 PM
starshot starshot is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: usa
Posts: 3 starshot User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via AIM to starshot
RE: Source Code Protectors

dang, kendo, good thing your wrong, else alot of web sites would be goin down...

Reply With Quote
  #9  
Old January 22nd, 2004, 07:54 PM
Andrew's Avatar
Andrew Andrew is offline
Moderator
Click here for more information
 
Join Date: Apr 2007
Location: United Kingdom
Posts: 1,948 Andrew User rank is Private First Class (20 - 50 Reputation Level)Andrew User rank is Private First Class (20 - 50 Reputation Level)  Folding Points: 2429 Folding Title: Novice Folder
Time spent in forums: 4 Days 6 h 36 m 39 sec
Reputation Power: 4
RE: Source Code Protectors

well i know now i made a mistake. By the way there is a peice of code that claims to be able to view php code from a site. Its in the codewalkers php code system. But of course nothing is impregnable(source code protector wise). Like matt said using zend encoder which seems to be one of the best.

Reply With Quote
  #10  
Old January 22nd, 2004, 07:55 PM
Andrew's Avatar
Andrew Andrew is offline
Moderator
Click here for more information
 
Join Date: Apr 2007
Location: United Kingdom
Posts: 1,948 Andrew User rank is Private First Class (20 - 50 Reputation Level)Andrew User rank is Private First Class (20 - 50 Reputation Level)  Folding Points: 2429 Folding Title: Novice Folder
Time spent in forums: 4 Days 6 h 36 m 39 sec
Reputation Power: 4
RE: Source Code Protectors

woops that came over wrong basically i was saying the zend encoder seems to be the best way at the moment to protect your source code.

Reply With Quote
  #11  
Old January 23rd, 2004, 12:03 AM
starshot starshot is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: usa
Posts: 3 starshot User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via AIM to starshot
RE: Source Code Protectors

i think i found the code you were talking about. the authors grammar needs work but im pretty sure he means you can view html from other sites, and php/sql from your own site. (thats what the code does, anyway)

Reply With Quote
  #12  
Old May 13th, 2005, 04:16 AM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
RE: RE: Source Code Protectors

Quote:
1) They allow you to distribute your program (sell it) without giving your source away....

2) Expire your scripts on a certain date and render them useless.



3) Lock to certain IP, MAC address, web domain ...

BTW, there are online ones:

Encoder: http://www.byterun.com/free-php-encoder.php
Obfuscator: http://scripts.freshstartup.biz/demo/obfuscate.php

Reply With Quote
  #13  
Old March 5th, 2006, 03:32 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 25
RE: Source Code Protectors

PHTML Encoder is useful for source code protection.
Home page: http://www.rssoftlab.com/phpenc.php
You can use self-decodable scripts, you don't needs chages in PHP installation in such case.

Reply With Quote
Reply

Viewing: Codewalkers ForumsGeneralGeneral Chat > Source Code Protectors


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




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

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




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 12 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek