Skip to content

Commit

Permalink
fix: [SECURESIGN-687] endpoint sanitization (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
kahboom authored Jul 23, 2024
2 parents d80daa3 + 29fb678 commit 393b21f
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 13 deletions.
14 changes: 13 additions & 1 deletion src/modules/components/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ export function Settings({
onClose();
}, [localBaseUrl, onClose, setBaseUrl]);

const handleSubmit = (e: FormEvent<HTMLFormElement>) => {
e.preventDefault();
onSave();
};

return (
<Modal
variant={ModalVariant.small}
Expand All @@ -80,7 +85,10 @@ export function Settings({
</Button>,
]}
>
<Form id="settings-form">
<Form
id="settings-form"
onSubmit={handleSubmit}
>
<FormGroup
label="Override Rekor Endpoint"
labelIcon={
Expand Down Expand Up @@ -130,6 +138,10 @@ export function Settings({
</FormHelperText>
)}
</FormGroup>
<button
type="submit"
style={{ display: "none" }}
></button>
</Form>
</Modal>
);
Expand Down
19 changes: 12 additions & 7 deletions src/modules/utils/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,25 @@ import { isAcceptedProtocol, isValidUrl, validateUrl } from "./validateUrl";

describe("URL Validation Tests", () => {
describe("Individual Function Tests", () => {
it("isValidUrl: should validate URL structure", () => {
expect(isValidUrl("http://validsite.com")).toBe(true);
expect(isValidUrl("justastring")).toBe(false);
expect(isValidUrl("")).toBe(false);
expect(isValidUrl("http://invalidhostname")).toBe(false);
});

it("isAcceptedProtocol: should check for https protocols", () => {
expect(isAcceptedProtocol("http://example.com")).toBe(false);
expect(isAcceptedProtocol("example.com")).toBe(false);
expect(isAcceptedProtocol("www.example.com")).toBe(false);
expect(isAcceptedProtocol("ftp://example.com")).toBe(false);
expect(isAcceptedProtocol("http://rekor")).toBe(false);
expect(isAcceptedProtocol("https://example.com")).toBe(true);
});

it("isValidUrl: http(s) protocol, valid characters, and tld", () => {
expect(isValidUrl("http://rekor")).toBe(true);
expect(isValidUrl("https://rekor")).toBe(true);
expect(isValidUrl("https://rekor🦩")).toBe(false);
expect(isValidUrl("https://rekor-example")).toBe(true);
expect(isValidUrl("https://rekor-example.com")).toBe(true);
expect(isValidUrl("https://")).toBe(false);
expect(isValidUrl("https://₮∌⎛")).toBe(false);
expect(isValidUrl("https://😝")).toBe(false);
});
});

describe("validateUrl: Composite Function Tests", () => {
Expand Down
12 changes: 8 additions & 4 deletions src/modules/utils/validateUrl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,19 @@ export function isAcceptedProtocol(url: string): boolean {
}

/**
* Checks if the given string is a valid URL.
* Checks if the given string is a valid URL, based on:
* 1) http(s) protocol; 2) valid alphanumeric & special chars;
* 3) combined length of subdomain & domain must be between 2 and 256
* https://regex101.com/r/ecDRn6/1
* @param url The URL to validate.
* @returns True if the URL is valid, false otherwise.
*/
export const isValidUrl = (url: string): boolean => {
const regexVal =
/^(http(s)?:\/\/.)[-a-zA-Z0-9@:%._\+~#=]{2,256}[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&\/=]*)$/gm;

try {
const parsedUrl = new URL(url);
// check for presence of a dot
return parsedUrl.hostname.includes(".");
return regexVal.test(url);
} catch (error) {
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
".next/types/**/*.ts",
"jest.setup.js"
],
"exclude": ["coverage", "cypress", "node_modules"]
"exclude": ["coverage", "cypress", "cypress.config.ts", "node_modules"]
}

0 comments on commit 393b21f

Please sign in to comment.