Sponsored Content
Operating Systems Solaris Shell script to add users on solaris Post 302480759 by methyl on Wednesday 15th of December 2010 06:21:59 PM
Old 12-15-2010
It is not possible to directly set a specific password for a unix account with standard unix commands.

Your earlier posts suggest that you may know the correct value for the password "salt" without stating that value. Afaik the "crypt" program has nothing to do with passwords. Afaikn you would need knowledge of the correct "salt" value and a custom "C" language program to produce a valid encrypted password and then (as "vishalaswani" notes) some skilled editing to modify the shadow file.

I have a "C" program to set a unix password to a given value but there is no way that I would publish such a program on the Internet.

As "dangral" suggests, consider using the "passwd" command.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to add users using Shell Scripting

I am on Fedora 4 and using VI. I need to add users from a text file. ANYONE? plz help me out here. I am already going bald, dont need anymore hair to fall out. Joshua (2 Replies)
Discussion started by: Neece29
2 Replies

2. Shell Programming and Scripting

shell script help for users

Hello guys, I would appreciate if someone can help me for this task: I have a large txt file that contains lots of user ids in different format. I need to run this against a database output ldif file and print to a file whether they exist or not. And if they exist then I need to print their... (9 Replies)
Discussion started by: cmontr
9 Replies

3. Shell Programming and Scripting

script check the users in SHELL ?

could you please find a solution for this script that checks if any of a list of users given on the command line is logged in. For each user the script should say whether this user is logged in or not. The script prints an error message if no parameter is given. And ask the user to enter a name... (3 Replies)
Discussion started by: anything
3 Replies

4. Shell Programming and Scripting

Need Script to Validate and Add more users one time

I need a script to validate and add more than one user at one time Field 1 - FirstName LastName Field 2 - userid Field 3 - email address Field 4 - department Validation for Field 1 No... (3 Replies)
Discussion started by: karthikn7974
3 Replies

5. OS X (Apple)

interactive shell script to create users 10.4

Hello everyone, Not sure if this is the right place, but OS X isn't your standard Unix, so I figured here would be best. I am looking at creating a script that will be interactive that admins can run to create users. Now, 10.4 uses netinfo database and netinfo manager to handle it's users. ... (3 Replies)
Discussion started by: tlarkin
3 Replies

6. Shell Programming and Scripting

Script to drop oracle DB users on HP, LINUX, SOLARIS

Hi everybody, i need help from all of you. I have many users who are no more work in our Company. Some who get objects are Locked. There Many users and many Database Servers. And it'll take long for me to finished this job. That's why i need your help to provide me anyone Scripts... (2 Replies)
Discussion started by: Sonson
2 Replies

7. UNIX for Dummies Questions & Answers

script to add 10000 users

Hi All i have written the script to add 10000 users, when i execute the script it had no errors ,but the script is not adding the users. pls correct me. i want it using while loop #!bin/sh count=0 while do useradd username$count count=`expr $count + 1` done ~ (2 Replies)
Discussion started by: kalyankalyan
2 Replies

8. Shell Programming and Scripting

shell script for monitoring users activities

hi I need a shell script which runs perpetually in background and monitors different aspects of different users on different files and their usages for example say there r 3 users so i want when they log in i.e. their log in time and their file access, modify and change log of each file of a... (3 Replies)
Discussion started by: rrd1986
3 Replies

9. Shell Programming and Scripting

Help with shell script - creating users

echo -e "Enter in a username : \c" read username grep "^$username:" /etc/passwdWhat I'm trying to do is take in a username from my script and I need to be able to check if that username already exists. If it does the script should display a message saying that the user already exists and exit. ... (2 Replies)
Discussion started by: shadowcat
2 Replies

10. Shell Programming and Scripting

Addsudoers: A script to add users or groups into /etc/sudoers

Well, sudo is a great tool for delegating permissions among admins. But, it's really hard to find a great tool which would give an interactive way of editing /etc/sudoers file. Now, when I say "editing", I really refer to add new groups, users, aliases in the /etc/sudoers file. visudo is great... (2 Replies)
Discussion started by: admin_xor
2 Replies
ns_crypt(3aolserver)					    AOLserver Built-In Commands 				      ns_crypt(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
ns_crypt - commands SYNOPSIS
ns_crypt key salt _________________________________________________________________ DESCRIPTION
ns_crypt encrypted the key, also known as the password, using the salt and returns the result. It uses the same algorithm as the unix crypt command. The result from ns_crypt is a 13-character string. The first two characters correspond to the salt, and the remaining eleven characters correspond to the password encrypted with the specified salt. The password is a string (typically that of a password to be used for nscp and/or nsperm authentication). salt should be two characters, typically from the set [a-zA-Z0-9./]. If the empty string is specified as the salt then ns_crypt returns the empty string. If a string longer than two characters is specified for the salt it is truncated to two characters. If a one character salt is provided the output will appear to have a two-character salt (the single character repeated), however, the encrypted value does not correspond to the same password being encrypted with the equivalent two character salt. (As a result sticking with a two character salt is highly recommended.) Input to ns_crypt is case-sensitive. EXAMPLES
nscp> ns_crypt aolserver ns ns0WvClsyIL4A nscp> ns_crypt aolserver NS NSDQ1dPM.409Q nscp> ns_crypt aolserver tcl tcAbgtlzbEhVc nscp> ns_crypt aolserver tc tcAbgtlzbEhVc nscp> ns_crypt aolserver .. ..7TNvXHLxJ9Y nscp> ns_crypt aolserver . ..fwmBaZuzrRs SEE ALSO
nsd(1), info(n), nscp, nsperm, crypt(3) KEYWORDS
AOLserver 4.0 ns_crypt(3aolserver)
All times are GMT -4. The time now is 07:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy