Learn how to avoid inadvertently disclosing your personal account information when creating your projects.
Many projects you create require account names, passwords, tokens or other sensitive information in order for them to work.
These may be secure if they never leave your desktop, but it can be all too easy to forget and publish or distribute
a script file with your personal credentials in them rather than the intended placeholder "REPLACE_WITH_YOUR_PASSWORD"
.
You can address this by placing your credentials in a separate file in your library folder and including a reference to
that file in your sketch initiation.
That way your private credentials will not accidentally escape your desktop, and will automatically be included when you compile your sketch.
In addition, many people have family members, friends or even a business location that are willing to share their network credentials with you when you visit. You won't have to remember what the credentials are each time you visit. Simply keep a commented-out library list, then edit the library list to place the information from the visited location into the "currently in effect" section.
You don't need any parts for this project. Only text edits are needed to the provided skeleton library file, and two small edits to each project file are required.
Here is a quick overview on how the project works.
Follow the next steps to install a skeleton MyLogin file in your library:
/********* Ron Brinkman Complete instructions at https://RandomNerdTutorials.com/protecting-account-information/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. *********/ //Keep account names, passwords, tokens, etc. current in this file //When visiting another location put their credentials in the "currently in effect" section //Credentials currently in effect #define STASSID "YOUR_WIFI_SSID" //WiFi #define STAPSK "YOUR-WIFI_PASSWORD" #define emailSenderAccount "YOUR_SENDER_EMAIL@gmail.com" //Email #define emailSenderPassword "YOUR_EMAIL_APP_PASSWORD" #define emailRecipient "YOUR_EMAIL_RECIPIENT@example.com" #define DuckDNStoken "YOUR_DUCKDNS_TOKEN" //DuckDNS /*********Saved credentials for substitution above when "on the road" //Credentials used at home #define STASSID "my_wifi_ssid" #define STAPSK "my_wifi_password" #define emailSenderAccount "my_sender_email@gmail.com" #define emailSenderPassword "my_email_app_password" #define emailRecipient "my_email_recipient@example.com" #define DuckDNStoken "my_duckdns_token" //Credentials used at Mom and Dad's house #define STASSID "parents_wifi_ssid" #define STAPSK "parents_wifi_password" //Credentials used at wife's Mom and Dad's house #define STASSID "wifes_parents_wifi_ssid" #define STAPSK "wifes_parents_wifi_password" //Credentials used at our daughter's house #define STASSID "daughter_wifi_ssid" #define STAPSK "daughter_wifi_password" //Credentials used at our son's house #define STASSID "son_wifi_ssid" #define STAPSK "son_wifi_password" //Credentials used at our friends Joe and Sally's house #define STASSID "friend_wifi_ssid" #define STAPSK "friend_wifi_password" *********/
Open the skeleton MyLogin.h file in your Arduino IDE installation libraries folder. Follow the next steps to isolate personal account, password and token information to this private file:
#define STASSID "YOUR_WIFI_SSID" //WiFi #define STAPSK "YOUR-WIFI_PASSWORD"
#define emailSenderAccount "YOUR_SENDER_EMAIL@gmail.com" //Email #define emailSenderPassword "YOUR_EMAIL_APP_PASSWORD" #define emailRecipient "YOUR_EMAIL_RECIPIENT@example.com" #define DuckDNStoken "YOUR_DUCKDNS_TOKEN" //DuckDNS
/*********Saved credentials for substitution above when "on the road" //Credentials used at home #define STASSID "my_wifi_ssid" #define STAPSK "my_wifi_password" #define emailSenderAccount "my_sender_email@gmail.com" #define emailSenderPassword "my_email_app_password" #define emailRecipient "my_email_recipient@example.com" #define DuckDNStoken "my_duckdns_token"
//Credentials used at Mom and Dad's house #define STASSID "wifes_parents_wifi_ssid" #define STAPSK "wifes_parents_wifi_password" . . .Note that it's likely that only the network credentials will be applicable for update for remote locations.
Each script file you want to protect from inadvertent disclosure of your credentials will require two simple edits. Follow the next steps to protect each script file:
#include// Needed to keep personal credentials out of the sketch's source code
// Replace with your network credentials const char* ssid = "REPLACE_WITH_YOUR_SSID"; const char* password = "REPLACE_WITH_YOUR_PASSWORD";
#ifndef STASSID //Replace with your network credentials here ONLY if you do not have a MyLogin.h file included above #define STASSID = "REPLACE_WITH_YOUR_SSID" #define STAPSK = "REPLACE_WITH_YOUR_PASSWORD" #endif const char* ssid = STASSID; const char* password = STAPSK;Don't fill-in your credentials here. They will be incorporated automatically via the MyLogin.h file and #include statement.
The MyLogin.h file that you have customized per the instructions above now contains all your personal credentials. It is no longer necessary to enter these credentials anywhere else, because they will be #included automatically when the script is compiled.
The MyLogin.h library file is now securely incorporated into your script when it is #included at the beginning of your script, and contains all your personal credentials.
#includeBecause your credentials are already incorporated into your script from the #included MyLogin.h file, the #ifndef statement will skip redefining the credentials here. You don't have to do anything.// Needed to keep personal credentials out of the sketch's source code
#ifndef STASSID //Replace with your network credentials here ONLY if you do not have a MyLogin.h file included above #define STASSID = "REPLACE_WITH_YOUR_SSID" #define STAPSK = "REPLACE_WITH_YOUR_PASSWORD" #endifNow the credentials are actually incorporated into the script for use by the program logic:
const char* ssid = STASSID; const char* password = STAPSK;If other accounts, passwords or tokens are utilized in subsequent sections of your script, they will be securely incorporated as well if you have customized and tailored them as described in the previous sections.
Upload your project to your microprocessor. It will work exactly as before. Your private information will be protected from inadvertent disclosure.
We hope you've found this project useful and easy to implement on all of your projects. Enjoy the peace of mind knowing that you can publish or distribute your projects without the fear of "OOPS, I forgot to remove my personal information".
For more Random Nerd Tutorials projects you can subscribe to our newsletter.
Thank you for reading.