Showing
3 changed files
with
4 additions
and
4 deletions
... | @@ -81,7 +81,7 @@ namespace VulnCrawler | ... | @@ -81,7 +81,7 @@ namespace VulnCrawler |
81 | /* 폴더 중에 linux가 있으면 잠깐 넘어감 (너무 커서 테스트 힘듦) */ | 81 | /* 폴더 중에 linux가 있으면 잠깐 넘어감 (너무 커서 테스트 힘듦) */ |
82 | if (directory.Contains("linux")) | 82 | if (directory.Contains("linux")) |
83 | { | 83 | { |
84 | - continue; | 84 | + // continue; |
85 | } | 85 | } |
86 | // 템플릿 패턴화 T : VulnAbstractCrawler | 86 | // 템플릿 패턴화 T : VulnAbstractCrawler |
87 | VulnWorker.Run<VulnC>(directory); | 87 | VulnWorker.Run<VulnC>(directory); | ... | ... |
... | @@ -146,8 +146,8 @@ namespace VulnCrawler | ... | @@ -146,8 +146,8 @@ namespace VulnCrawler |
146 | //sql = "INSERT INTO vulnInfo (vulnId, lenBlock, repositName, cve, funcName, codeOriBefore, codeOriAfter, codeAbsBefore, codeAbsAfter, blockHash) " + | 146 | //sql = "INSERT INTO vulnInfo (vulnId, lenBlock, repositName, cve, funcName, codeOriBefore, codeOriAfter, codeAbsBefore, codeAbsAfter, blockHash) " + |
147 | // "VALUES(" + last_vulnId + ", " + vuln.LenBlock + ", " + vuln.RepositName + ", " + vuln.Cve + ", " + vuln.FuncName + ", " + vuln.CodeOriBefore + ", " + vuln.CodeOriAfter + ", " + vuln.CodeAbsBefore + ", " + vuln.CodeAbsAfter + ", '" + vuln.BlockHash + "')"; | 147 | // "VALUES(" + last_vulnId + ", " + vuln.LenBlock + ", " + vuln.RepositName + ", " + vuln.Cve + ", " + vuln.FuncName + ", " + vuln.CodeOriBefore + ", " + vuln.CodeOriAfter + ", " + vuln.CodeAbsBefore + ", " + vuln.CodeAbsAfter + ", '" + vuln.BlockHash + "')"; |
148 | Console.WriteLine(sql); | 148 | Console.WriteLine(sql); |
149 | - cmd = new MySqlCommand(sql, Conn); | 149 | + // cmd = new MySqlCommand(sql, Conn); |
150 | - cmd.ExecuteNonQuery(); | 150 | + // cmd.ExecuteNonQuery(); |
151 | //Conn.Close(); | 151 | //Conn.Close(); |
152 | } | 152 | } |
153 | catch (Exception e) | 153 | catch (Exception e) | ... | ... |
... | @@ -38,7 +38,7 @@ namespace VulnCrawler | ... | @@ -38,7 +38,7 @@ namespace VulnCrawler |
38 | string repoName = dsp[dsp.Length - 1]; | 38 | string repoName = dsp[dsp.Length - 1]; |
39 | // 현재 커밋에 대한 패치 엔트리 배열을 출력함 | 39 | // 현재 커밋에 대한 패치 엔트리 배열을 출력함 |
40 | PrintPatchEntrys(entrys, crawler, message, cve, repoName); | 40 | PrintPatchEntrys(entrys, crawler, message, cve, repoName); |
41 | - Console.ReadLine(); | 41 | + // Console.ReadLine(); |
42 | } | 42 | } |
43 | } | 43 | } |
44 | } | 44 | } | ... | ... |
-
Please register or login to post a comment