2
votes
1answer
56 views

How do I turn on a login page for Bugzilla?

I have Bugzilla 4.2.1 running on my Ubuntu 11.10, It working as it should and everything is fine. Now when somebody accesses the URL www.myapplication.com/bugs without logging in, it allows the user ...
3
votes
3answers
908 views

“Successful su for user by root” - suspicious entries in my /var/log/auth.log?

This post on reddit made me go through my logs. That's when I discovered the following entries which appeared on two non-subsequent days. "user" is my user account. Aug 4 22:50:37 UbuntuSystem sudo: ...
3
votes
3answers
435 views

Is there a way to lock my browser with a password?

It would be OK if it was only with my login password, but I would like to lock both midori and Firefox so that they cannot be used without entering a password. I'm running 12.04.
2
votes
1answer
131 views

How do I create one user without key authentication?

I've completed the following steps: I have configured Ubuntu server with Key authentication and it is working fine. I have disabled password authentication for key authentication to work. The server ...
46
votes
2answers
4k views

How can I use a passcode generator for authentication for remote logins?

I would like to strengthen the authentication of my SSH logins by adding another factor: a passcode generator device, or a passcode generation application on my mobile phone. The only obvious options ...
0
votes
2answers
127 views

Easiest authentication for LAN networks?

There are a lot clients inside a LAN. The server is trusted, the clients are not. It has to be ensured that other clients can not spoof another clients or the servers LAN IP address. I want to ...
6
votes
1answer
3k views

How can I allow SSH password authentication from only certain IP addresses?

I'd like to allow SSH password authentication from only a certain subnet. I see the option to disallow it globally in /etc/ssh/sshd_config: # Change to no to disable tunnelled clear text passwords ...
8
votes
2answers
569 views

What is the least insecure way to store a password that is used by a script?

I have a Bash script that automatically authenticates with a service using my username and password. The credentials are currently stored as plain text within the script. What precautions should I ...