122 lines
3.1 KiB
TypeScript
122 lines
3.1 KiB
TypeScript
import React from 'react';
|
|
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
import { ThemeProvider } from '@primer/react';
|
|
|
|
import { CodePaths } from '../../view/common';
|
|
import type { CodeFlow } from '../../remote-queries/shared/analysis-result';
|
|
|
|
export default {
|
|
title: 'Code Paths',
|
|
component: CodePaths,
|
|
decorators: [
|
|
(Story) => (
|
|
<ThemeProvider colorMode="auto">
|
|
<Story />
|
|
</ThemeProvider>
|
|
)
|
|
]
|
|
} as ComponentMeta<typeof CodePaths>;
|
|
|
|
const Template: ComponentStory<typeof CodePaths> = (args) => (
|
|
<CodePaths {...args} />
|
|
);
|
|
|
|
export const PowerShell = Template.bind({});
|
|
|
|
const codeFlows: CodeFlow[] = [
|
|
{
|
|
'threadFlows': [
|
|
{
|
|
fileLink: {
|
|
fileLinkPrefix: 'https://github.com/PowerShell/PowerShell/blob/450d884668ca477c6581ce597958f021fac30bff',
|
|
filePath: 'src/System.Management.Automation/help/UpdatableHelpSystem.cs'
|
|
},
|
|
codeSnippet: {
|
|
startLine: 1260,
|
|
endLine: 1260,
|
|
text: ' string extractPath = Path.Combine(destination, entry.FullName);'
|
|
},
|
|
highlightedRegion: {
|
|
startLine: 1260,
|
|
startColumn: 72,
|
|
endLine: 1260,
|
|
endColumn: 86,
|
|
},
|
|
message: {
|
|
tokens: [
|
|
{
|
|
t: 'text',
|
|
text: 'access to property FullName : String'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
fileLink: {
|
|
fileLinkPrefix: 'https://github.com/PowerShell/PowerShell/blob/450d884668ca477c6581ce597958f021fac30bff',
|
|
filePath: 'src/System.Management.Automation/help/UpdatableHelpSystem.cs'
|
|
},
|
|
codeSnippet: {
|
|
startLine: 1260,
|
|
endLine: 1260,
|
|
text: ' string extractPath = Path.Combine(destination, entry.FullName);'
|
|
},
|
|
highlightedRegion: {
|
|
startLine: 1260,
|
|
startColumn: 46,
|
|
endLine: 1260,
|
|
endColumn: 87,
|
|
},
|
|
message: {
|
|
tokens: [
|
|
{
|
|
t: 'text',
|
|
text: 'call to method Combine : String'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
fileLink: {
|
|
fileLinkPrefix: 'https://github.com/PowerShell/PowerShell/blob/450d884668ca477c6581ce597958f021fac30bff',
|
|
filePath: 'src/System.Management.Automation/help/UpdatableHelpSystem.cs'
|
|
},
|
|
codeSnippet: {
|
|
startLine: 1261,
|
|
endLine: 1261,
|
|
text: ' entry.ExtractToFile(extractPath);'
|
|
},
|
|
highlightedRegion: {
|
|
startLine: 1261,
|
|
startColumn: 45,
|
|
endLine: 1261,
|
|
endColumn: 56,
|
|
},
|
|
message: {
|
|
tokens: [
|
|
{
|
|
t: 'text',
|
|
text: 'access to local variable extractPath'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
PowerShell.args = {
|
|
codeFlows: codeFlows,
|
|
ruleDescription: 'ZipSlip vulnerability',
|
|
message: {
|
|
tokens: [
|
|
{
|
|
t: 'text',
|
|
text: 'This zip file may have a dangerous path'
|
|
}
|
|
]
|
|
},
|
|
severity: 'Warning',
|
|
};
|