mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
13 lines
422 B
Java
13 lines
422 B
Java
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
@Controller
|
|
public class SensitiveInfo {
|
|
@RequestMapping
|
|
public void handleLogin(@RequestParam String username, @RequestParam String password) throws Exception {
|
|
if (!username.equals("") && password.equals("")) {
|
|
//Blank processing
|
|
}
|
|
}
|
|
} |