File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
lib/codeql/rust/security/internal
test/library-tests/sensitivedata Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ module HeuristicNames {
114
114
// Relationships - work and family
115
115
"employ(er|ee)|spouse|maiden.?name|" +
116
116
// Device information
117
- "([_-]|\\b)ip.?addr| mac.?addr|finger.?print " +
117
+ "mac.?addr" +
118
118
// ---
119
119
").*"
120
120
}
Original file line number Diff line number Diff line change @@ -164,8 +164,8 @@ impl DeviceInfo {
164
164
sink ( & self . api_key ) ; // $ sensitive=password
165
165
sink ( & other. api_key ) ; // $ sensitive=password
166
166
sink ( & self . deviceApiToken ) ; // $ sensitive=password
167
- sink ( & self . finger_print ) ; // $ sensitive=private
168
- sink ( & self . ip_address ) ; // $ sensitive=private
167
+ sink ( & self . finger_print ) ; // $ MISSING: sensitive=private
168
+ sink ( & self . ip_address ) ; // $ MISSING: sensitive=private
169
169
sink ( self . macaddr12 ) ; // $ sensitive=private
170
170
sink ( & self . mac_addr ) ; // $ sensitive=private
171
171
sink ( self . mac_addr . values ) ; // $ sensitive=private
You can’t perform that action at this time.
0 commit comments