According to the recent announcement [1], Github is
GitHub is deprecating password authentication to the API
Looking at the empire source code, it looks like the emp login command hardcodes a password based login?
|
// NOTE: gopass doesn't support multi-byte chars on Windows |
|
password, err := readPassword("Enter password: ") |
|
switch { |
|
case err == nil: |
|
case err.Error() == "unexpected newline": |
|
printFatal("password is required.") |
|
default: |
|
printFatal(err.Error()) |
|
} |
Does this mean that everyone's emp login commands are about to break? Can anyone provide any information to help confirm this?
According to the recent announcement [1], Github is
Looking at the empire source code, it looks like the
emp logincommand hardcodes a password based login?empire/cmd/emp/auth.go
Lines 128 to 136 in 3daba38
Does this mean that everyone's
emp logincommands are about to break? Can anyone provide any information to help confirm this?