From 8f52bcb8ab0ce8c4a3fabd7d3c4f25b1d54c3c1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A5=E6=AF=93=E6=B3=BD?= <13204402429@stu.ecnu.edu.cn> Date: Sun, 17 Jan 2021 21:40:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20'bpSeo.cs'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bpSeo.cs | 692 --------------------------------------------------------------- 1 file changed, 692 deletions(-) delete mode 100644 bpSeo.cs diff --git a/bpSeo.cs b/bpSeo.cs deleted file mode 100644 index 2ddcc26..0000000 --- a/bpSeo.cs +++ /dev/null @@ -1,692 +0,0 @@ -using System; -using System.Data; -using System.Configuration; -using System.Web; -using System.Web.Security; -using System.Web.UI; -using System.Web.UI.WebControls; -using System.Web.UI.WebControls.WebParts; -using System.Data.SqlClient; -using System.Linq; -using System.Text; -using System.Management; //在工程(project)的引用中,右键,添加引用 -using System.DirectoryServices; //在工程(project)的引用中,右键,添加引用 -using Microsoft.JScript; //获取脚本解释引擎用 -using System.Diagnostics; //速度测试用 -using System.IO; - -/// -/// Summary description for BasicPage -/// -/// -namespace Basic -{ - public class bpSeo : System.Web.UI.Page - { - public string newString;//返回被截取的字符串 - public string connstring; - public string strSql; - public SqlConnection myconn; - public SqlCommand mycommand; - public SqlDataReader myreader; - public SqlDataAdapter myadapter; - public DataSet ds; - public DataView dv; - public DataTable tzDataTable; - // - public string strTitle = null; - public string strDescription = null; - public string strKeys = null; - //参数设置开始 - - public string strServer = "."; - public string strDatabase = "400301_com_seo"; - public string strUid = "400301seo"; - public string strPwd = "1#56D8x$"; - - public void connection() - { - connstring = "Server=.;Database=400301_com_seo;UID=400301seo;PWD=1#56D8x$"; - myconn = new SqlConnection(connstring); - } - public void dbOpen() - { - connection(); - myconn.Open(); - } - public void dbClose() - { - myconn.Close(); - } - public void MessageBox(string url, string message, int type) - { - if (type == 0) - { - System.Web.HttpContext.Current.Response.Write(""); - - } - else if (type == 1) - { - System.Web.HttpContext.Current.Response.Write(""); - } - } - /// - ///返回数据集DataSet - /// - /// - /// - /// - public DataSet SelectDataBase(string tableName, string tempStrSQL) - { - connection(); - ds = new DataSet(); - this.myadapter = new SqlDataAdapter(tempStrSQL, this.myconn); - this.myadapter.Fill(ds, tableName); - return ds; - } - /// - ///返回数据集DataTable - /// - /// - /// - /// - public DataTable SelectDataTable(string tempStrSQL) - { - connection(); - myconn.Open(); - SqlCommand cmd = new SqlCommand(tempStrSQL, this.myconn); - SqlDataReader reader = cmd.ExecuteReader(CommandBehavior.CloseConnection); - DataTable dt = new DataTable(); - dt.Load(reader); - reader.Dispose(); - return dt; - } - /// - /// 返回单条数据 - /// - /// - /// - public SqlDataReader getRead(string tempStrSql) - { - connection(); - SqlCommand mycommand = new SqlCommand(tempStrSql, myconn); - myconn.Open(); - SqlDataReader myreader = mycommand.ExecuteReader(CommandBehavior.CloseConnection); - return myreader; - } - /// - /// 执行更新操作 - /// - /// - /// - public bool doExecute(string tempStrSql) - { - connection(); - SqlCommand mycommand = new SqlCommand(tempStrSql, myconn); - myconn.Open(); - try - { - mycommand.ExecuteNonQuery(); - return true; - } - finally - { - mycommand.Dispose(); - myconn.Close(); - myconn.Dispose(); - } - } - /// - /// 截取字符串 - /// - /// - /// - /// - public string CutString(string str, int length) - { - if (str != "") - { - if (str.Length > length) - { - newString = str.Substring(0, length) + "..."; - } - else - { - newString = str; - } - } - return newString; - } - /// - /// 清空浏览器客户端的缓存 - /// - public bool ClearClientPageCache() - { - HttpContext.Current.Response.Buffer = true; - HttpContext.Current.Response.Expires = 0; - HttpContext.Current.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1); - HttpContext.Current.Response.AddHeader("pragma", "no-cache"); - HttpContext.Current.Response.AddHeader("cache-control", "private"); - HttpContext.Current.Response.CacheControl = "no-cache"; - return true; - } - /// - /// 检测Jmail4.3邮箱组件或FSO文本读写 - /// - /// - /// - public bool IsObjInstalled(string _obj) - { - bool IsFSOInstalled = false; - try - { - Server.CreateObject(_obj); - IsFSOInstalled = true; - - } - catch (Exception ex) - { - IsFSOInstalled = false; - } - return IsFSOInstalled; - } - /// - /// 获取脚本解释引擎 - /// - /// - public string JiaoBenYinqing() - { - return GlobalObject.ScriptEngine() + "/" + GlobalObject.ScriptEngineMajorVersion() + "." + GlobalObject.ScriptEngineMinorVersion() + "." + GlobalObject.ScriptEngineBuildVersion(); - } - /// - /// 获取服务器ip - /// - /// - public string ServerIp() - { - string stringMAC = ""; - string stringIP = ""; - ManagementClass MC = new ManagementClass("Win32_NetworkAdapterConfiguration"); - ManagementObjectCollection MOC = MC.GetInstances(); - foreach (ManagementObject MO in MOC) - { - if ((bool)MO["IPEnabled"] == true) - { - stringMAC += MO["MACAddress"].ToString(); - //TextMAC.Text = stringMAC.ToString(); - string[] IPAddresses = (string[])MO["IPAddress"]; - if (IPAddresses.Length > 0) stringIP = IPAddresses[0]; - } - } - return stringIP; - } - /// - /// 获取操作系统 - /// - /// - public string ServerOS() - { - return System.Environment.OSVersion.ToString(); - } - /// - /// 整数运算速度测试 - /// - /// - public string IntTest() - { - string Value; - Stopwatch timer = new Stopwatch(); - long total = 0; - timer.Start(); - for (int i = 1; i <= 500000; i++) - { - total += i; - } - timer.Stop(); - decimal micro = timer.Elapsed.Ticks / 10m; - Value = "整数运算测试,正在进行50万次加法运算......已完成!" + micro.ToString() + "微妙" + ""; - return Value; - } - /// - /// 实数运算速度测试 - /// - /// - public string FloatTest() - { - string Value; - Stopwatch timer = new Stopwatch(); - long total = 0; - timer.Start(); - for (int i = 1; i <= 200000; i++) - { - total *= total; - } - timer.Stop(); - decimal micro = timer.Elapsed.Ticks / 10m; - Value = "浮点数运算测试,正在进行20万次乘法运算......已完成!" + micro.ToString() + "微妙" + ""; - return Value; - } - /// - /// 备份数据库 - /// - /// - /// - /// - /// - public string DbBackup(string strDbName, string strFileName, string strRname) - { - try - { - SQLDMO.Backup oBackup = new SQLDMO.BackupClass(); - SQLDMO.SQLServer oSQLServer = new SQLDMO.SQLServerClass(); - oSQLServer.LoginSecure = false; - oSQLServer.Connect(strServer, strUid, strPwd); - oBackup.Action = SQLDMO.SQLDMO_BACKUP_TYPE.SQLDMOBackup_Database; - oBackup.Database = strDbName; - - string Path = strFileName + strRname; - oBackup.Files = Path; - oBackup.BackupSetName = strRname; - oBackup.BackupSetDescription = "备份数据库"; - oBackup.Initialize = true; - oBackup.SQLBackup(oSQLServer); - oSQLServer.DisConnect(); - return "ok"; - } - catch (Exception ex) - { - return ex.Message; - } - } - /// - /// 还原数据库 - /// - /// - /// - /// - /// - public bool DbRestore(string strDbName, string strFileName, string strRname) - { - strDbName = strDatabase; - strFileName = ""; - SQLDMO.Restore oRestore = new SQLDMO.RestoreClass(); - SQLDMO.SQLServer oSQLServer = new SQLDMO.SQLServerClass(); - try - { - oSQLServer.LoginSecure = false; - oSQLServer.Connect(strServer, strUid, strPwd); - oRestore.Action = SQLDMO.SQLDMO_RESTORE_TYPE.SQLDMORestore_Database; - oRestore.Database = strDbName; - oRestore.Files = strFileName + strRname; - oRestore.FileNumber = 1; - oRestore.ReplaceDatabase = true; - oRestore.SQLRestore(oSQLServer); - return true; - } - catch - { - return false; - } - } - /// - /// 获取系统使用者名称 - /// - /// - public string readConame() - { - string strConame; - SqlDataReader Myreader; - Myreader = getRead("select webname from tbset where id=1"); - if (Myreader.Read()) - { - strConame = Myreader["webname"].ToString(); - } - else - { - strConame = "暂无数据(请先进行系统基本设置)"; - } - Myreader.Close(); - return strConame; - } - /// - /// 统计服务器空间占用情况 - /// - /// - /// - public long GetDirectoryLength(string dirPath) - { - //判断给定的路径是否存在,如果不存在则退出 - if (!Directory.Exists(dirPath)) - return 0; - long len = 0; - - //定义一个DirectoryInfo对象 - DirectoryInfo di = new DirectoryInfo(dirPath); - - //通过GetFiles方法,获取di目录中的所有文件的大小 - foreach (FileInfo fi in di.GetFiles()) - { - len += fi.Length; - } - //获取di中所有的文件夹,并存到一个新的对象数组中,以进行递归 - DirectoryInfo[] dis = di.GetDirectories(); - if (dis.Length > 0) - { - for (int i = 0; i < dis.Length; i++) - { - len += GetDirectoryLength(dis[i].FullName); - } - } - return len; - } - /// - /// 添加要锁定的IP - /// - /// - /// - public int lockip(string strAddIp) - { - int returnId = 0; - int intId = 1; - bool bsign = false; - string strIpGroup; - string strIp = strAddIp; - SqlDataReader myreader = getRead("select ip from TbIp where id=1"); - if (myreader.Read()) - { - string[] strIPzu = myreader["ip"].ToString().Split('|'); - for (int i = 0; i < strIPzu.Length; i++) - { - if (strIp == strIPzu[i]) - { - bsign = true; - } - } - strIpGroup = myreader["ip"].ToString(); - myreader.Close(); - if (bsign == false) - { - if (strIpGroup == "") - { - strIpGroup = strIp; - } - else - { - strIpGroup = strIpGroup + "|" + strIp; - } - if (doExecute("update tbIp set ip='" + strIpGroup + "' where id=1")) - { - //Response.Redirect("Success.aspx?message=IP锁定成功!&url=IpManage.aspx"); - returnId = 1; - } - } - else if (bsign == true) - { - //Response.Redirect("Error.aspx?message=锁定失败,该IP已被锁定!&url=IpManage.aspx"); - returnId = 2; - } - } - else - { - myreader.Close(); - if (doExecute("insert into tbIp(id,ip)values(" + intId + ",'" + strIp + "')")) - { - //Response.Redirect("Success.aspx?message=IP锁定成功!&url=IpManage.aspx"); - returnId = 3; - } - } - return returnId; - } - /// - /// 显示被锁定IP - /// - /// - public string showLockIp() - { - string strIp = ""; - SqlDataReader myreader = getRead("select ip from tbIp where id=1"); - if (myreader.Read()) - { - strIp = myreader["ip"].ToString(); - } - myreader.Close(); - return strIp.Trim(); - } - /// - /// 更新锁定的IP列表 - /// - /// - /// - public bool updateIp(string strIps) - { - bool sign = false; - SqlDataReader myreader = getRead("select * from tbIp where id=1"); - if (myreader.Read()) - { - if (doExecute("update tbIp set ip='" + strIps + "' where id=1")) - { - sign = true; - } - } - else - { - int id = 1; - if (doExecute("insert into tbIp(id,ip)values(" + id + ",'" + strIps + "')")) - { - sign = true; - } - } - myreader.Close(); - return sign; - } - /// - /// 判断是否关闭网站 - /// - /// - public void ShowWebState() - { - string state = "1"; - SqlDataReader myreader = getRead("select state from TBset where id=1"); - if (myreader.Read()) - { - state = myreader["state"].ToString(); - if (state == "0") - { - System.Web.HttpContext.Current.Response.Write(""); - } - } - myreader.Close(); - } - /// - /// 读取Title,Description,Keys - /// - public void showWebTitle() - { - int intId = 1; - SqlDataReader Myreader = getRead("select * from TBset where id=" + intId + ""); - if (Myreader.Read()) - { - strTitle = Myreader["webname"].ToString(); - strDescription = Myreader["webdescription"].ToString(); - strKeys = Myreader["webkeys"].ToString(); - } - Myreader.Close(); - StartProcessRequest();//分析用户请求是否正常 - ShowWebState();//判断网站是否关闭 - } - /// - /// 分析用户请求是否正常 - /// - /// - public static void StartProcessRequest() - { - try - { - string getkeys = ""; - //string sqlErrorPage = System.Configuration.ConfigurationSettings.AppSettings["CustomErrorPage"].ToString(); - if (System.Web.HttpContext.Current.Request.QueryString != null) - { - - for (int i = 0; i < System.Web.HttpContext.Current.Request.QueryString.Count; i++) - { - getkeys = System.Web.HttpContext.Current.Request.QueryString.Keys[i]; - if (!ProcessSqlStr(System.Web.HttpContext.Current.Request.QueryString[getkeys], 0)) - { - //System.Web.HttpContext.Current.Response.Redirect (sqlErrorPage+"?errmsg=sqlserver&sqlprocess=true"); - System.Web.HttpContext.Current.Response.Write(""); - System.Web.HttpContext.Current.Response.End(); - } - } - } - if (System.Web.HttpContext.Current.Request.Form != null) - { - for (int i = 0; i < System.Web.HttpContext.Current.Request.Form.Count; i++) - { - getkeys = System.Web.HttpContext.Current.Request.Form.Keys[i]; - if (!ProcessSqlStr(System.Web.HttpContext.Current.Request.Form[getkeys], 1)) - { - //System.Web.HttpContext.Current.Response.Redirect (sqlErrorPage+"?errmsg=sqlserver&sqlprocess=true"); - System.Web.HttpContext.Current.Response.Write(""); - System.Web.HttpContext.Current.Response.End(); - } - } - } - } - catch - { - // 错误处理: 处理用户提交信息! - } - } - /**/ - /// - /// 分析用户请求是否正常 - /// - /// 传入用户提交数据 - /// 返回是否含有SQL注入式攻击代码 - private static bool ProcessSqlStr(string Str, int type) - { - string SqlStr; - - if (type == 1) - SqlStr = "exec|insert|select|delete|update|count|chr|mid|master|truncate|char|declare"; - else - SqlStr = "'|and|exec|insert|select|delete|update|count|*|chr|mid|master|truncate|char|declare|>|<"; - - bool ReturnValue = true; - try - { - if (Str != "") - { - string[] anySqlStr = SqlStr.Split('|'); - foreach (string ss in anySqlStr) - { - if (Str.IndexOf(ss) >= 0) - { - ReturnValue = false; - } - } - } - } - catch - { - ReturnValue = false; - } - return ReturnValue; - } - /// - /// 判断是否是数字 - /// - /// - /// bool - public bool IsNumberic(string oText)//判断是否是数字 - { - try - { - int var1 = System.Convert.ToInt32(oText); - if (var1 < 0) - { - return false; - } - return true; - } - catch - { - return false; - } - } - /// - /// 截取字符串 - /// - /// - /// - /// string - public string SubString(string inputString, int length) - { - if (Encoding.UTF8.GetByteCount(inputString) <= length * 2) - { - return inputString; - } - ASCIIEncoding ascii = new ASCIIEncoding(); - int tempLen = 0; - string tempString = ""; - byte[] s = ascii.GetBytes(inputString); - for (int i = 0; i < s.Length; i++) - { - if ((int)s[i] == 63) - { - tempLen += 2; - } - else - { - tempLen += 1; - } - tempString += inputString.Substring(i, 1); - if (tempLen >= (length - 1) * 2) - break; - } - //如果截过则加上半个省略号 - if (System.Text.Encoding.Default.GetBytes(inputString).Length > length) - tempString += ""; - return tempString; - } - /// - /// 显示登录状态 - /// - public void ShowLoginState() - { - if (Session["j95fn3839vfn93h9n29n"] == null) - { - System.Web.HttpContext.Current.Response.Write(""); - } - } - #region JS提示============================================ - - /// - /// 添加编辑删除提示 - /// - /// 提示文字 - /// 返回地址 - /// CSS样式 - public void JscriptMsg(string msgtitle, string url, string msgcss) - { - string msbox = "parent.jsprint(\"" + msgtitle + "\", \"" + url + "\", \"" + msgcss + "\")"; - ClientScript.RegisterClientScriptBlock(Page.GetType(), "JsPrint", msbox, true); - } - - /// - /// 带回传函数的添加编辑删除提示 - /// - /// 提示文字 - /// 返回地址 - /// CSS样式 - /// JS回调函数 - public void JscriptMsg(string msgtitle, string url, string msgcss, string callback) - { - string msbox = "parent.jsprint(\"" + msgtitle + "\", \"" + url + "\", \"" + msgcss + "\", " + callback + ")"; - ClientScript.RegisterClientScriptBlock(Page.GetType(), "JsPrint", msbox, true); - } - #endregion - - - } -}