Go Back   Velocity Reviews > Newsgroups > Computer Security
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

Computer Security - Software needed

 
Thread Tools Search this Thread
Old 10-04-2004, 12:12 AM   #1
Default Software needed


Sorry for bad english:

i need a program that:

1. Protect a executable with a password (ask the password
before launch)

2. Can launch the password-protect executable from DOS prompt
by giving the password as a parameter. (important)

3. Don't write on the disk the copy unprotected of the original executable.

4. Dont'need of high-level of protection.

Thanks in advance




Venerdě
  Reply With Quote
Old 10-04-2004, 01:54 AM   #2
donnie
 
Posts: n/a
Default Re: Software needed
On Sun, 03 Oct 2004 23:12:46 GMT, "Venerdě"
<> wrote:

>Sorry for bad english:
>
>i need a program that:
>
>1. Protect a executable with a password (ask the password
>before launch)
>
>2. Can launch the password-protect executable from DOS prompt
>by giving the password as a parameter. (important)
>
>3. Don't write on the disk the copy unprotected of the original executable.
>
>4. Dont'need of high-level of protection.
>
>Thanks in advance
>

####################
Can't you just use windows user and group permissions to determine who
can run the program? In other words, create a group and only add the
users who have permission to run the application. Look at the secuity
tab in properties of the application to see what I'm saying.


donnie
  Reply With Quote
Old 10-04-2004, 04:31 AM   #3
Celtic Leroy
 
Posts: n/a
Default Re: Software needed
"Venerdě" <> wrote:

>Sorry for bad english:
>
>i need a program that:
>
>1. Protect a executable with a password (ask the password
>before launch)
>
>2. Can launch the password-protect executable from DOS prompt
>by giving the password as a parameter. (important)
>
>3. Don't write on the disk the copy unprotected of the original executable.
>
>4. Dont'need of high-level of protection.
>
>Thanks in advance
>


Let me ask a question before just supplying answers where there may
not be a question...You are asking for an executable to be encrypted.
Is this so no one can reverse engineer it?

If what you want is to limit a users ability to run your program,
password protecting a program is easily done with internal code...no
need to encrypt the executable if this is all you need. And, a
password can be passed to the starting program via command line
parameters.

For a program executable to be encrypted, eventually the code will be
opened up into machine readable format...either in memory or on
disk...once that is accomplished, it can be reverse engineered.

The only other way to achieve this goal (launching an encrypted
executable) is to write your own Operating System that reads the
encrypted .exe and runs it, instruction by instruction, by internally
decrypting each line of code...with that kind of OS you could also
have the data contained in each register encrypted. You should also
think about randomly scrambling the screen, as there are devices that
can see what is being displayed on a monitor from over 200 yards away
(even through brick walls).



Celtic Leroy
  Reply With Quote
Old 10-04-2004, 11:35 AM   #4
Venerdě
 
Posts: n/a
Default Re: Software needed

"Celtic Leroy" <> ha scritto nel
messaggio news:...
> "Venerdě" <> wrote:
>
>>Sorry for bad english:
>>
>>i need a program that:
>>
>>1. Protect a executable with a password (ask the password
>>before launch)
>>
>>2. Can launch the password-protect executable from DOS prompt
>>by giving the password as a parameter. (important)
>>
>>3. Don't write on the disk the copy unprotected of the original
>>executable.
>>
>>4. Dont'need of high-level of protection.
>>
>>Thanks in advance
>>

>
> Let me ask a question before just supplying answers where there may
> not be a question...You are asking for an executable to be encrypted.
> Is this so no one can reverse engineer it?

No.

>
> If what you want is to limit a users ability to run your program,

Yes. But i dont have access to code of that programs. I need to restrict
access to a lot of programs (writed by others) on a lot of pc.
I do that with a other program that handle users & passwords in a
database. When the specific user has the rights to launch a specific
program (by giving correct pw e id) the 'other program' log that and launch
the requested program
by calling it by a command line. I need to give the password (thar nobody
see and nobody know, except the 'other program') to permit the launch.

Sorry for terrible language. I hope you understand.

Bye
Venerdě

> password protecting a program is easily done with internal code...no
> need to encrypt the executable if this is all you need. And, a
> password can be passed to the starting program via command line
> parameters.


>
> For a program executable to be encrypted, eventually the code will be
> opened up into machine readable format...either in memory or on
> disk...once that is accomplished, it can be reverse engineered.
>
> The only other way to achieve this goal (launching an encrypted
> executable) is to write your own Operating System that reads the
> encrypted .exe and runs it, instruction by instruction, by internally
> decrypting each line of code...with that kind of OS you could also
> have the data contained in each register encrypted. You should also
> think about randomly scrambling the screen, as there are devices that
> can see what is being displayed on a monitor from over 200 yards away
> (even through brick walls).
>





Venerdě
  Reply With Quote
Old 10-04-2004, 01:46 PM   #5
Solbu
 
Posts: n/a
Default Re: Software needed
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On mandag 4. oktober 2004, 01:12 Venerdě tried to express an opinion:

> i need a program that:
>
> 1. Protect a executable with a password (ask the password
> before launch)
>
> 2. Can launch the password-protect executable from DOS prompt
> by giving the password as a parameter. (important)


I had such a program once, but I forgot about it.
I can't find it, so I did a search to locate any alternatives for you.

And wouldn't you know.. I really did find the werry same program I once had.
http://www.angelfire.com/biz7/ppsplus/


I also found this one.
http://filepadlock.techmedia-software.com.br/
filepadlock can have usernames + passwords in the file.
Enabeling you to have multiple users, each with their own password.



- --
Solbu - http://www.solbu.net
Remove 'ugyldig' for email
PGP key ID: 0xFA687324
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQFBYUY5T1rWTfpocyQRAuUXAJ9W+VyhY6e85Jc/u6pMHCXHIba2KwCfWYTe
JTmUuenx7zTZniQD1jNln34=
=pmiq
-----END PGP SIGNATURE-----


Solbu
  Reply With Quote
Old 10-04-2004, 08:32 PM   #6
Celtic Leroy
 
Posts: n/a
Default Re: Software needed
"Venerdě" <> wrote:

>
>"Celtic Leroy" <> ha scritto nel
>messaggio news:...
>> "Venerdě" <> wrote:
>> If what you want is to limit a users ability to run your program,

>Yes. But i dont have access to code of that programs. I need to restrict
>access to a lot of programs (writed by others) on a lot of pc.
>I do that with a other program that handle users & passwords in a
>database. When the specific user has the rights to launch a specific
>program (by giving correct pw e id) the 'other program' log that and launch
>the requested program
>by calling it by a command line. I need to give the password (thar nobody
>see and nobody know, except the 'other program') to permit the launch.
>
>Sorry for terrible language. I hope you understand.
>
>Bye
>Venerdě


Understood. You need to do what was suggested by the previous poster
(donnie) and use the Windows group/permissions settings. You can give
each person, according to their login account, permission to run
specific programs and access to specific files. This will limit each
individual to only access the programs you want them to.

Good luck,


Celtic Leroy
  Reply With Quote
Old 10-04-2004, 09:01 PM   #7
Eric
 
Posts: n/a
Default Re: Software needed
Try Password Door.....
http://www.xstudio.ca/pcsupport/secu...rotection.html


<Venerd? <>> wrote in message
news:OH%7d.23377$...
> Sorry for bad english:
>
> i need a program that:
>
> 1. Protect a executable with a password (ask the password
> before launch)
>
> 2. Can launch the password-protect executable from DOS prompt
> by giving the password as a parameter. (important)
>
> 3. Don't write on the disk the copy unprotected of the original

executable.
>
> 4. Dont'need of high-level of protection.
>
> Thanks in advance
>
>





Eric
  Reply With Quote
Old 10-04-2004, 11:01 PM   #8
Venerdě
 
Posts: n/a
Default Re: Software needed
> I had such a program once, but I forgot about it.
> I can't find it, so I did a search to locate any alternatives for you.
>
> And wouldn't you know.. I really did find the werry same program I once
> had.
> http://www.angelfire.com/biz7/ppsplus/


Great, Solbu! This one works! Thank you!

Only a little problem, but not so important.
A copy of unprotected program was writted on the same
directory of the protected program before the running.
It have the "hidden" attribute, and was deleted after execution.
So the security was no very hight, but sufficient for me.

Bye
Venerdě




Venerdě
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Sewing, Embroidery & SignMaking Software.. embsupply Software 0 10-02-2007 04:29 PM
Sewing, Embroidery & SignMaking Software.. embsupply Software 0 08-14-2007 04:01 PM
Guide-how to choose the most satisfactory software to convert DVD to your mobile devices bobo DVD Video 0 08-07-2006 03:01 AM
Software submission service serg DVD Video 0 09-15-2005 05:45 PM
Microsoft to Implement Worldwide Anti-Piracy Initiative Bum A+ Certification 0 03-04-2005 08:28 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46