Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-17 | do not try to add to known_hosts if HASH_KNOWN_HOSTS is true but ssh-keygen ↵ | Daniel Kahn Gillmor | |
is not available (includes some comments about how to fix these corner cases). | |||
2010-04-17 | make comment more nit-pickingly accurate | Daniel Kahn Gillmor | |
2010-03-14 | warn if keyserver query fails (Closes: MS #1750) | Daniel Kahn Gillmor | |
2010-02-18 | enforce --no-armor when exporting to openpgp2ssh in case weird gpg.conf ↵ | Daniel Kahn Gillmor | |
options (see bug 1625) | |||
2010-01-19 | dump gpg --import error spew to /dev/null during hackish uses of gpg | Daniel Kahn Gillmor | |
2010-01-19 | ignoring time conflict when extracting info in a hacky way from gpg. ↵ | Daniel Kahn Gillmor | |
warnings still come out to stderr | |||
2010-01-19 | add get_cert_info() to common | Daniel Kahn Gillmor | |
2010-01-18 | flesh out check for reasonable-looking service names | Daniel Kahn Gillmor | |
2010-01-18 | canonicalize prompting to prompt if MONKEYSPHERE_PROMPT != 'false' | Jameson Rollins | |
2010-01-15 | add trap to remove temp dir in list_primary_fingerprints function | Jameson Rollins | |
2010-01-11 | rename keys-from-userid command to more accurate keys-for-userid | Jameson Rollins | |
leave the old command for now, but warn as deprecated. | |||
2010-01-10 | Fix patch for gen_key to test gpg version. | Jameson Rollins | |
This patch checks the version of gpg (for v1 and v2) and sets the key type command for the gen_subkey gpg edit-key script appropriately. | |||
2010-01-10 | Add new keys-from-userid subcommand to monkeysphere UI. | Jameson Rollins | |
This new subcommand calls a new function, keys_from_userid, that outputs to stdout all acceptable keys for a given user ID literal. | |||
2010-01-10 | Clean up REQUIRED_KEY_CAPABILITY option passing to process_user_id. | Jameson Rollins | |
Get rid of 'MODE' stuff, since it was not very clear and wasn't really being used. | |||
2009-09-24 | avoid noisy warning message when ssh-askpass not available | Daniel Kahn Gillmor | |
2009-08-01 | switch to using new checkperms script. | Daniel Kahn Gillmor | |
2009-07-26 | added MONKEYSPHERE_STRICT_MODES environment option to disable permissions ↵ | Daniel Kahn Gillmor | |
checking. | |||
2009-07-24 | small bug fix, and readbility improvements | Jameson Graef Rollins | |
2009-07-24 | shoring up known_hosts creation with proper umask and with multi-level ↵ | Daniel Kahn Gillmor | |
directory creation. | |||
2009-07-24 | make failures with unwritable known_hosts slightly less cryptic. | Daniel Kahn Gillmor | |
2009-07-24 | only touch the known_hosts file if it does not exist, and create the parent ↵ | Daniel Kahn Gillmor | |
directory if it does not exist. if more than one level of enclosing directory does not exist, this will fail cryptically. | |||
2009-07-11 | Merge commit 'mlcastle/master' | Jameson Graef Rollins | |
2009-07-11 | improve function to get primary group to make it more portable | Jameson Graef Rollins | |
2009-07-11 | more replacement of read -p with printf; read (re #446) | mike castleman | |
2009-06-29 | resolve symlinks when checking path permissions | Jameson Graef Rollins | |
Thanks to Silvio Rhatto for the patch. This should close MS bug #917 | |||
2009-04-06 | add else failure to list_users function | Jameson Graef Rollins | |
2009-04-06 | Add two new compatibility functions: | Jameson Graef Rollins | |
- list_user to list all users on the system - get_homedir to return the path to a users home directory These functions should provide compatibility on linux, FreeBSD and Darwin systems. | |||
2009-04-06 | actually check for md5 in the path within file_hash() | Daniel Kahn Gillmor | |
2009-04-05 | fix typo in check_key_file_permissions function | Jameson Graef Rollins | |
2009-04-05 | some small compatibility changes: | Jameson Graef Rollins | |
- fix file_hash function to use md5 or md5sum, for Darwin compatibility - use build-in 'type' instead of 'which', which for some reason doesn't behave on Darwin - clean up some redirection calls. | |||
2009-03-27 | trying to make m gen-subkey more responsive in the face of errors, and ↵ | Daniel Kahn Gillmor | |
clearer to the user about what is going on. | |||
2009-03-23 | add FIXME note about IPv6 addresses, and break out hostnames from the last ↵ | Daniel Kahn Gillmor | |
colon, not the first. | |||
2009-03-23 | proposed patch for issue #660, to properly specify host and port number in ↵ | Jameson Graef Rollins | |
known_hosts lines. | |||
2009-03-03 | fix to logging to prefix all log output with log prefix, and allow changing ↵ | Jameson Graef Rollins | |
of log prefix. | |||
2009-03-02 | fix remove_monkeysphere_line function to properly handle empty files. | Jameson Graef Rollins | |
2009-03-02 | get rid of FILE_OWNER variable, in favor of just using $(whoami) when | Jameson Graef Rollins | |
running check_key_file_permissions in update_known_hosts, update_authorized_keys, and process_authorized_user_ids. this is fine, since the policy is just that a user is always updating their own files. closes monkeysphere bug #630. | |||
2009-03-01 | switched $USER to $FILE_OWNER; new name is more semantically clear and less ↵ | Daniel Kahn Gillmor | |
likely to collide with other common uses of $USER. | |||
2009-03-01 | explicity set the USER variable, since it's needed for checking file ↵ | Jameson Graef Rollins | |
permissions. add/modify some debug messages. | |||
2009-03-01 | break out default variables into their own file: defaultenv | Jameson Graef Rollins | |
this allows the common file to be sourced without reseting variables to their defaults, which was causing a problem with su_monkeysphere_user. also added some more debug messages. | |||
2009-03-01 | removed test_gnu_dummy_s2k_extension(); no longer necessary | Daniel Kahn Gillmor | |
2009-02-22 | Fix how version number is saved/retrieved. Version is now stored in | Jameson Graef Rollins | |
VERSION file, which is created in the tarball target. This is then installed at /usr/share/monkeysphere/VERSION, and cat'ed when the version number is requested by the front-end ui. No more manual setting of version number required (to avoid future problems, aka "0.23.1"). This system is also more flexible, as the VERSION file could potentially hold more info than just the release number. | |||
2009-02-21 | preparing for stupid brown paper bag 0.23.1 release. | Daniel Kahn Gillmor | |
2009-02-21 | fixing stupid internal version number synchronization. | Daniel Kahn Gillmor | |
2009-02-21 | make sure we're explicitly capturing return codes in places where they are ↵ | Jameson Graef Rollins | |
tested, in case things are being run set -e | |||
2009-02-19 | Merge commit 'jrollins/master' | Daniel Kahn Gillmor | |
2009-02-19 | cleaning up output of cruft report | Daniel Kahn Gillmor | |
2009-02-19 | diagnostics should now check for cruft from old versions of the monkeysphere. | Daniel Kahn Gillmor | |
2009-02-19 | Modify/cleanup add_certifier and add_revoker, so that their code base | Jameson Graef Rollins | |
is more similar, and so that they can read keys from stdin instead of just from a file. Also fix the permissions on the tempdir in publish_key. | |||
2009-02-19 | added msmktempfile; got rid of /dev/stdin assumption in ssh_proxycommand for ↵ | Daniel Kahn Gillmor | |
portability | |||
2009-02-19 | Merge commit 'dkg/master' | Jameson Graef Rollins | |