RE: Source-Code-Protection

2002-10-31 Thread FARRINGTON, RYAN
Title: RE: Source-Code-Protection





Harald,
 Perl2exe http://www.indigostar.com is shareware but you can always use it to make executables... I use it for the same reason here at the office and I make sure I am the only person with access to the source... 

-Original Message-
From: Harald Wopenka [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 31, 2002 7:01 AM
To: Morbus Iff; [EMAIL PROTECTED]
Subject: AW: Source-Code-Protection



Jep, I know. I like Open-Source. But sometimes there are some people
grabbing your work and telling people its theirs... I cases like that some
protection comes in very handy...


-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]Im Auftrag von
Morbus Iff
Gesendet: Donnerstag, 31. Oktober 2002 13:54
An: Harald Wopenka; [EMAIL PROTECTED]
Betreff: Re: Source-Code-Protection



I think its a common problem with Perlprogs that u cant hide your


That's a feature. Working around this feature will earn you scorn.


--
Morbus Iff ( now in fun bath toy! )
Culture: http://www.disobey.com/ and http://www.gamegrene.com/
Tech: http://www.oreillynet.com/pub/au/779 - articles and weblog
icq: 2927491 / aim: akaMorbus / yahoo: morbus_iff / jabber.org: morbus
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs





RE: Source-Code-Protection

2002-10-31 Thread Morbus Iff


Perl2exe http://www.indigostar.comhttp://www.indigostar.com is shareware 
but you can always use it to make executables... I use it for the same 
reason here at the office and I make sure I am the only person with access 
to the source...

That won't help you if people get your .exe. See:

 http://www.der-keiler.de/Mailing-Lists/Securiteam/2002-01/0105.html



--
Morbus Iff ( i'm the droid you're looking for )
Culture: http://www.disobey.com/ and http://www.gamegrene.com/
Please Me: http://www.amazon.com/exec/obidos/wishlist/25USVJDH68554
icq: 2927491 / aim: akaMorbus / yahoo: morbus_iff / jabber.org: morbus

___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



RE: Source-Code-Protection

2002-10-31 Thread Peter Eisengrein
Title: RE: Source-Code-Protection





