T.R | Title | User | Personal Name | Date | Lines |
---|
538.1 | Send it a control-E (ENQ) character | SHEILA::PUCKETT | My karma ran over my dogma | Tue Aug 25 1987 03:15 | 0 |
538.2 | | CURIE::DECARTERET | Jason DeCarteret | Wed Aug 26 1987 14:46 | 4 |
| I knew that one but it is going to be used to create an answerback
in a .COM file. If there is a way to put a Control sequance in
a file, please do tell.
-=*>Jason<*=-
|
538.3 | here ya go | ANGORA::ZARLENGA | A nickel's worth of free advice | Wed Aug 26 1987 17:19 | 10 |
|
To put a ^E in a file (called CTRLE.DAT) ...
$ CTRL_E[0,8] := %x05
$ OPEN/WRITE file CTRLE.DAT
$ WRITE file CTRL_E
$ CLOSE file
-mike
|
538.4 | Maybe?? | CURIE::DECARTERET | Jason DeCarteret | Wed Aug 26 1987 17:33 | 13 |
| The little program you gave me didn't work. It said something about
Control E not being defined. I think maybe if I state what my problem is
it will help out better.
We have two people who use our account. We both have different things
we need defined like All-in-1 names, process names, logicals etc.
So I put in LOGIN.COM a file that would inquire who it was, and then go
to the appropriate definitions.
What I want is to be able to put a unique identification of some kind in
the answerback of each persons terminal. The file would then inquire which
user it was by looking in the auto answerback of the person logging in.
Then there would be no user input and it would be easier to log in if you
were in a hurry.
-=*>Jason<*=-
|
538.5 | Get seperate accounts... or try this... | WAYWRD::GORDON | So this is what it's like to be poor... | Wed Aug 26 1987 18:32 | 12 |
| $ ctrle = ""
$ ctrle[0,8] = 5
$ on warning then goto timeout
$ read/prompt="''ctrle'"/time=5 sys$command answerback
$ goto test_answerback
$ timeout:
$ answerback := "***Timeout***
$ test_answerback:
$ if answerback .nes. "" then -
write sys$output f$fao("Answerback was /!AS/", answerback)
$ if answerback .eqs. "" then write sys$output "No answerback"
$ exit
|
538.6 | | ANNECY::ROBERTS | Nigel Roberts@AEO, DTN 887-4077 | Thu Aug 27 1987 08:56 | 11 |
| Using the answerback is _very_ poor security, as it can be reset
by anyone with physical access to the terminal.
Why can't you use two accounts? Can't be that difficult to set up
to do what you want.
Each person with legitimate access to a computer system should have
a password which only he/she knows, and that person is responsible for
the security of the password.
This is why sharing accounts is poor security too.
|