WebAPI接口安全校验
通过网上查看相关WebAPI接口验证的方法,整理了一下,直接上代码,功能不复杂,有问题留言,
//-----------------------------------------------------------------------
// <copyright file="ApiAuthenticationFilter.cs" company="FenSiShengHuo, Ltd.">
// Copyright (c) 2018 , All rights reserved.
// </copyright>
//----------------------------------------------------------------------- using System;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Security.Principal;
using System.Threading;
using System.Web.Http.Controllers;
using System.Web.Http.Filters; namespace DotNet.WeChat.API.Attribute
{
using DotNet.Business;
using DotNet.Model;
using DotNet.Utilities; /// <summary>
/// ApiAuthenticationFilter
///
/// 2018-07-19 版本:1.0 JiShiYu 创建。
///
/// <author>
/// <name>JiShiYu</name>
/// <date>2018-07-19</date>
/// </author>
/// </summary>
public class ApiAuthenticationFilter : AuthorizationFilterAttribute
{
public override void OnAuthorization(HttpActionContext filterContext)
{
// 判断是否是不做授权检查的
var apiNoAuthenticationFilter = filterContext.ActionDescriptor.GetCustomAttributes<ApiNoAuthenticationFilter>();
if (apiNoAuthenticationFilter != null && apiNoAuthenticationFilter.Any())
{
return;
} BaseResult result = null;
var identity = ParseHeader(filterContext, out result); //取得資料內容
if (identity == null)
{
ChallengeAuthRequest(filterContext, result); //回傳錯誤訊息
return;
}
var genericPrincipal = new GenericPrincipal(identity, null);
// 在认证成功后将认证身份设置给当前线程中Principal属性
Thread.CurrentPrincipal = genericPrincipal;
result = OnAuthorizeUser(identity, filterContext);
if (!result.Status)
{
ChallengeAuthRequest(filterContext, result);
return;
}
} /// <summary>
/// 定义一个方法便校验,并将其修饰为虚方法,以免后续要添加其他有关用户数据
/// </summary>
/// <param name="appKey"></param>
/// <param name="appSecret"></param>
/// <param name="token"></param>
/// <param name="actionContext"></param>
/// <returns></returns>
protected virtual BaseResult OnAuthorizeUser(BasicAuthenticationIdentity identity, HttpActionContext actionContext)
{
BaseResult result = new BaseResult();
result.Status = false;
result.StatusCode = Status.ParameterError.ToString(); if (string.IsNullOrWhiteSpace(identity.SystemCode))
{
result.Status = false;
result.StatusCode = Status.ParameterError.ToString();
result.StatusMessage = "systemCode " + Status.ParameterError.ToDescription();
return result;
}
// 判断参数
if (identity.UserInfo != null)
{
// 防止伪造、判断用户的有效性
if (!ServiceUtil.VerifySignature(identity.UserInfo))
{
result.StatusCode = Status.SignatureError.ToString();
result.StatusMessage = "userInfo " + Status.SignatureError.ToDescription();
return result;
}
// 这里需要是已经登录的用户,不是已经被踢掉的用户
if (!Utilities.ValidateOpenId(identity.UserInfo.Id, identity.UserInfo.OpenId))
{
result.StatusCode = Status.SignatureError.ToString();
result.StatusMessage = "OpenId " + Status.SignatureError.ToDescription();
return result;
}
}
else
{
string ipAddress = Utilities.GetIPAddress(true);
// 检查是否为内部ip地址发送出去的手机短信
//if (onlyLocalIp)
//{
// if (!IpHelper.IsLocalIp(ipAddress))
// {
// // 不是内网发出的, 也不是信任的ip列表里的,直接给拒绝发送出去
// result.Status = false;
// result.StatusCode = Status.ErrorIPAddress.ToString();
// result.StatusMessage = ipAddress + " " + Status.ErrorIPAddress.ToDescription();
// }
//} if (string.IsNullOrWhiteSpace(identity.AppKey))
{
result.StatusCode = Status.ParameterError.ToString();
result.StatusMessage = "appKey " + Status.ParameterError.ToDescription();
return result;
}
if (string.IsNullOrWhiteSpace(identity.Signature))
{
result.StatusCode = Status.ParameterError.ToString();
result.StatusMessage = "signature " + Status.ParameterError.ToDescription();
return result;
} if (string.IsNullOrWhiteSpace(identity.TimeSpan))
{
result.StatusCode = Status.ParameterError.ToString();
result.StatusMessage = "TimeSpan " + Status.ParameterError.ToDescription();
return result;
}
else
{
long unixTimeStamp;
if (long.TryParse(identity.TimeSpan, out unixTimeStamp))
{
DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(, , )); // 当地时区
DateTime dtStart = startTime.AddSeconds(unixTimeStamp);
TimeSpan ts = DateTime.Now - dtStart;
if (ts.TotalMinutes > )
{
result.StatusCode = Status.ParameterError.ToString();
result.StatusMessage = "请求时间已过期,请检查请求服务器时间,传递当前时间戳";
return result;
}
}
else
{
result.StatusCode = Status.ParameterError.ToString();
result.StatusMessage = "TimeSpan时间戳参数错误,传递当前时间戳";
return result;
}
}
// AppSecret 不应该传
//if (string.IsNullOrWhiteSpace(identity.AppSecret))
//{
// result.StatusCode = Status.ParameterError.ToString();
// result.StatusMessage = "appSecret " + Status.ParameterError.ToDescription();
// return result;
//}
// 取服务器上的
var secret = BaseServicesLicenseManager.GetSecretByKeyByCache(identity.AppKey);
if (string.IsNullOrWhiteSpace(secret))
{
result.StatusCode = Status.ParameterError.ToString();
result.StatusMessage = "找不到appKey的密钥";
return result;
}
else
{
string serverSignature = System.Web.HttpUtility.UrlEncode(SecretUtilitiesBase.md5(identity.AppKey + identity.TimeSpan + secret));
if (!string.Equals(identity.Signature, serverSignature))
{
result.StatusCode = Status.ParameterError.ToString();
result.StatusMessage = "Signature 签名不正确";
return result;
}
} result = BaseServicesLicenseManager.CheckService(identity.AppKey, secret, true, false, , , identity.SystemCode, identity.PermissionCode);
if (result.Status)
{
// 从接口确定当前调用者
BaseUserEntity userEntity = BaseUserManager.GetObjectByCodeByCache(identity.AppKey, true);
if (userEntity != null)
{
BaseUserInfo userInfo = new BaseUserInfo();
userInfo.Id = userEntity.Id;
userInfo.Code = userEntity.Code;
userInfo.UserName = userEntity.UserName;
userInfo.NickName = userEntity.NickName;
userInfo.RealName = userEntity.RealName;
userInfo.CompanyId = userEntity.CompanyId;
userInfo.CompanyCode = userEntity.CompanyCode;
userInfo.CompanyName = userEntity.CompanyName;
userInfo.IPAddress = ipAddress;
identity.UserInfo = userInfo;
}
}
} return result;
} /// <summary>
/// 解析Headers
/// </summary>
/// <param name="filterContext"></param>
/// <returns></returns>
protected virtual BasicAuthenticationIdentity ParseHeader(HttpActionContext filterContext, out BaseResult result)
{
BasicAuthenticationIdentity authenticationIdentity = null;
result = new BaseResult();
BaseUserInfo userInfo = null;
string systemCode = string.Empty;
string appKey = string.Empty;
string timeSpan = string.Empty;
string signature = string.Empty;
string permissionCode = string.Empty;
string userInfoStr = string.Empty;
try
{
var re = filterContext.Request;
var headers = re.Headers;
if (headers.Contains("systemCode"))
{
systemCode = headers.GetValues("systemCode").First();
}
if (headers.Contains("appKey"))
{
appKey = headers.GetValues("appKey").First();
}
if (headers.Contains("timeSpan"))
{
timeSpan = headers.GetValues("timeSpan").First();
}
if (headers.Contains("signature"))
{
signature = headers.GetValues("signature").First();
}
if (headers.Contains("permissionCode"))
{
permissionCode = headers.GetValues("permissionCode").First();
}
if (headers.Contains("userInfoStr"))
{
userInfoStr = headers.GetValues("userInfoStr").First();
userInfo = BaseUserInfo.Deserialize(userInfoStr);
} authenticationIdentity = new BasicAuthenticationIdentity(systemCode, appKey, timeSpan, signature, userInfo, permissionCode);
result.Status = true;
result.StatusCode = Status.OK.ToString();
result.StatusMessage = "构建成功";
}
catch (Exception ex)
{
NLogHelper.Warn(ex, "ParseHeader");
result.Status = false;
result.StatusCode = Status.Error.ToString();
result.StatusMessage = "异常:" + ex.Message;
} return authenticationIdentity;
} /// <summary>
/// 授权验证失败
/// </summary>
/// <param name="filterContext"></param>
private static void ChallengeAuthRequest(HttpActionContext filterContext, BaseResult result)
{
var dnsHost = filterContext.Request.RequestUri.DnsSafeHost;
//filterContext.Response = filterContext.Request.CreateResponse(HttpStatusCode.Unauthorized);
filterContext.Response = filterContext.Request.CreateResponse(HttpStatusCode.OK, result);
filterContext.Response.Headers.Add("WWW-Authenticate", string.Format("Basic realm=\"{0}\"", dnsHost));
}
} /// <summary>
/// 认证实体类
/// </summary>
public class BasicAuthenticationIdentity : GenericIdentity
{
/// <summary>
/// 系统编号
/// </summary>
public string SystemCode { get; set; } /// <summary>
/// AppKey
/// </summary>
public string AppKey { get; set; } /// <summary>
/// 请求时间戳
/// </summary>
public string TimeSpan { get; set; } /// <summary>
/// Signature 签名值
/// </summary>
public string Signature { get; set; } /// <summary>
/// 用户信息
/// </summary>
public BaseUserInfo UserInfo { get; set; } /// <summary>
/// 权限编号
/// </summary>
public string PermissionCode { get; set; } /// <summary>
/// 构造函数
/// </summary>
/// <param name="systemCode"></param>
/// <param name="appKey"></param>
/// <param name="timeSpan"></param>
/// <param name="signature"></param>
/// <param name="userInfo"></param>
/// <param name="permissionCode"></param>
public BasicAuthenticationIdentity(string systemCode, string appKey, string timeSpan, string signature, BaseUserInfo userInfo, string permissionCode)
: base(appKey, "Basic")
{
this.SystemCode = systemCode;
this.AppKey = appKey;
this.TimeSpan = timeSpan;
this.Signature = signature;
this.UserInfo = userInfo;
this.PermissionCode = permissionCode;
}
}
}
不需要做校验的接口,加一个标签
//-----------------------------------------------------------------------
// <copyright file="ApiAuthenticationFilter.cs" company="FenSiShengHuo, Ltd.">
// Copyright (c) 2018 , All rights reserved.
// </copyright>
//----------------------------------------------------------------------- using System.Web.Http.Filters; namespace DotNet.WeChat.API.Attribute
{
/// <summary>
/// ApiNoAuthenticationFilter
/// 不做授权检查
///
/// 2018-07-19 版本:1.0 JiShiYu 创建。
///
/// <author>
/// <name>JiShiYu</name>
/// <date>2018-07-19</date>
/// </author>
/// </summary>
public class ApiNoAuthenticationFilter : AuthorizationFilterAttribute
{
}
}
全局校验,放在哪里,你懂的
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{ // 接口授权检查
config.Filters.Add(new ApiAuthenticationFilter()); }
}
测试效果

