Update packages, fix pupetter, resolve some TypeScript warnings

This commit is contained in:
Alicia Sykes 2023-07-22 15:44:03 +01:00
parent dd0be7ed05
commit 049fb8da95
8 changed files with 29 additions and 21 deletions

View File

@ -12,6 +12,7 @@
"@types/react": "^18.2.15", "@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3", "@types/react-router-dom": "^5.3.3",
"@types/react-simple-maps": "^3.0.0",
"@types/styled-components": "^5.1.26", "@types/styled-components": "^5.1.26",
"axios": "^1.4.0", "axios": "^1.4.0",
"chrome-aws-lambda": "^10.1.0", "chrome-aws-lambda": "^10.1.0",
@ -19,9 +20,9 @@
"got": "^13.0.0", "got": "^13.0.0",
"jest-styled-components": "^7.1.1", "jest-styled-components": "^7.1.1",
"netlify-cli": "^15.9.1", "netlify-cli": "^15.9.1",
"netlify-plugin-chromium": "^1.1.4",
"perf_hooks": "^0.0.1", "perf_hooks": "^0.0.1",
"psl": "^1.9.0", "psl": "^1.9.0",
"puppeteer": "^20.9.0",
"puppeteer-core": "^20.9.0", "puppeteer-core": "^20.9.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
@ -62,9 +63,6 @@
"last 1 safari version" "last 1 safari version"
] ]
}, },
"devDependencies": {
"@types/react-simple-maps": "^3.0.0"
},
"compilerOptions": { "compilerOptions": {
"allowJs": true, "allowJs": true,
"outDir": "./dist" "outDir": "./dist"

View File

@ -1,6 +1,6 @@
import { Card } from 'components/Form/Card'; import { Card } from 'components/Form/Card';
import Row, { ExpandableRow, RowProps } from 'components/Form/Row'; import Row, { RowProps } from 'components/Form/Row';
const cardStyles = ''; const cardStyles = '';

View File

@ -1,6 +1,5 @@
import { Card } from 'components/Form/Card'; import { Card } from 'components/Form/Card';
import Heading from 'components/Form/Heading';
import Row, { ExpandableRow } from 'components/Form/Row'; import Row, { ExpandableRow } from 'components/Form/Row';
import colors from 'styles/colors'; import colors from 'styles/colors';

View File

@ -2,7 +2,6 @@
import styled from 'styled-components'; import styled from 'styled-components';
import { Card } from 'components/Form/Card'; import { Card } from 'components/Form/Card';
import Heading from 'components/Form/Heading'; import Heading from 'components/Form/Heading';
import Row, { ExpandableRow, RowProps } from 'components/Form/Row';
import colors from 'styles/colors'; import colors from 'styles/colors';
const cardStyles = ` const cardStyles = `

View File

@ -32,8 +32,8 @@ const MapChart = (location: Props) => {
stroke={colors.primary} stroke={colors.primary}
strokeWidth={0.5} strokeWidth={0.5}
> >
{({ geographies }) => {({ geographies }: any) =>
geographies.map((geo) => ( geographies.map((geo: any) => (
<Geography key={geo.rsmKey} geography={geo} /> <Geography key={geo.rsmKey} geography={geo} />
)) ))
} }

View File

@ -18,7 +18,6 @@ import ServerLocationCard from 'components/Results/ServerLocation';
import ServerInfoCard from 'components/Results/ServerInfo'; import ServerInfoCard from 'components/Results/ServerInfo';
import HostNamesCard from 'components/Results/HostNames'; import HostNamesCard from 'components/Results/HostNames';
import WhoIsCard from 'components/Results/WhoIs'; import WhoIsCard from 'components/Results/WhoIs';
import BuiltWithCard from 'components/Results/BuiltWith';
import LighthouseCard from 'components/Results/Lighthouse'; import LighthouseCard from 'components/Results/Lighthouse';
import ScreenshotCard from 'components/Results/Screenshot'; import ScreenshotCard from 'components/Results/Screenshot';
import SslCertCard from 'components/Results/SslCert'; import SslCertCard from 'components/Results/SslCert';
@ -51,7 +50,6 @@ import useMotherHook from 'hooks/motherOfAllHooks';
import { import {
getLocation, ServerLocation, getLocation, ServerLocation,
makeTechnologies, TechnologyGroup,
parseCookies, Cookie, parseCookies, Cookie,
parseRobotsTxt, parseRobotsTxt,
applyWhoIsResults, Whois, applyWhoIsResults, Whois,
@ -157,7 +155,9 @@ const Results = (): JSX.Element => {
response.json() response.json()
.then(data => resolve(data)) .then(data => resolve(data))
.catch(error => resolve( .catch(error => resolve(
{ error: `Failed to process response, likely due to Netlify's 10-sec limit on lambda functions. Error: ${error}`} { error: `Failed to get a valid response 😢.
This is likely due the target not exposing the required data, or limitations in how Netlify executes lambda functions, such as the 10-sec timeout.
Error info: ${error}`}
)); ));
}); });
}; };
@ -247,7 +247,6 @@ const Results = (): JSX.Element => {
.then(res => getLocation(res)), .then(res => getLocation(res)),
}); });
// Get hostnames and associated domains from Shodan // Get hostnames and associated domains from Shodan
const [shoadnResults, updateShodanResults] = useMotherHook<ShodanResults>({ const [shoadnResults, updateShodanResults] = useMotherHook<ShodanResults>({
jobId: 'hosts', jobId: 'hosts',
@ -258,7 +257,6 @@ const Results = (): JSX.Element => {
.then(res => parseShodanResults(res)), .then(res => parseShodanResults(res)),
}); });
// Check for open ports // Check for open ports
const [portsResults, updatePortsResults] = useMotherHook({ const [portsResults, updatePortsResults] = useMotherHook({
jobId: 'ports', jobId: 'ports',
@ -432,7 +430,6 @@ const Results = (): JSX.Element => {
{ id: 'status', title: 'Server Status', result: serverStatusResults, Component: ServerStatusCard, refresh: updateServerStatusResults }, { id: 'status', title: 'Server Status', result: serverStatusResults, Component: ServerStatusCard, refresh: updateServerStatusResults },
{ id: 'ports', title: 'Open Ports', result: portsResults, Component: OpenPortsCard, refresh: updatePortsResults }, { id: 'ports', title: 'Open Ports', result: portsResults, Component: OpenPortsCard, refresh: updatePortsResults },
{ id: 'screenshot', title: 'Screenshot', result: screenshotResult || lighthouseResults?.fullPageScreenshot?.screenshot, Component: ScreenshotCard, refresh: updateScreenshotResult }, { id: 'screenshot', title: 'Screenshot', result: screenshotResult || lighthouseResults?.fullPageScreenshot?.screenshot, Component: ScreenshotCard, refresh: updateScreenshotResult },
// { id: 'screenshot', title: 'Screenshot', result: lighthouseResults?.fullPageScreenshot?.screenshot, Component: ScreenshotCard, refresh: updateLighthouseResults },
{ id: 'txt-records', title: 'TXT Records', result: txtRecordResults, Component: TxtRecordCard, refresh: updateTxtRecordResults }, { id: 'txt-records', title: 'TXT Records', result: txtRecordResults, Component: TxtRecordCard, refresh: updateTxtRecordResults },
{ id: 'hsts', title: 'HSTS Check', result: hstsResults, Component: HstsCard, refresh: updateHstsResults }, { id: 'hsts', title: 'HSTS Check', result: hstsResults, Component: HstsCard, refresh: updateHstsResults },
{ id: 'whois', title: 'Domain Info', result: whoIsResults, Component: WhoIsCard, refresh: updateWhoIsResults }, { id: 'whois', title: 'Domain Info', result: whoIsResults, Component: WhoIsCard, refresh: updateWhoIsResults },

1
src/typings/react-simple-maps.d.ts vendored Normal file
View File

@ -0,0 +1 @@
declare module 'react-simple-maps';

View File

@ -5706,6 +5706,16 @@ cosmiconfig@8.1.0:
parse-json "^5.0.0" parse-json "^5.0.0"
path-type "^4.0.0" path-type "^4.0.0"
cosmiconfig@8.2.0:
version "8.2.0"
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.2.0.tgz#f7d17c56a590856cd1e7cee98734dca272b0d8fd"
integrity sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==
dependencies:
import-fresh "^3.2.1"
js-yaml "^4.1.0"
parse-json "^5.0.0"
path-type "^4.0.0"
cosmiconfig@^6.0.0: cosmiconfig@^6.0.0:
version "6.0.0" version "6.0.0"
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
@ -11045,11 +11055,6 @@ netlify-headers-parser@7.1.2, netlify-headers-parser@^7.1.2:
path-exists "^5.0.0" path-exists "^5.0.0"
toml "^3.0.0" toml "^3.0.0"
netlify-plugin-chromium@^1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/netlify-plugin-chromium/-/netlify-plugin-chromium-1.1.4.tgz#d0a04ef2fbd677a19f3be94ccf47c320d2c3c334"
integrity sha512-yLgw6YePOF38URWVsHg3nBBoVSKcbMabKxziJX5i01/weyXWtFQVFvDWSOhyWkQgoMJ6zwF2UznA0Icy+m4pow==
netlify-redirect-parser@14.1.3, netlify-redirect-parser@^14.1.3: netlify-redirect-parser@14.1.3, netlify-redirect-parser@^14.1.3:
version "14.1.3" version "14.1.3"
resolved "https://registry.yarnpkg.com/netlify-redirect-parser/-/netlify-redirect-parser-14.1.3.tgz#5b4a4692f563341d91375504c4a7718a1e29806d" resolved "https://registry.yarnpkg.com/netlify-redirect-parser/-/netlify-redirect-parser-14.1.3.tgz#5b4a4692f563341d91375504c4a7718a1e29806d"
@ -12717,7 +12722,7 @@ puppeteer-core@19.7.5:
unbzip2-stream "1.4.3" unbzip2-stream "1.4.3"
ws "8.12.1" ws "8.12.1"
puppeteer-core@^20.9.0: puppeteer-core@20.9.0, puppeteer-core@^20.9.0:
version "20.9.0" version "20.9.0"
resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-20.9.0.tgz#6f4b420001b64419deab38d398a4d9cd071040e6" resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-20.9.0.tgz#6f4b420001b64419deab38d398a4d9cd071040e6"
integrity sha512-H9fYZQzMTRrkboEfPmf7m3CLDN6JvbxXA3qTtS+dFt27tR+CsFHzPsT6pzp6lYL6bJbAPaR0HaPO6uSi+F94Pg== integrity sha512-H9fYZQzMTRrkboEfPmf7m3CLDN6JvbxXA3qTtS+dFt27tR+CsFHzPsT6pzp6lYL6bJbAPaR0HaPO6uSi+F94Pg==
@ -12729,6 +12734,15 @@ puppeteer-core@^20.9.0:
devtools-protocol "0.0.1147663" devtools-protocol "0.0.1147663"
ws "8.13.0" ws "8.13.0"
puppeteer@^20.9.0:
version "20.9.0"
resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-20.9.0.tgz#7bfb9e37deab9728e13b02ea3fb499b5560c79a7"
integrity sha512-kAglT4VZ9fWEGg3oLc4/de+JcONuEJhlh3J6f5R1TLkrY/EHHIHxWXDOzXvaxQCtedmyVXBwg8M+P8YCO/wZjw==
dependencies:
"@puppeteer/browsers" "1.4.6"
cosmiconfig "8.2.0"
puppeteer-core "20.9.0"
puppeteer@~19.7.0: puppeteer@~19.7.0:
version "19.7.5" version "19.7.5"
resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-19.7.5.tgz#d7db0dfcc80ca2cdf8eb0100bae1ce888a841389" resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-19.7.5.tgz#d7db0dfcc80ca2cdf8eb0100bae1ce888a841389"