mirror of
https://github.com/securego/gosec.git
synced 2024-11-06 12:05:52 +00:00
402 lines
13 KiB
Go
402 lines
13 KiB
Go
|
// (c) Copyright 2016 Hewlett Packard Enterprise Development LP
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
package output
|
||
|
|
||
|
const html = `
|
||
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Go AST Scanner</title>
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.2.1/css/bulma.min.css" integrity="sha256-DRcOKg8NK1KkSkcymcGmxOtS/lAn0lHWJXRa15gMHHk=" crossorigin="anonymous"/>
|
||
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react.min.js" integrity="sha256-cLWs9L+cjZg8CjGHMpJqUgKKouPlmoMP/0wIdPtaPGs=" crossorigin="anonymous"></script>
|
||
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react-dom.min.js" integrity="sha256-JIW8lNqN2EtqC6ggNZYnAdKMJXRQfkPMvdRt+b0/Jxc=" crossorigin="anonymous"></script>
|
||
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.17.0/babel.min.js" integrity="sha256-1IWWLlCKFGFj/cjryvC7GDF5wRYnf9tSvNVVEj8Bm+o=" crossorigin="anonymous"></script>
|
||
|
<style>
|
||
|
div.issue div.tag, div.panel-block input[type="checkbox"] {
|
||
|
margin-right: 0.5em;
|
||
|
}
|
||
|
|
||
|
label.disabled {
|
||
|
text-decoration: line-through;
|
||
|
}
|
||
|
|
||
|
nav.panel select {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.break-word {
|
||
|
word-wrap: break-word;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<section class="section">
|
||
|
<div class="container">
|
||
|
<div id="content"></div>
|
||
|
</div>
|
||
|
</section>
|
||
|
<script>
|
||
|
var data = {{ . }};
|
||
|
</script>
|
||
|
<script type="text/babel">
|
||
|
var IssueTag = React.createClass({
|
||
|
render: function() {
|
||
|
var level = ""
|
||
|
if (this.props.level === "HIGH") {
|
||
|
level = "is-danger";
|
||
|
}
|
||
|
if (this.props.level === "MEDIUM") {
|
||
|
level = "is-warning";
|
||
|
}
|
||
|
return (
|
||
|
<div className={ "tag " + level }>
|
||
|
{ this.props.label }: { this.props.level }
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
var Issue = React.createClass({
|
||
|
render: function() {
|
||
|
return (
|
||
|
<div className="issue box">
|
||
|
<div className="is-pulled-right">
|
||
|
<IssueTag label="Severity" level={ this.props.data.severity }/>
|
||
|
<IssueTag label="Confidence" level={ this.props.data.confidence }/>
|
||
|
</div>
|
||
|
<p>
|
||
|
<strong className="break-word">
|
||
|
{ this.props.data.file } (line { this.props.data.line })
|
||
|
</strong>
|
||
|
<br/>
|
||
|
{ this.props.data.details }
|
||
|
</p>
|
||
|
<figure className="highlight">
|
||
|
<pre>
|
||
|
<code className="golang hljs">
|
||
|
{ this.props.data.code }
|
||
|
</code>
|
||
|
</pre>
|
||
|
</figure>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
var Stats = React.createClass({
|
||
|
render: function() {
|
||
|
return (
|
||
|
<p className="help">
|
||
|
Scanned { this.props.data.metrics.files.toLocaleString() } files
|
||
|
with { this.props.data.metrics.lines.toLocaleString() } lines of code.
|
||
|
</p>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
var Issues = React.createClass({
|
||
|
render: function() {
|
||
|
if (this.props.data.metrics.files === 0) {
|
||
|
return (
|
||
|
<div className="notification">
|
||
|
No source files found. Do you even Go?
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
if (this.props.data.issues.length === 0) {
|
||
|
return (
|
||
|
<div>
|
||
|
<div className="notification">
|
||
|
Awesome! No issues found!
|
||
|
</div>
|
||
|
<Stats data={ this.props.data } />
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
var issues = this.props.data.issues
|
||
|
.filter(function(issue) {
|
||
|
return this.props.severity.includes(issue.severity);
|
||
|
}.bind(this))
|
||
|
.filter(function(issue) {
|
||
|
return this.props.confidence.includes(issue.confidence);
|
||
|
}.bind(this))
|
||
|
.filter(function(issue) {
|
||
|
if (this.props.issueType) {
|
||
|
return issue.details.toLowerCase().startsWith(this.props.issueType.toLowerCase());
|
||
|
} else {
|
||
|
return true
|
||
|
}
|
||
|
}.bind(this))
|
||
|
.map(function(issue) {
|
||
|
return (<Issue data={issue} />);
|
||
|
}.bind(this));
|
||
|
|
||
|
if (issues.length === 0) {
|
||
|
return (
|
||
|
<div>
|
||
|
<div className="notification">
|
||
|
No issues matched given filters
|
||
|
(of total { this.props.data.issues.length } issues).
|
||
|
</div>
|
||
|
<Stats data={ this.props.data } />
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<div className="issues">
|
||
|
{ issues }
|
||
|
<Stats data={ this.props.data } />
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
var LevelSelector = React.createClass({
|
||
|
handleChange: function(level) {
|
||
|
return function(e) {
|
||
|
var updated = this.props.selected
|
||
|
.filter(function(item) { return item != level; });
|
||
|
if (e.target.checked) {
|
||
|
updated.push(level);
|
||
|
}
|
||
|
this.props.onChange(updated);
|
||
|
}.bind(this);
|
||
|
},
|
||
|
render: function() {
|
||
|
var highDisabled = !this.props.available.includes("HIGH");
|
||
|
var mediumDisabled = !this.props.available.includes("MEDIUM");
|
||
|
var lowDisabled = !this.props.available.includes("LOW");
|
||
|
|
||
|
return (
|
||
|
<span>
|
||
|
<label className={"label checkbox " + (highDisabled ? "disabled" : "") }>
|
||
|
<input
|
||
|
type="checkbox"
|
||
|
checked={ this.props.selected.includes("HIGH") }
|
||
|
disabled={ highDisabled }
|
||
|
onChange={ this.handleChange("HIGH") }/>
|
||
|
High
|
||
|
</label>
|
||
|
<label className={"label checkbox " + (mediumDisabled ? "disabled" : "") }>
|
||
|
<input
|
||
|
type="checkbox"
|
||
|
checked={ this.props.selected.includes("MEDIUM") }
|
||
|
disabled={ mediumDisabled }
|
||
|
onChange={ this.handleChange("MEDIUM") }/>
|
||
|
Medium
|
||
|
</label>
|
||
|
<label className={"label checkbox " + (lowDisabled ? "disabled" : "") }>
|
||
|
<input
|
||
|
type="checkbox"
|
||
|
checked={ this.props.selected.includes("LOW") }
|
||
|
disabled={ lowDisabled }
|
||
|
onChange={ this.handleChange("LOW") }/>
|
||
|
Low
|
||
|
</label>
|
||
|
</span>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
var Navigation = React.createClass({
|
||
|
updateSeverity: function(vals) {
|
||
|
this.props.onSeverity(vals);
|
||
|
},
|
||
|
updateConfidence: function(vals) {
|
||
|
this.props.onConfidence(vals);
|
||
|
},
|
||
|
updateIssueType: function(e) {
|
||
|
if (e.target.value == "all") {
|
||
|
this.props.onIssueType(null);
|
||
|
} else {
|
||
|
this.props.onIssueType(e.target.value);
|
||
|
}
|
||
|
},
|
||
|
render: function() {
|
||
|
var issueTypes = this.props.allIssueTypes
|
||
|
.map(function(it) {
|
||
|
return (
|
||
|
<option value={ it } selected={ this.props.issueType == it }>
|
||
|
{ it }
|
||
|
</option>
|
||
|
);
|
||
|
}.bind(this));
|
||
|
|
||
|
return (
|
||
|
<nav className="panel">
|
||
|
<div className="panel-heading">
|
||
|
Filters
|
||
|
</div>
|
||
|
<div className="panel-block">
|
||
|
<strong>
|
||
|
Severity
|
||
|
</strong>
|
||
|
</div>
|
||
|
<div className="panel-block">
|
||
|
<LevelSelector
|
||
|
selected={ this.props.severity }
|
||
|
available={ this.props.allSeverities }
|
||
|
onChange={ this.updateSeverity } />
|
||
|
</div>
|
||
|
<div className="panel-block">
|
||
|
<strong>
|
||
|
Confidence
|
||
|
</strong>
|
||
|
</div>
|
||
|
<div className="panel-block">
|
||
|
<LevelSelector
|
||
|
selected={ this.props.confidence }
|
||
|
available={ this.props.allConfidences }
|
||
|
onChange={ this.updateConfidence } />
|
||
|
</div>
|
||
|
<div className="panel-block">
|
||
|
<strong>
|
||
|
Issue Type
|
||
|
</strong>
|
||
|
</div>
|
||
|
<div className="panel-block">
|
||
|
<select onChange={ this.updateIssueType }>
|
||
|
<option value="all" selected={ !this.props.issueType }>
|
||
|
(all)
|
||
|
</option>
|
||
|
{ issueTypes }
|
||
|
</select>
|
||
|
</div>
|
||
|
</nav>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
var IssueBrowser = React.createClass({
|
||
|
getInitialState: function() {
|
||
|
return {};
|
||
|
},
|
||
|
componentWillMount: function() {
|
||
|
this.updateIssues(this.props.data);
|
||
|
},
|
||
|
handleSeverity: function(val) {
|
||
|
this.updateIssueTypes(this.props.data.issues, val, this.state.confidence);
|
||
|
this.setState({severity: val});
|
||
|
},
|
||
|
handleConfidence: function(val) {
|
||
|
this.updateIssueTypes(this.props.data.issues, this.state.severity, val);
|
||
|
this.setState({confidence: val});
|
||
|
},
|
||
|
handleIssueType: function(val) {
|
||
|
this.setState({issueType: val});
|
||
|
},
|
||
|
updateIssues: function(data) {
|
||
|
if (!data) {
|
||
|
this.setState({data: data});
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
var allSeverities = data.issues
|
||
|
.map(function(issue) {
|
||
|
return issue.severity
|
||
|
})
|
||
|
.sort()
|
||
|
.filter(function(item, pos, ary) {
|
||
|
return !pos || item != ary[pos - 1];
|
||
|
});
|
||
|
|
||
|
var allConfidences = data.issues
|
||
|
.map(function(issue) {
|
||
|
return issue.confidence
|
||
|
})
|
||
|
.sort()
|
||
|
.filter(function(item, pos, ary) {
|
||
|
return !pos || item != ary[pos - 1];
|
||
|
});
|
||
|
|
||
|
var selectedSeverities = allSeverities;
|
||
|
var selectedConfidences = allConfidences;
|
||
|
|
||
|
this.updateIssueTypes(data.issues, selectedSeverities, selectedConfidences);
|
||
|
|
||
|
this.setState({
|
||
|
data: data,
|
||
|
severity: selectedSeverities,
|
||
|
allSeverities: allSeverities,
|
||
|
confidence: selectedConfidences,
|
||
|
allConfidences: allConfidences,
|
||
|
issueType: null
|
||
|
});
|
||
|
},
|
||
|
updateIssueTypes: function(issues, severities, confidences) {
|
||
|
var allTypes = issues
|
||
|
.filter(function(issue) {
|
||
|
return severities.includes(issue.severity);
|
||
|
})
|
||
|
.filter(function(issue) {
|
||
|
return confidences.includes(issue.confidence);
|
||
|
})
|
||
|
.map(function(issue) {
|
||
|
return issue.details;
|
||
|
})
|
||
|
.sort()
|
||
|
.filter(function(item, pos, ary) {
|
||
|
return !pos || item != ary[pos - 1];
|
||
|
});
|
||
|
|
||
|
if (this.state.issueType && !allTypes.includes(this.state.issueType)) {
|
||
|
this.setState({issueType: null});
|
||
|
}
|
||
|
|
||
|
this.setState({allIssueTypes: allTypes});
|
||
|
},
|
||
|
render: function() {
|
||
|
return (
|
||
|
<div className="content">
|
||
|
<div className="columns">
|
||
|
<div className="column is-one-quarter">
|
||
|
<Navigation
|
||
|
severity={ this.state.severity }
|
||
|
confidence={ this.state.confidence }
|
||
|
issueType={ this.state.issueType }
|
||
|
allSeverities={ this.state.allSeverities }
|
||
|
allConfidences={ this.state.allConfidences }
|
||
|
allIssueTypes={ this.state.allIssueTypes }
|
||
|
onSeverity={ this.handleSeverity }
|
||
|
onConfidence={ this.handleConfidence }
|
||
|
onIssueType={ this.handleIssueType }
|
||
|
/>
|
||
|
</div>
|
||
|
<div className="column is-three-quarters">
|
||
|
<Issues
|
||
|
data={ this.props.data }
|
||
|
severity={ this.state.severity }
|
||
|
confidence={ this.state.confidence }
|
||
|
issueType={ this.state.issueType }
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<IssueBrowser data={ data } />,
|
||
|
document.getElementById("content")
|
||
|
);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>`
|