WebAPI接口安全校验的更多相关文章
- WebApi接口访问异常问题。尝试创建“testController”类型的控制器时出错。请确保控制器具有无参数公共构造函数
		本来运行的好好的webAPI 接口突然报了个 :“尝试创建“testController”类型的控制器时出错.请确保控制器具有无参数公共构造函数” 错误.耗了半宿最终解决了, 原因: api控制器中引 ... 
- WebApi接口 - 如何在应用中调用webapi接口
		很高兴能再次和大家分享webapi接口的相关文章,本篇将要讲解的是如何在应用中调用webapi接口:对于大部分做内部管理系统及类似系统的朋友来说很少会去调用别人的接口,因此可能在这方面存在一些困惑,希 ... 
- C#进阶系列——WebApi 接口返回值不困惑:返回值类型详解
		前言:已经有一个月没写点什么了,感觉心里空落落的.今天再来篇干货,想要学习Webapi的园友们速速动起来,跟着博主一起来学习吧.之前分享过一篇 C#进阶系列——WebApi接口传参不再困惑:传参详解 ... 
- C#进阶系列——WebApi 接口参数不再困惑:传参详解
		前言:还记得刚使用WebApi那会儿,被它的传参机制折腾了好久,查阅了半天资料.如今,使用WebApi也有段时间了,今天就记录下API接口传参的一些方式方法,算是一个笔记,也希望能帮初学者少走弯路.本 ... 
