Admittedly, this is unexpected and odd. But, before jumping to conclusions, do a little research on your machine. Is this a personal machine or is this a managed device (device enrolled in an MDM)? To explore, follow these steps.
Note: The following guidance includes commands run from Terminal. Make sure you feel comfortable running these and consider looking up what they do before blindly trusting an unknown person posting on a public message board.
Open the Terminal applications and run the following command to show a list of ALL user accounts on your machine.
dscl . list /Users
Look through the list to see if there is a user named "red." Assuming that the account name is red, you can get more details on the account by running the following command:
dscl . read /Users/red
If you don't see an account with the RecordName titled red, you can also search DS Local by attribute(s). For example, "red" should be the value of the RealName attribute (since RealName is what login window displays). If the RecordName and the RealName differ, you can run this to search for an account with the RealName of "red."
dscl . search /Users RealName "red"
If there is a record with the RealName of red, the results should look something like this (record_name would be the actual account name while RealName is red):
record_name RealName = (
"red"
)
For the account to appear at the login window, there must be an account attribute in DS Local.
You can also look at the DS Local flat files by looking in:
/var/db/dslocal/nodes/Default/users
(Note: this is a root protected location so a sudo -s is needed before the cd to elevate rights to navigate here)
Assuming you are able to find the account and get the attributes, you can find some information from the record. A few that are of interest may be:
UniqueID (presumed to be > 501 as the account is visible at login window
NFSHomeDirectory (path to the accounts home folder)
Let's start there. Locating the account may help in determining what created it. I will speculate that you use Maxon's Red Giant and you will find a service account called _redgiantservice.
Mark it helpful if it is.