I was wanting to show a video of my python code working to someone but in this video I need to show my folders. C:\Users\etc\etc. Is giving the users bit a risk (obviously it's my windows name in place of 'users') because I often see tutorials blocking this name.
Is sharing your C:/Users name a security risk?
876 Views Asked by AudioBubble At
1
There are 1 best solutions below
Related Questions in SECURITY
- HTTPS configuration in Spring Boot, server returning timeout
- HSM ZKA control mask values
- OWASP Amass Subcommands
- Is there a need for BPF Linux namespace?
- Error when trying to execute a binary compiled in a Kali Linux machine on an Ubuntu system
- When sanitize/encode while implementing tags system like on SO
- spring security version in spring-boot-starter-security
- I am currently trying to implement a rudimentary firewall from a video I watched but the nimda worm detection is not working and i do not know why?
- Is it possible for `sudo` to fail temporarily with the correct password? Hacking suspected
- Is it viable proxying all my mobile apps requests, to some kind knowing that a request is coming from a secure source
- What abilities should I concentrate on while bug hunting, and how can I improve the quality of my bug bounty reports?
- System.ArgumentOutOfRangeException: I passed this error in every single program
- How to prevent users from creating custom client apps?
- Does server-side content security policy exist for youtube video player API, app, mod apks and website?
- Can we pass a hostname/IP address as a query string in a GET request in REST API
Related Questions in DIRECTORY
- I cant access file directory with PHP local host on XAMPP. it just shows one of the files I have in my visual studio code
- PHP string variable to multiple rows in table sql insert
- Android - Why my app picks values on default folder (instead XXHDPI)
- Use htaccess to add subdirectory to url while displaying base url
- Dockerfile and package-json are in different folders
- VS2022 C++ empty directory for audio file. CMake; SFML
- Visual Studio Error: The system cannot find the file specified
- Email from SharePoint: "Heads up! We noticed that you recently deleted a large number of files from a site" but the user doesn't deleting anything
- Duplicate folder into new folder one level up in the directionary
- Shapefiles not showing up in assigned directory in R - says it exists but can't find it
- Recursively calculate SHA256 sum of all files in directory using OpenSSL
- $WinREAgent folder keeps to automatically appear
- thunderbird local archive folder missing
- Python folder path string escape character error
- Switch r settings to not have to create directory when saving files into new subfolders
Related Questions in PRIVACY
- How many rejected logins should there be before a user has to reset their password?
- Rails - Upload private file to Google Cloud Storage
- This app has crashed because it attempted to access privacy-sensitive data
- When accessing the settings to enable access to a feature of device, why should I use
- Why Are SAML Persistent Identifiers Used as a 'Privacy Protection Mechanism'?
- Make my local nginx server private
- What is the best way to prevent visitors from accessing website in development?
- Will this protect me from Etag tracking?
- Prevent Google Glass from Auto-Uploading Photos
- Firebase analytics and the consent dialog
- Does Visual Studio Team Services have private repository?
- Parent - child relationship for album-photo privacy
- Get someones ip address from name and email
- Can any account with verified email address be used to merge with an account with unverified email address?
- What tools do you use to avoid accidently pushing private information to a github repo on a rails project?
Related Questions in RISK-ANALYSIS
- How can i add risk table for cumulative incidence function using ggcuminc, splitting events in both event types as well as strata
- Maximum Decorrelation portfolio optimisation
- I need to extract the HR, 95% confidence intervals and p values from univariate competing risk analysis analysis for multiple covariates using cmprsk
- How can I add a risk table with the breakdown of each event type in the cumulative incidence function plot using 'ggcuminc'?
- Issue with calculation of cumulative incidence in R using tidycmprsk package
- How can I calculate the Value at Risk of a portfolio 3 assets in Python? Do I have to use arrays?
- Statsmodel Zero Inflated Poisson doesn't converge (statsmodels.discrete.count_model.ZeroInflatedPoisson)
- Discrepancy between calculated p values
- riskRegression() function: confusing examples in R package riskRegression vignette
- how to change color of censor tick and truncate KM curve if number at risk is < 5 using lifelines library?
- Plot a difficult function in R and find the root by bisection
- R: Converting daily timeseries data to monthly
- 'Undefined columns selected' error when trying to calculate population attributable risk from a Cox model (using AF::AFcoxph in R)?
- How to compute the combined probability of loss for 2 time series (consisting of historical stock prices)?
- estimate sector exposure of mutual funds
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Short answer, yes it is a security risk, you are telling someone the username for your system. However, the better question is, should you go to the effort of hiding it based on the security risk?
Unfortunately this question is much harder to answer with a simple yes / no answer and depends a lot on your personal (and your organisations) attitude to risk.
If someone is trying to hack into their system having valid credentials for the system is obviously a good way to go, hence the amount of effort that goes into phishing style e-mails, websites etc. By showing your username you have given the attacker half the things they need (assuming no MFA etc.).
That being said often usernames are often very easy to guess. Built in accounts e.g. Administrator in Windows and root in Linux have been targets in the past, although they are better protected from Network logins these days. In corporate environments, usernames are often e-mail addresses or the user part of the address (the bit before the
@symbol).As well as considering how available your username is in the public domain already you need to consider where is the video going to be shared. For example if you are in a corporate environment where usernames are
firstname.lastnameand this video is only going to be shared on the company intranet. Well, quite honestly, anyone with access to the video can guess your username.Based on the hints above you can make your mind up about whether or not you need to hide your username. Let's look at this from another angle, how hard is it to hide the username. Assuming that your demonstration works just as well from any directory on your computer, why not put everything you need in
C:\tempand then there is no need to show a path with your username in?In summary, the choice is yours and I hope you this gives you a guide to how to consider the risks and make an informed choice. Personally (sorry SO rule followers, I will give a quick opinion here) I would avoid showing it as generally it is easy to build a video from a temp directory rather than one off
C:\Users\<username>equally when using a Linux system I don't lose any sleep over the fact that the prompt shows my username.