Toggle navigation
Toggle navigation
This project
Loading...
Sign in
노현종
/
2018-1-Capstone1-VulnNotti
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
노현종
2018-05-23 00:56:19 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
4b7e2f371650dbf5e1f5ea67a6b9ce3f285c74d1
4b7e2f37
2 parents
a417248e
c6a2bab8
Merge branch 'master' into master3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
0 deletions
VulnNotti/templates/registration/logged_out.html
Vulnerablity_DB/VulnCrawler/VulnAbstractCrawler.cs
Vulnerablity_DB/VulnCrawler/VulnC.cs
_config.yml
VulnNotti/templates/registration/logged_out.html
deleted
100644 → 0
View file @
a417248
File mode changed
Vulnerablity_DB/VulnCrawler/VulnAbstractCrawler.cs
View file @
4b7e2f3
...
...
@@ -382,11 +382,18 @@ namespace VulnCrawler
{
return
false
;
}
/* 대문자로 구성된 변수면 넘어감 */
if
(
m
.
Value
.
All
(
c
=>
char
.
IsUpper
(
c
)
||
!
char
.
IsLetter
(
c
)))
{
return
false
;
}
/* 제일 앞자리가 숫자로 시작하면 넘어감 */
if
(
Regex
.
IsMatch
(
m
.
Value
,
invalidPattern
))
{
return
false
;
}
/* 전 단계에서 구한 메서드 목록에 있으면 넘어감 */
if
(
methodSets
.
Contains
(
m
.
Value
))
{
...
...
@@ -403,6 +410,8 @@ namespace VulnCrawler
{
return
false
;
}
return
true
;
})
.
Distinct
(
new
MatchComparer
());
...
...
Vulnerablity_DB/VulnCrawler/VulnC.cs
View file @
4b7e2f3
This diff is collapsed. Click to expand it.
_config.yml
0 → 100644
View file @
4b7e2f3
theme
:
jekyll-theme-midnight
\ No newline at end of file
Please
register
or
login
to post a comment