Help OS X script : password input


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help OS X script : password input
# 8  
Old 01-04-2017
Quote:
Originally Posted by wisecracker
Did you read my post #3 or am I wasting my time?

Research these two items first:-

xxxx

Apple is a tough nut to crack externally even with _root_ access.

Even when you have terminal root access you are NOT able to write to many root owned areas.

Again research those two URLs above.
sorry i completely missed the last part of your message, i've just seen the "OS X version" request and i started with the reply.

ok i've made a research ,
basically i can disable the SIP protection using csrutil
or the Gatekeeper using spctl.
this will grant me a lot of possibilities but i'm still not sure about how i can run a password stored in the script.

i've seen that a command could be "send" but i'm not sure if i can run it on my mac
i will try to make an attempt

thank you again
# 9  
Old 01-04-2017
Quote:
Originally Posted by araan87
thank you for the accurate description
so basically there is not any way to avoid this problem?
Not without installing third-party applications and/or arranging privileged access first.

Quote:
i've tried to make some research on the web, i've found a ssh key...
it should be a way to store a specific key (like a password) and to evoke it when needed.
Could it be used for my task ?
Maybe -- if you enabled ssh servers, enabled root, and enabled ssh root logins on all your machines first. That would allow you to ssh into root. You would still have the problem of password inputs - but at least you would be root.

That's kind of the point - these shenanigans are locked down by default.

Last edited by Corona688; 01-04-2017 at 11:30 AM..
This User Gave Thanks to Corona688 For This Post:
# 10  
Old 01-04-2017
Thanks Corona688 you saved me from all the rigmarole of explaining.

@araan87.
As an addendum, there is a reason why Apple keeps you locked out. I think it is called security.
As soon as 'root' becomes the default operating mode for your potential task your system is WWIIDDEE open to third party _attacks_.
Do you want that? <- Rhetorical!
Security is only as good as its weakest link!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Input password to bash script, save, and enter when needed

I am looking for a way to start a script and have it prompt for a password that will be used later on in the script to SSH to another host and to SFTP. I don't want the password to be hard coded. Below is my script with the actual IP's and usernames removed. #!/usr/bin/expect -f... (2 Replies)
Discussion started by: jbrass
2 Replies

2. Shell Programming and Scripting

Shell script password input

hy, I wrote a simple shell script to monitor (with Nagios) a SNX VPN function. Here the Code snippet: testing=`ssh user@IP-address 'ls /etc/sysconfig/network-scripts/ifcfg-eth0'` #echo $testing if ; then echo "VPN is working" exit 0 else snx -s server -u user ... (2 Replies)
Discussion started by: tomies
2 Replies

3. Shell Programming and Scripting

Script to input encrpyted password into htdigest (Apache)

Hey guys, This is my situation. I'm using the script to add a user account, however, i want the same details copied into the htdigest password list. the format is username:virtualservername:hashed/encrypted password. This is the command : sudo htdigest /etc/apache2/passwords... (0 Replies)
Discussion started by: xxxx
0 Replies

4. Shell Programming and Scripting

To make password/input text invisible?

All, My script is ----------- #cat pass.sh password=123 echo -n "Enter pass:" read pass if ; then echo "Correct password" else echo "Wrong password" fi When i run this script, text(password) which i'm entering is visible in screen... (4 Replies)
Discussion started by: thomasraj87
4 Replies

5. Shell Programming and Scripting

password file as std input to script

I'm a fairly new AIX admin (disclaimer). We have SQL scripts written by end users that use a userid and passwd to connect to our DB2 database. Is it possible to create an "input file" that contains the db2 connect parameters and yet secure the file from the SQL creator? i.e., they can "use"... (2 Replies)
Discussion started by: mpheine
2 Replies

6. Shell Programming and Scripting

input username and password interactively

Hi guys, I am using Solaris 10 and we install IBM OnDemand server there. there's a command called arsload that we use to load document and query document too. I need to write a script to query document but when querying document, this command prompt for username then password. My question is... (3 Replies)
Discussion started by: markthien
3 Replies

7. Shell Programming and Scripting

Input Password

I am writing a script that can automatically login to Storage CAM console. i use this command, ./sscs login -u user -h localhost. at that time it will prompt for password, is it possible for store password in a file and supply it when it waits for password. Thanks in advance. Regards SK (1 Reply)
Discussion started by: cutechaps
1 Replies

8. UNIX for Dummies Questions & Answers

To append \ in the input password

Hi I have the following issue i am going to ask from the user the password The password can have $ anywhere that is first last or in between but i have to append \ before the $ sign in the password can anyone please help For example o/p in the console will be like the... (3 Replies)
Discussion started by: ssuresh1999
3 Replies

9. UNIX for Advanced & Expert Users

password required when using input redirection

Hello, I need to change user and run some commands by using a script. lets say, I'm using su - someuser << start password required -----> how can I enter the password here command 1 command 2 command 3 command 4 start While trying to run this I got the following message: "standard... (2 Replies)
Discussion started by: Alalush
2 Replies

10. Shell Programming and Scripting

Input Password

I have a script which connects to database. I want user to input user name and password but dont want the password characters to be displayed on screen. How can i accept input from user in encrypted form. (2 Replies)
Discussion started by: baglasumit21
2 Replies
Login or Register to Ask a Question