类型: 安全缺陷

    程序中采用硬编码方式处理手机号码,一方面会降低系统安全性,另一方面不易于程序维护。

    1. public class UserDAO {
    2. private static Map<Integer, User> users = new LinkedHashMap<Integer, User>();
    3. //...
    4. static {
    5. users.put(1001, new User(1001, "韩信", 22, "18944564562", "hanxin@126.com"));
    6. users.put(1002, new User(1002, "张良", 30, "18343256433", "zhangliang@163.com"));
    7. users.put(1003, new User(1003, "萧何", 27, "18945455665", "xiaohe@sina.com"));
    8. // ...
    9. }
    10. // 用户信息的增删改查方法
    11. // ...
    12. }
    13. public class User {
    14. private int id;
    15. private String name;
    16. private int age;
    17. private String tel;
    18. private String email;
    19. public User() {}
    20. public User(int id, String name, int age, String tel, String email) {
    21. this.id = id;
    22. this.name = name;
    23. this.age = age;
    24. this.tel = tel;
    25. this.email = email;
    26. }
    27. // Getter and Setter
    28. // ...
    29. }

    在上面的源码片段中,程序直接将用户的手机号码等个人信息以硬编码的方式进行存储,这样做会让数据与程序直接绑定,提高了系统的耦合性,使得系统和数据的维护变得困难。同时,如果对程序的执行文件做反编译操作,很容易就能够得到雇员的真实信息,导致敏感数据泄露,大大降低了系统的安全性。