you could always write your apps as a CGI on a web server that only you have access to. You could also write client/server apps (using IO::Socket perhaps) -- of course your rogue code thieves would still have access to the client-side code... CGI would probably be my solution.



 -Original Message-
 From: Harald Wopenka [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, October 31, 2002 07:46
 To: Perl-Win32-Users
 Subject: Source-Code-Protection
 
 
 I think its a common problem with Perlprogs that u cant hide your
 sourcecode. I heard about something like pl2exe but I dont 
 think it works
 and I even more dont think its free. A couple of month ago I 
 saw a nice
 protection:
 
 #!/usr/bin/perl
 use filter::
 
 I cant remember what came after filter or if it looked like 
 that, but this
 was all I saw.
 
 Does anybody know how to create something like that? Is it 
 safe? Or is there
 a much better way to hide my sources from unwanted modifiers 
 and spectators?
 
 Greetings,
 Harry
 
 ___
 Perl-Win32-Users mailing list
 [EMAIL PROTECTED]
 To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
 





RE: Source-Code-Protection

2002-10-31 Thread Tillman, James
Title: RE: Source-Code-Protection



True. Or one could use Soap::Lite for selected portions of thecode, 
and have the main perl script connect to the SOAP server to run the "meaty 
bits".

Still, 
this is a lot of trouble. I'm pretty much with Morbus on this one. 
License your code properly and you're legally protected. Take a look at 
the GPL.

Or, if 
you're that hell-bent on hiding your code, figure out what parts of it are truly 
worth hiding, learn C, and write some Perl extensions that your pure perl can 
use. This is not what perl's about, folks.

jpt

  -Original Message-From: Peter Eisengrein 
  [mailto:[EMAIL PROTECTED]]Sent: Thursday, October 31, 2002 
  9:14 AMTo: 'Harald Wopenka'; Perl-Win32-UsersSubject: 
  RE: Source-Code-Protection
  you could always write your apps as a CGI on a web server that 
  only you have access to. You could also write client/server apps (using 
  IO::Socket perhaps) -- of course your rogue code thieves would still have 
  access to the client-side code... CGI would probably be my 
  solution.
   -Original Message-  
  From: Harald Wopenka [mailto:[EMAIL PROTECTED]]  Sent: Thursday, October 31, 2002 07:46  To: Perl-Win32-Users  Subject: 
  Source-Code-ProtectionI think its a common problem with 
  Perlprogs that u cant hide your  sourcecode. I 
  heard about something like pl2exe but I dont  
  think it works  and I even more dont think its 
  free. A couple of month ago I  saw a nice 
   protection:  
   #!/usr/bin/perl  use 
  filter::   I cant 
  remember what came after "filter" or if it looked like  that, but this  was all I saw. 
Does anybody know how to 
  create something like that? Is it  safe? Or is 
  there  a much better way to hide my sources from 
  unwanted modifiers  and spectators? 
Greetings,  Harry   
  ___  
  Perl-Win32-Users mailing list  
  [EMAIL PROTECTED]  To 
  unsubscribe: http://listserv.ActiveState.com/mailman/mysubs 
   


Re: Source-Code-Protection

2002-10-31 Thread Carl Jolley
On Thu, 31 Oct 2002, Harald Wopenka wrote:

 I think its a common problem with Perlprogs that u cant hide your
 sourcecode. I heard about something like pl2exe but I dont think it works
 and I even more dont think its free. A couple of month ago I saw a nice
 protection:

 #!/usr/bin/perl
 use filter::

 I cant remember what came after filter or if it looked like that, but this
 was all I saw.

 Does anybody know how to create something like that? Is it safe? Or is there
 a much better way to hide my sources from unwanted modifiers and spectators?


To see the info again, try perldoc perlfilter.

 [EMAIL PROTECTED] Carl Jolley
 All opinions are my own and not necessarily those of my employer 

___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



Re: Source-Code-Protection

2002-10-31 Thread Matthew Greenberg
You can protect your code by creating an exe using perlapp. You can get an
evaluation license for free (valid for 3 weeks).

Matthew Greenberg

- Original Message -
From: Harald Wopenka [EMAIL PROTECTED]
To: Perl-Win32-Users [EMAIL PROTECTED]
Sent: Thursday, October 31, 2002 4:46 AM
Subject: Source-Code-Protection


 I think its a common problem with Perlprogs that u cant hide your
 sourcecode. I heard about something like pl2exe but I dont think it works
 and I even more dont think its free. A couple of month ago I saw a nice
 protection:

 #!/usr/bin/perl
 use filter::

 I cant remember what came after filter or if it looked like that, but
this
 was all I saw.

 Does anybody know how to create something like that? Is it safe? Or is
there
 a much better way to hide my sources from unwanted modifiers and
spectators?

 Greetings,
 Harry

 ___
 Perl-Win32-Users mailing list
 [EMAIL PROTECTED]
 To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



Re: Source-Code-Protection

2002-10-31 Thread Mike Kalinovich
Just some thoughts from the administrator point of view here;

Any scripts that we write during company time for the company are
technically the property of the company we work for.  The company decides
what they want you to do.  If they're to be used in consulting, than the
writer must specify WHAT the employer is getting for their fees.  Do they
get source, or do they get a compiled exe?

The best way of course is pure permissions and rights/policies, OR a CVS
system.  If for whatever reason the script doesn't work as expected, than it
needs to be modified.  A raw perl script (indeed any raw script) is far
easier to work with uncompiled than it is compiled.

Cheers,
Mike Kalinovich

- Original Message -
From: Matthew Greenberg [EMAIL PROTECTED]
To: Harald Wopenka [EMAIL PROTECTED]; Perl-Win32-Users
[EMAIL PROTECTED]
Sent: Thursday, October 31, 2002 10:58 PM
Subject: Re: Source-Code-Protection


 You can protect your code by creating an exe using perlapp. You can get an
 evaluation license for free (valid for 3 weeks).

 Matthew Greenberg

 - Original Message -
 From: Harald Wopenka [EMAIL PROTECTED]
 To: Perl-Win32-Users [EMAIL PROTECTED]
 Sent: Thursday, October 31, 2002 4:46 AM
 Subject: Source-Code-Protection


  I think its a common problem with Perlprogs that u cant hide your
  sourcecode. I heard about something like pl2exe but I dont think it
works
  and I even more dont think its free. A couple of month ago I saw a nice
  protection:
 
  #!/usr/bin/perl
  use filter::
 
  I cant remember what came after filter or if it looked like that, but
 this
  was all I saw.
 
  Does anybody know how to create something like that? Is it safe? Or is
 there
  a much better way to hide my sources from unwanted modifiers and
 spectators?
 
  Greetings,
  Harry
 
  ___
  Perl-Win32-Users mailing list
  [EMAIL PROTECTED]
  To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
 


 ___
 Perl-Win32-Users mailing list
 [EMAIL PROTECTED]
 To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs