Skip to content

Security Considerations

Très Acton edited this page May 27, 2017 · 3 revisions

Penetration Testing and Hardening

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).

To change the credentials (recommended!):

cd dspectrumgui
rails c
u = User.last
u.email = "you@somewhere.com"
u.password = u.password_confirmation = "YourSecurePassword"
u.full_name = "Earthling"
u.save!

Clone this wiki locally