- ASP.NET MVC对WebAPI接口操作(添加,更新和删除)
		昨天<怎样操作WebAPI接口(显示数据)>http://www.cnblogs.com/insus/p/5670401.html 既有使用jQuery,也有使作HttpClient来从数 ... 
- WebApi 接口参数不再困惑:传参详解
		阅读目录 一.get请求 1.基础类型参数 2.实体作为参数 3.数组作为参数 4.“怪异”的get请求 二.post请求 1.基础类型参数 2.实体作为参数 3.数组作为参数 4.后台发送请求参数的 ... 
- 利用委托与Lambada创建和调用webapi接口
		前言 现在项目中用的是webapi,其中有以下问题: 1.接口随着开发的增多逐渐增加相当庞大. 2.接口调用时不好管理. 以上是主要问题,对此就衍生了一个想法: 如果每一个接口都一个配置文件来管 ... 
- 【转】C#进阶系列——WebApi 接口参数不再困惑:传参详解
		原文地址:http://www.cnblogs.com/landeanfen/archive/2016/04/06/5337072.html 阅读目录 一.get请求 1.基础类型参数 2.实体作为参 ... 
- WebAPI接口测试之matthewcv.WebApiTestClient
		WebAPI接口测试之matthewcv.WebApiTestClient matthewcv.WebApiTestClient 1.安装matthewcv.WebApiTestClient包 打开v ... 
