明星辰面试题

《网安面试指南》https://mp.weixin.qq.com/s/RIVYDmxI9g_TgGrpbdDKtA?token=1860256701&lang=zh_CN

5000篇网安资料库https://mp.weixin.qq.com/s?__biz=MzkwNjY1Mzc0Nw==&mid=2247486065&idx=2&sn=b30ade8200e842743339d428f414475e&chksm=c0e4732df793fa3bf39a6eab17cc0ed0fca5f0e4c979ce64bd112762def9ee7cf0112a7e76af&scene=21#wechat_redirect


苦逼的技术,能干销售就去干销售吧,毕竟年轻不干,35+还是得干,要不是你就去专研技术不可替代。那就看看下面这些关于Shiro相关的面试题你懂不?

1. Shiro 的CredentialsMatcher有什么作用?如何自定义密码加密策略?

答案

  • 作用:用于验证用户提交的凭证(如密码)与存储的凭证是否匹配。

  • 国家加密步骤
    1. 实现CredentialsMatcher

    public class BCryptMatcher implements CredentialsMatcher {  
        public boolean doCredentialsMatch(AuthenticationToken token, AuthenticationInfo info) {  
            String inputPassword = new String((char[]) token.getCredentials());  
            String storedHash = (String) info.getCredentials();  
            return BCrypt.checkpw(inputPassword, storedHash);  
        }  
    }  
    
    1. 配置 Realm:

    [main]  
    myRealm = com.example.MyRealm  
    myRealm.credentialsMatcher = com.example.BCryptMatcher  
    
2. Shiro 的CacheManager如何与 Redis 集成以提升性能?

答案

  1. 使用RedisCacheManager

public class RedisCacheManager implements CacheManager {  
    private RedisTemplate<String, Object> redisTemplate;  

    @Override  
    public <K, V> Cache<K, V> getCache(String name) {  
        return new RedisCache<>(name, redisTemplate);  
    }  
}  
  1. 配置 Shiro:

[main]  
cacheManager = com.example.RedisCacheManager  
securityManager.cacheManager = $cacheManager  
  1. 优势
    • 减少数据库查询压力。

    • 支持整个环境下的数据一致性。

3. 解释 Shiro 的ThreadContext及其在多线程环境下的潜在问题。

答案

  • ThreadContext:基于ThreadLocal存储当前线程的 Shiro 状态(如Subject、Session)。

  • 多线程问题
    • 线程池复用:若主线程将主题传递给子线程,可能导致状态污染或内存泄漏。

    • 解决方案
      1. 在子线程中手动绑定/解绑

      Subject subject = SecurityUtils.getSubject();  
      new Thread(() -> {  
          ThreadContext.bind(subject);  
          // 执行逻辑  
          ThreadContext.remove();  
      }).start();  
      
      1. 使用InheritableThreadLocal配置(需无意者,可能泄露敏感信息)。


4. Shiro 的AuthorizationInfoAuthenticationInfo有什么区别?

答案

  • 认证信息
    • 用于认证阶段,存储用户身份凭证(如密码、盐值、哈希迭代次数)。

    • 示例:SimpleAuthenticationInfo(username, hashedPassword, salt, realmName)

  • 授权信息
    • 用于授权阶段,存储用户的角色和权限集合。

    • 示例:SimpleAuthorizationInfo(roles, permissions)

  • 关键词区别
    • AuthenticationInfo关注“用户是谁”,AuthorizationInfo关注“用户能做什么”。

5. Shiro的SessionDAO接口设计有什么意义?如何实现会话持久化到数据库?

附件:⭐⭐⭐⭐
反馈:会话管理、持久化设计
答案

  • 意义:解耦关系存储逻辑,支持灵活扩展(如Redis、JDBC、Memory)。

  • JDBC持久化实现
    1. 创建表结构(如shiro_sessions表)。

    2. 实现JdbcSessionDAO

    public class MyJdbcSessionDAO extends JdbcSessionDAO {  
        @Override  
        protected Serializable doCreate(Session session) {  
            Serializable sessionId = generateSessionId(session);  
            assignSessionId(session, sessionId);  
            insertSession(session); // 插入数据库  
            return sessionId;  
        }  
        // 重写 read/update/delete 方法  
    }  
    
    1. 配置SessionManager

    [main]  
    sessionDAO = com.example.MyJdbcSessionDAO  
    securityManager.sessionManager.sessionDAO = $sessionDAO  
    
6.如何使用Shiro的EventBus实现机制安全审计日志?

组成部分:⭐⭐⭐⭐⭐
反馈单:事件驱动、审计日志
答案

  1. 监听Shiro事件(如登录成功、授权失败):

public class AuditLogListener implements EventListener {  
    @Subscribe  
    public void onLoginSuccess(LoginSuccessEvent event) {  
        Subject subject = event.getSubject();  
        log.info("User {} logged in from IP {}", subject.getPrincipal(), subject.getSession().getHost());  
    }  
}  
  1. 注册监听器

EventBus eventBus = securityManager.getEventBus();  
eventBus.register(new AuditLogListener());  
  1. 应用场景
    • 记录异常登录。

    • 监控敏感操作(如权限变更)。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值