{"id":270,"date":"2012-02-20T04:45:49","date_gmt":"2012-02-20T04:45:49","guid":{"rendered":"http:\/\/anyons.net\/dev\/?p=270"},"modified":"2022-07-12T14:48:58","modified_gmt":"2022-07-12T05:48:58","slug":"sql-injection-%eb%b0%a9%ec%96%b4","status":"publish","type":"post","link":"https:\/\/anyons.net\/?p=270","title":{"rendered":"SQL Injection \ubc29\uc5b4"},"content":{"rendered":"<p>\ucd9c\ucc98 : <a href=\"http:\/\/forums.asp.net\/t\/1254125.aspx\">http:\/\/forums.asp.net\/t\/1254125.aspx<\/a><\/p>\n<p>\ub97c \ubcf4\uba74 ASP.NET 1.1\uc774\ub0d0 2.0 \uc774\ub0d0\uc5d0 \ub530\ub77c \uac01\uac01 \uc774\ub807\uac8c \ud558\ub77c\uace0 \ud55c\ub2e4. \uc544\uc9c1\uc740 \ub09c web.config\uac00 \uc775\uc219\uce58 \uc54a\uc544\uc11c \uadf8\ub7f0\uc9c0 1.1 \ubc29\uc2dd\uc73c\ub85c \ud558\uba74 \uc798 \ub418\ub294\ub370 2.0 \ubc29\uc2dd\uc73c\ub85c\ub294 \uc798 \uc548\ub41c\ub2e4. -_-<\/p>\n<p><strong>ASP.NET 1.1 C#<\/strong><\/p>\n<p>global.asax<\/p>\n<pre class=\"lang:c# decode:true\">using System.Globalization;\n\/\/Defines the set of characters that will be checked.\n\/\/You can add to this list, or remove items from this list, as appropriate for your site\npublic static string[] blackList = {\n  \"--\",\n  \";--\",\n  \";\",\n  \"\/*\",\n  \"*\/\",\n  \"@@\",\n  \"@\",\n  \"char\",\n  \"nchar\",\n  \"varchar\",\n  \"nvarchar\",\n  \"alter\",\n  \"begin\",\n  \"cast\",\n  \"create\",\n  \"cursor\",\n  \"declare\",\n  \"delete\",\n  \"drop\",\n  \"end\",\n  \"exec\",\n  \"execute\",\n  \"fetch\",\n  \"insert\",\n  \"kill\",\n  \"open\",\n  \"select\",\n  \"sys\",\n  \"sysobjects\",\n  \"syscolumns\",\n  \"table\",\n  \"update\"\n};\n\/\/The utility method that performs the blacklist comparisons\n\/\/You can change the error handling, and error redirect location to whatever makes sense for your site.\nprivate void CheckInput(string parameter) {\n  CompareInfo comparer = CultureInfo.InvariantCulture.CompareInfo;\n  for (int i = 0; i &lt; blackList.Length; i++) {\n    if (comparer.IndexOf(parameter, blackList[i], CompareOptions.IgnoreCase) &gt;= 0) {\n      \/\/\n      \/\/Handle the discovery of suspicious Sql characters here\n      \/\/\n      Response.Redirect(\"~\/Error.aspx\"); \/\/generic error page on your site\n    }\n  }\n}\n\nvoid Application_BeginRequest(object sender, EventArgs e) {\n  foreach(string key in Request.QueryString)\n  CheckInput(Request.QueryString[key]);\n  foreach(string key in Request.Form)\n  CheckInput(Request.Form[key]);\n  foreach(string key in Request.Cookies)\n  CheckInput(Request.Cookies[key].Value);\n}<\/pre>\n<p><strong>ASP.NET 2.0 C#<\/strong><\/p>\n<p>App_Code\/SampleSqlInjectionScreeningModule.cs<\/p>\n<pre class=\"lang:c# decode:true\">using System;\nusing System.Data;\nusing System.Configuration;\nusing System.Linq;\nusing System.Web;\nusing System.Web.Security;\nusing System.Web.UI;\nusing System.Web.UI.HtmlControls;\nusing System.Web.UI.WebControls;\nusing System.Web.UI.WebControls.WebParts;\nusing System.Xml.Linq;\n\nnamespace Sample {\n  public class SampleSqlInjectionScreeningModuleCS: IHttpModule {\n    \/\/Defines the set of characters that will be checked.\n    \/\/You can add to this list, or remove items from this list, as appropriate for your site\n    public static string[] blackList = {\n      \"--\",\n      \";--\",\n      \";\",\n      \"\/*\",\n      \"*\/\",\n      \"@@\",\n      \"@\",\n      \"char\",\n      \"nchar\",\n      \"varchar\",\n      \"nvarchar\",\n      \"alter\",\n      \"begin\",\n      \"cast\",\n      \"create\",\n      \"cursor\",\n      \"declare\",\n      \"delete\",\n      \"drop\",\n      \"end\",\n      \"exec\",\n      \"execute\",\n      \"fetch\",\n      \"insert\",\n      \"kill\",\n      \"open\",\n      \"select\",\n      \"sys\",\n      \"sysobjects\",\n      \"syscolumns\",\n      \"table\",\n      \"update\"\n    };\n\n    public void Dispose() {\n      \/\/no-op\n    }\n\n    \/\/Tells ASP.NET that there is code to run during BeginRequest\n    public void Init(HttpApplication app) {\n      app.BeginRequest += new EventHandler(app_BeginRequest);\n    }\n\n    \/\/For each incoming request, check the query-string, form and cookie values for suspicious values.\n    void app_BeginRequest(object sender, EventArgs e) {\n      HttpRequest Request = (sender as HttpApplication).Context.Request;\n\n      foreach(string key in Request.QueryString)\n      CheckInput(Request.QueryString[key]);\n      foreach(string key in Request.Form)\n      CheckInput(Request.Form[key]);\n      foreach(string key in Request.Cookies)\n      CheckInput(Request.Cookies[key].Value);\n    }\n\n    \/\/The utility method that performs the blacklist comparisons\n    \/\/You can change the error handling, and error redirect location to whatever makes sense for your site.\n    private void CheckInput(string parameter) {\n      for (int i = 0; i &lt; blackList.Length; i++) {\n        if ((parameter.IndexOf(blackList[i], StringComparison.OrdinalIgnoreCase) &gt;= 0)) {\n          \/\/\n          \/\/Handle the discovery of suspicious Sql characters here\n          \/\/\n          HttpContext.Current.Response.Redirect(\"~\/Error.aspx\"); \/\/generic error page on your site\n        }\n      }\n    }\n  }\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\ucd9c\ucc98 : http:\/\/forums.asp.net\/t\/1254125.aspx<\/p>\n<p>\ub97c \ubcf4\uba74 ASP.NET 1.1\uc774\ub0d0 2.0 \uc774\ub0d0\uc5d0 \ub530\ub77c \uac01\uac01 \uc774\ub807\uac8c \ud558\ub77c\uace0 \ud55c\ub2e4. \uc544\uc9c1\uc740 \ub09c web.config\uac00 \uc775\uc219\uce58 \uc54a\uc544\uc11c \uadf8\ub7f0\uc9c0 1.1 \ubc29\uc2dd\uc73c\ub85c \ud558\uba74 \uc798 \ub418\ub294\ub370 2.0 \ubc29\uc2dd\uc73c\ub85c\ub294 \uc798 \uc548\ub41c\ub2e4. -_-<\/p>\n<p>ASP.NET 1.1 C#<\/p>\n<p>global.asax<\/p>\n<p> using System.Globalization; \/\/Defines the set of characters that will be checked. \/\/You can add to this list, or remove items from [&#8230;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[96],"tags":[31,267],"class_list":["post-270","post","type-post","status-publish","format-standard","hentry","category-programming","tag-csharp","tag-sql-injection","odd"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SQL Injection \ubc29\uc5b4 - anydragon<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/anyons.net\/?p=270\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Injection \ubc29\uc5b4 - anydragon\" \/>\n<meta property=\"og:description\" content=\"\ucd9c\ucc98 : http:\/\/forums.asp.net\/t\/1254125.aspx \ub97c \ubcf4\uba74 ASP.NET 1.1\uc774\ub0d0 2.0 \uc774\ub0d0\uc5d0 \ub530\ub77c \uac01\uac01 \uc774\ub807\uac8c \ud558\ub77c\uace0 \ud55c\ub2e4. \uc544\uc9c1\uc740 \ub09c web.config\uac00 \uc775\uc219\uce58 \uc54a\uc544\uc11c \uadf8\ub7f0\uc9c0 1.1 \ubc29\uc2dd\uc73c\ub85c \ud558\uba74 \uc798 \ub418\ub294\ub370 2.0 \ubc29\uc2dd\uc73c\ub85c\ub294 \uc798 \uc548\ub41c\ub2e4. -_- ASP.NET 1.1 C# global.asax using System.Globalization; \/\/Defines the set of characters that will be checked. \/\/You can add to this list, or remove items from [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/anyons.net\/?p=270\" \/>\n<meta property=\"og:site_name\" content=\"anydragon\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/anydragon\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/anydragon\" \/>\n<meta property=\"article:published_time\" content=\"2012-02-20T04:45:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-12T05:48:58+00:00\" \/>\n<meta name=\"author\" content=\"anydragon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@anydragon\" \/>\n<meta name=\"twitter:site\" content=\"@anydragon\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"anydragon\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=270#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=270\"},\"author\":{\"name\":\"anydragon\",\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"headline\":\"SQL Injection \ubc29\uc5b4\",\"datePublished\":\"2012-02-20T04:45:49+00:00\",\"dateModified\":\"2022-07-12T05:48:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=270\"},\"wordCount\":26,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"keywords\":[\"csharp\",\"sql injection\"],\"articleSection\":[\"Programming\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/anyons.net\\\/?p=270#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=270\",\"url\":\"https:\\\/\\\/anyons.net\\\/?p=270\",\"name\":\"SQL Injection \ubc29\uc5b4 - anydragon\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#website\"},\"datePublished\":\"2012-02-20T04:45:49+00:00\",\"dateModified\":\"2022-07-12T05:48:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=270#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/anyons.net\\\/?p=270\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/anyons.net\\\/?p=270#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/anyons.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Injection \ubc29\uc5b4\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/anyons.net\\\/#website\",\"url\":\"https:\\\/\\\/anyons.net\\\/\",\"name\":\"anydragon\",\"description\":\"mac, linux, aws, c, c++, mysql, mssql, redis, csharp, nodejs, rust, golang\",\"publisher\":{\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/anyons.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/anyons.net\\\/#\\\/schema\\\/person\\\/e848d5666536ff82e9ee531c70249f2b\",\"name\":\"anydragon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"url\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"contentUrl\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\",\"width\":2560,\"height\":1440,\"caption\":\"anydragon\"},\"logo\":{\"@id\":\"http:\\\/\\\/anyons.net\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/bg3-scaled.jpeg\"},\"sameAs\":[\"http:\\\/\\\/anyons.net\",\"https:\\\/\\\/www.facebook.com\\\/anydragon\",\"https:\\\/\\\/x.com\\\/anydragon\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCr78KWpvmk398vPfpUTWNLg\"],\"url\":\"https:\\\/\\\/anyons.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL Injection \ubc29\uc5b4 - anydragon","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/anyons.net\/?p=270","og_locale":"ko_KR","og_type":"article","og_title":"SQL Injection \ubc29\uc5b4 - anydragon","og_description":"\ucd9c\ucc98 : http:\/\/forums.asp.net\/t\/1254125.aspx \ub97c \ubcf4\uba74 ASP.NET 1.1\uc774\ub0d0 2.0 \uc774\ub0d0\uc5d0 \ub530\ub77c \uac01\uac01 \uc774\ub807\uac8c \ud558\ub77c\uace0 \ud55c\ub2e4. \uc544\uc9c1\uc740 \ub09c web.config\uac00 \uc775\uc219\uce58 \uc54a\uc544\uc11c \uadf8\ub7f0\uc9c0 1.1 \ubc29\uc2dd\uc73c\ub85c \ud558\uba74 \uc798 \ub418\ub294\ub370 2.0 \ubc29\uc2dd\uc73c\ub85c\ub294 \uc798 \uc548\ub41c\ub2e4. -_- ASP.NET 1.1 C# global.asax using System.Globalization; \/\/Defines the set of characters that will be checked. \/\/You can add to this list, or remove items from [...]","og_url":"https:\/\/anyons.net\/?p=270","og_site_name":"anydragon","article_publisher":"https:\/\/www.facebook.com\/anydragon","article_author":"https:\/\/www.facebook.com\/anydragon","article_published_time":"2012-02-20T04:45:49+00:00","article_modified_time":"2022-07-12T05:48:58+00:00","author":"anydragon","twitter_card":"summary_large_image","twitter_creator":"@anydragon","twitter_site":"@anydragon","twitter_misc":{"\uae00\uc4f4\uc774":"anydragon","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/anyons.net\/?p=270#article","isPartOf":{"@id":"https:\/\/anyons.net\/?p=270"},"author":{"name":"anydragon","@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"headline":"SQL Injection \ubc29\uc5b4","datePublished":"2012-02-20T04:45:49+00:00","dateModified":"2022-07-12T05:48:58+00:00","mainEntityOfPage":{"@id":"https:\/\/anyons.net\/?p=270"},"wordCount":26,"commentCount":0,"publisher":{"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"keywords":["csharp","sql injection"],"articleSection":["Programming"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/anyons.net\/?p=270#respond"]}]},{"@type":"WebPage","@id":"https:\/\/anyons.net\/?p=270","url":"https:\/\/anyons.net\/?p=270","name":"SQL Injection \ubc29\uc5b4 - anydragon","isPartOf":{"@id":"https:\/\/anyons.net\/#website"},"datePublished":"2012-02-20T04:45:49+00:00","dateModified":"2022-07-12T05:48:58+00:00","breadcrumb":{"@id":"https:\/\/anyons.net\/?p=270#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/anyons.net\/?p=270"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/anyons.net\/?p=270#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/anyons.net\/"},{"@type":"ListItem","position":2,"name":"SQL Injection \ubc29\uc5b4"}]},{"@type":"WebSite","@id":"https:\/\/anyons.net\/#website","url":"https:\/\/anyons.net\/","name":"anydragon","description":"mac, linux, aws, c, c++, mysql, mssql, redis, csharp, nodejs, rust, golang","publisher":{"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/anyons.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":["Person","Organization"],"@id":"https:\/\/anyons.net\/#\/schema\/person\/e848d5666536ff82e9ee531c70249f2b","name":"anydragon","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","url":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","contentUrl":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg","width":2560,"height":1440,"caption":"anydragon"},"logo":{"@id":"http:\/\/anyons.net\/wp-content\/uploads\/2022\/06\/bg3-scaled.jpeg"},"sameAs":["http:\/\/anyons.net","https:\/\/www.facebook.com\/anydragon","https:\/\/x.com\/anydragon","https:\/\/www.youtube.com\/channel\/UCr78KWpvmk398vPfpUTWNLg"],"url":"https:\/\/anyons.net\/?author=1"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack-related-posts":[{"id":709,"url":"https:\/\/anyons.net\/?p=709","url_meta":{"origin":270,"position":0},"title":"asp.net C# textbox \uc5d0\uc11c \uc790\ub3d9\uc644\uc131","author":"anydragon","date":"2014\ub144 08\uc6d4 27\uc77c","format":false,"excerpt":"@Html.TextBoxFor( model => model.m_modelAccout.m_strExpenseMoney, new { @class = \"typeahead\", autocomplete = \"off\", data_provide = \"typeahead\", data_items = \"4\", data_source = Model.a } ) var listevents = new List<string>(); listevents.Add(\"1111\"); listevents.Add(\"1222\"); listevents.Add(\"1333\"); listevents.Add(\"1234\"); listevents.Add(\"1555\"); var events = listevents.ToArray(); var strJson = JsonConvert.SerializeObject(listevents);","rel":"","context":"&quot;Programming&quot;\uc5d0\uc11c","block_context":{"text":"Programming","link":"https:\/\/anyons.net\/?cat=96"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":692,"url":"https:\/\/anyons.net\/?p=692","url_meta":{"origin":270,"position":1},"title":"windows server 2012\uc5d0 iis \uc124\uc815","author":"anydragon","date":"2014\ub144 07\uc6d4 13\uc77c","format":false,"excerpt":"\uc5ed\ud560 \ucd94\uac00\uc5d0\uc11c iis \ucd94\uac00 \uae30\ub2a5 \ucd94\uac00\uc5d0\uc11c .net framework 3.5 \ucd94\uac00 ASP.NET 4.5 \ucd94\uac00 iis\uc5d0\uc11c ftp \uc11c\ubc84 \ucd94\uac00 \uc6f9 \ud50c\ub7ab\ud3fc \uc124\uce58 \uad00\ub9ac\uc790 -> \uc81c\ud488 -> \uc11c\ubc84\uc5d0\uc11c .NET Extensibility 4.5 IIS: ISAPI \ud544\ud130 IIS: ISAPI \ud655\uc7a5 \uc6f9 \ud50c\ub7ab\ud3fc \uc124\uce58 \uad00\ub9ac\uc790 -> \uc81c\ud488 -> \ud504\ub808\uc784\uc6cc\ud06c\uc5d0\uc11c","rel":"","context":"&quot;Configuration&quot;\uc5d0\uc11c","block_context":{"text":"Configuration","link":"https:\/\/anyons.net\/?cat=94"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1354,"url":"https:\/\/anyons.net\/?p=1354","url_meta":{"origin":270,"position":2},"title":"[IIS7] web.config\uc5d0\uc11c HttpModules, HttpHandlers \uc0ac\uc6a9 \uc2dc \uc624\ub958 \ucc98\ub9ac","author":"anydragon","date":"2017\ub144 06\uc6d4 19\uc77c","format":false,"excerpt":"\ubb38\uc81c IIS 7\uc5d0\uc11c \uc544\ub798 \uadf8\ub9bc\uacfc \uac19\uc740 HttpModules \ub610\ub294 HttpHandlers\uc640 \uad00\ub828\ub41c \uc624\ub958\uba54\uc2dc\uc9c0\uac00 \ub098\ud0c0\ub098\uc9c0 \uc54a\uc73c\uc168\uc2b5\ub2c8\uae4c? \uc774\ub294 \ub2e4\uc74c \ucf54\ub4dc\uc640 \uac19\uc774 <httpModule> \ub610\ub294 <HttpHandlers>\ub97c \uc0ac\uc6a9\ud558\uc5ec \ubc1c\uc0dd\ud588\uc744 \uac00\ub2a5\uc131\uc774 \ub192\uc2b5\ub2c8\ub2e4. IIS 6, \uc774\uc804 \ubc84\uc804, VisualStudio \uc0c1\uc5d0\uc11c\ub294 \uc815\uc0c1 \ub3d9\uc791\ud558\uc9c0\ub9cc, IIS7\uc758 \uacbd\uc6b0\uc5d0\ub294 <system.web>\uc544\ub798 <httpModules> \ub610\ub294 <httpHandlers>\ub97c \ud3ec\ud568\ud560 \uacbd\uc6b0 Exception\uc774 \ubc1c\uc0dd\ud569\ub2c8\ub2e4. <system.web> \u00a0\u00a0<httpModules> \u00a0\u00a0\u00a0\u00a0\u00a0<add name=\"testClass\" type=\"Test.TestClass,test\" \/> \u00a0\u00a0<\/httpModules> <\/system.web>\u2026","rel":"","context":"&quot;Configuration&quot;\uc5d0\uc11c","block_context":{"text":"Configuration","link":"https:\/\/anyons.net\/?cat=94"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":202,"url":"https:\/\/anyons.net\/?p=202","url_meta":{"origin":270,"position":3},"title":"usb\ub97c \uc774\uc6a9\ud55c \uc708\ub3c4\uc6b0 \uc124\uce58","author":"anydragon","date":"2011\ub144 11\uc6d4 14\uc77c","format":false,"excerpt":"\uad00\ub9ac\uc790 \uad8c\ud55c\uc73c\ub85c cmd \ucc3d \ub744\uc6c0 diskpart list disk select disk1 # list disk\uc5d0\uc11c \uc798 \uc120\ud0dd \ud574\uc57c \ud568 clean create partition primary active format fs:ntfs quick dvd \ub0b4\uc6a9\uc744 usb\ub85c \ubcf5\uc0ac \uadf8 \uc774\ud6c4\uc5d0 usb\ub85c \ubd80\ud305","rel":"","context":"&quot;Command&quot;\uc5d0\uc11c","block_context":{"text":"Command","link":"https:\/\/anyons.net\/?cat=93"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2796,"url":"https:\/\/anyons.net\/?p=2796","url_meta":{"origin":270,"position":4},"title":"mac \uc5d0\uc11c dotnet core \uac1c\ubc1c\ud658\uacbd \ub9cc\ub4e4\uae30 &#8211; 1","author":"anydragon","date":"2022\ub144 08\uc6d4 20\uc77c","format":false,"excerpt":"\uc6b0\uc120\uc740 dotnet sdk\ub97c \uc124\uce58 \ud574\uc57c \ud55c\ub2e4. dotnet 5.0 \uae4c\uc9c0\ub294 brew\ub97c \ud1b5\ud574 \uc124\uce58\ud558\uae30\uac00 \ub9ce\uc774 \uc560\ub9e4 \ud588\uc9c0\ub9cc 6.0\ub300\ub85c \uac00\uba74\uc11c brew\ub97c \ud1b5\ud574 \uc124\uce58\uac00 \uac00\ub2a5\ud558\ub2e4. \uc77c\ub2e8 brew\ub97c \uc124\uce58\ud55c\ub2e4. \/bin\/bash -c \"$(curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/HEAD\/install.sh)\" brew\ub85c dotnet sdk \ub97c \uc124\uce58 \ud55c\ub2e4. brew install --cask dotnet-sdk \uadf8\ub9ac\uace0 vscode\ub97c \uc124\uce58\ud55c\ub2e4 brew install --cask visual-studio-code vscode\uc5d0\uc11c dotnet \uac1c\ubc1c\uc744 \ud558\uae30\u2026","rel":"","context":"&quot;Configuration&quot;\uc5d0\uc11c","block_context":{"text":"Configuration","link":"https:\/\/anyons.net\/?cat=94"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":503,"url":"https:\/\/anyons.net\/?p=503","url_meta":{"origin":270,"position":5},"title":"\uc6b0\ubd84\ud22c \ud55c \ud558\ub4dc\ub514\uc2a4\ud06c\uc5d0\uc11c \ub2e4\ub978 \ud558\ub4dc\ub514\uc2a4\ud06c\ub85c \ud1b5\uc9f8\ub85c \uc62e\uae38\ub54c","author":"anydragon","date":"2013\ub144 01\uc6d4 21\uc77c","format":false,"excerpt":"\ucd9c\ucc98 : http:\/\/www.phpschool.com\/gnuboard4\/bbs\/board.php?bo_table=tipntech&wr_id=66063&sca=&sfl=wr_name%7C%7Csubject&stx=%BC%DB%C8%BF%C1%F8&sop=and&page=4 \ud604\uc7ac \uad6c\ub3d9\uc911\uc778 \ud30c\ud2f0\uc158\uc744 \ubcf5\uc0ac\ud558\ub294\uac74 \ube44\ucd94. (\ub370\uc774\ud130\uac00 \ubcc0\ud558\ubbc0\ub85c)\uc6b0\ubd84\ud22c \ub370\uc2a4\ud06c\ud0d1 CD \ub85c \ubd80\ud305\ud558\uba74 hdd \ub3c4\uc6c0 \uc5c6\uc774 \ubd80\ud305\ub428. (\ub77c\uc774\ube0cCD \ub77c\uace0 \ud568.) \uac01\uac01 \ub9c8\uc6b4\ud2b8 \ud574 \uc90c. rsync -aHAX old\/* new\/ \uc774\ub807\uac8c \ud558\uba74 \uc2dc\uac04\uae4c\uc9c0 \uace0\ub300\ub85c \ubcf5\uc0ac \ub428.old\/ new\/ \uc774\ub807\uac8c \ud558\uba74 new\/old\/ \ub85c \ubcf5\uc0ac\ub418\ub2c8 \uc8fc\uc758. dd, cat \ub4f1\ub4f1\uc758 \ubc29\uc2dd\uc740 \uac19\uc740\uc6a9\ub7c9\uc73c\ub85c \uace0\uc815\ub41c\ub2e4\ub294 \ub2e8\uc810\uc774 \uc788\uc74c.tar\u2026","rel":"","context":"&quot;Command&quot;\uc5d0\uc11c","block_context":{"text":"Command","link":"https:\/\/anyons.net\/?cat=93"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts\/270","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=270"}],"version-history":[{"count":0,"href":"https:\/\/anyons.net\/index.php?rest_route=\/wp\/v2\/posts\/270\/revisions"}],"wp:attachment":[{"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=270"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=270"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/anyons.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=270"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}