-
Notifications
You must be signed in to change notification settings - Fork 28
Security Considerations
Très Acton edited this page May 27, 2017
·
3 revisions
Despite being a security researcher, I have given zero thought to the security of this app. I will go over it from a security perspective later (then update this page), so please keep that in mind.
Don't expose the app to the internet.
Don't keep the server running while you're not using it (i.e. do a [ctrl][c] in the window where you ran the "rails s -p xxxx" command).
Username: user@example.com
Password: password
cd dspectrumgui
rails c
u = User.last
u.email = "you@somewhere.com"
u.password = u.password_confirmation = "YourSecurePassword"
u.full_name = "Earthling"
u.save!