随机推荐
- 将WCF寄宿在托管的Windows服务中
			在我之前的一篇博客中我介绍了如何发布WCF服务并将该服务寄宿于IIS上,今天我再来介绍一种方式,就是将WCF服务寄宿在Windows服务中,这样做有什么好处呢?当然可以省去部署IIS等一系列的问题,能 ... 
- 如何在MAC上运行exe程序
			1. 首先下载并运行CrossOver 运行CrossOver需要收费,试用期为14天,运行CrossOver 2. 选择exe应用程序,新建容器,安装exe程序 3.安装成功后,运行exe应用程序启 ... 
- debug错误
			Description "opt_design" can fail with error messages similar to the following: opt_design ... 
- Nginx 针对上游服务器缓存
			L:99 nginx缓存 : 定义存放缓存的载体 proxy_cache 指令 Syntax: proxy_cache zone | off; Default: proxy_cache off; Co ... 
- 实验吧 WEB 猫抓老鼠
			人生的第一道CTF题目哇,鸡冻 其实只是学了一下HTTP抓包得到的都是什么,就开始上手胡搞了 题目名字叫猫抓老鼠,还疯狂暗示catch!catch!catch!catch!,就想到要用抓包其实我是因为 ... 
- 学习Linux系统的态度及技巧
			Linux作为一种简单快捷的操作系统,现在被广泛的应用.也适合越来越多的计算机爱好者学习和使用.但是对于Linux很多人可能认为很难,觉得它很神秘,从而对其避而远之,但事实真的是这样么?linux真的 ... 
- Centos 7安装和配置 ElasticSearch入门小白
			实验环境: 操作系统:Centos 7.5 服务器ip:192.168.1.198 运行用户:root 网络环境:Internet 在企业生产环境有很多服务器的时候.很多业务模块的日志的时候运维人员需 ... 
- 免费开源的会计软件 GnuCash 3.4 发布
			导读 GnuCash 3.4已经发布,GnuCash是免费和开源的会计软件.GnuCash开发团队宣布推出GnuCash 3.4,这是3.x稳定版系列的第五版. 变化 在3.3和3.4之间,完成了以下 ... 
- NoClassDefFoundError与ClassNotFoundException
			原文地址: https://blog.csdn.net/jamesjxin/article/details/46606307 怎么解决NoClassDefFoundError错误 NoClassDef ... 
- BZOJ2038[2009国家集训队]小Z的袜子(hose)——莫队
			题目描述 作为一个生活散漫的人,小Z每天早上都要耗费很久从一堆五颜六色的袜子中找出一双来穿.终于有一天,小Z再也无法忍受这恼人的找袜子过程,于是他决定听天由命……具体来说,小Z把这N只袜子从1到N编号 ... 
