Skip to content

Instantly share code, notes, and snippets.

View canozal's full-sized avatar

can canozal

View GitHub Profile
@canozal
canozal / host_getter.svg
Created July 30, 2022 10:50 — forked from jakekarnes42/host_getter.svg
An SVG "image" that uses an XXE attack to embed the hostname file of whichever system processes it into the image itself
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@canozal
canozal / snippet.js
Created June 26, 2021 21:50 — forked from elierotenberg/snippet.js
Move Netflix subtitles to top
(() => {
const css = `
.player-timedtext > div {
position: static !important;
text-align: center !important;
}
`;
const style = document.createElement("style");
style.innerHTML = css;
@canozal
canozal / css-selectors.md
Created November 29, 2020 23:00 — forked from magicznyleszek/css-selectors.md
CSS Selectors Cheatsheet

CSS Selectors Cheatsheet

Element selectors

Element -- selects all h2 elements on the page

h2 {
    foo: bar;