├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── hugo.yml ├── .gitignore ├── .gitpod.yml ├── .markdownlint-cli2.jsonc ├── .npmignore ├── .npmrc ├── .stylelintignore ├── .stylelintrc.json ├── CNAME ├── LICENSE ├── README.md ├── assets ├── cover.png ├── favicon.ico ├── favicon.png ├── favicon.svg ├── images │ ├── .gitkeep │ └── php-headers-bypass-warning.jpg ├── js │ └── custom.js ├── mask-icon.svg ├── scss │ └── common │ │ ├── _custom.scss │ │ └── _variables-custom.scss └── svgs │ └── .gitkeep ├── config ├── _default │ ├── hugo.toml │ ├── languages.toml │ ├── markup.toml │ ├── menus │ │ └── menus.en.toml │ ├── module.toml │ └── params.toml ├── babel.config.js ├── next │ └── hugo.toml ├── postcss.config.js └── production │ └── hugo.toml ├── content ├── _index.md └── docs │ ├── _index.md │ ├── client-side │ ├── _index.md │ ├── browser-cache.md │ ├── csp.md │ ├── dom-clobbering.md │ ├── html-tags.md │ ├── jsonp.md │ ├── service-worker.md │ ├── some.md │ ├── window.md │ ├── xsleaks.md │ └── xss.md │ ├── framework │ ├── _index.md │ ├── apache.md │ ├── dompurify.md │ ├── drupal.md │ ├── express.md │ ├── htmx.md │ ├── nginx.md │ ├── nodejs.md │ ├── nuxt.md │ ├── sping-boot.md │ ├── vuejs.md │ ├── werkzeug.md │ └── wordpress.md │ ├── getting-started │ ├── _index.md │ ├── cheatsheets.md │ ├── introduction.md │ ├── learning.md │ └── vulnerability-reports.md │ ├── http │ ├── _index.md │ ├── content-type.md │ ├── cookie.md │ ├── cross-origin-read-blocking.md │ ├── cross-origin-resource-policy.md │ ├── cross-origin-resource-sharing.md │ └── x-content-type-options.md │ ├── others │ ├── _index.md │ ├── browser-exploit.md │ ├── burpsuite.md │ ├── debugging.md │ ├── open-redirect.md │ ├── parsing.md │ └── prototype-pollution.md │ ├── programming │ ├── _index.md │ ├── javascript │ │ ├── _index.md │ │ ├── behavior.md │ │ └── javascript.md │ ├── php.md │ ├── python │ │ ├── _index.md │ │ ├── class-pollution.md │ │ ├── format-string.md │ │ └── python.md │ └── ruby.md │ ├── server-side │ ├── _index.md │ ├── caching.md │ ├── graphql.md │ ├── sql-injection.md │ ├── ssrf.md │ └── ssti │ │ ├── _index.md │ │ ├── django-template.md │ │ ├── ejs.md │ │ ├── pug.md │ │ └── tera.md │ └── writeup │ ├── _index.md │ ├── dghack2023-jarjarbank.md │ └── sekaictf2023-golfjail.md ├── hugo_stats.json ├── layouts ├── index.html └── partials │ ├── footer │ └── script-footer-custom.html │ └── head │ ├── custom-head.html │ └── script-header.html ├── netlify.toml ├── package.json ├── pnpm-lock.yaml ├── static └── .gitkeep └── todo.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/hugo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/.github/workflows/hugo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.markdownlint-cli2.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/.markdownlint-cli2.jsonc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/.npmrc -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.offensiveweb.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/README.md -------------------------------------------------------------------------------- /assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/assets/cover.png -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/assets/favicon.svg -------------------------------------------------------------------------------- /assets/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/php-headers-bypass-warning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/assets/images/php-headers-bypass-warning.jpg -------------------------------------------------------------------------------- /assets/js/custom.js: -------------------------------------------------------------------------------- 1 | // Put your custom JS code here 2 | -------------------------------------------------------------------------------- /assets/mask-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/assets/mask-icon.svg -------------------------------------------------------------------------------- /assets/scss/common/_custom.scss: -------------------------------------------------------------------------------- 1 | // Put your custom SCSS code here 2 | -------------------------------------------------------------------------------- /assets/scss/common/_variables-custom.scss: -------------------------------------------------------------------------------- 1 | // Put your custom SCSS variables here 2 | -------------------------------------------------------------------------------- /assets/svgs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/_default/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/config/_default/hugo.toml -------------------------------------------------------------------------------- /config/_default/languages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/config/_default/languages.toml -------------------------------------------------------------------------------- /config/_default/markup.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/config/_default/markup.toml -------------------------------------------------------------------------------- /config/_default/menus/menus.en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/config/_default/menus/menus.en.toml -------------------------------------------------------------------------------- /config/_default/module.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/config/_default/module.toml -------------------------------------------------------------------------------- /config/_default/params.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/config/_default/params.toml -------------------------------------------------------------------------------- /config/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/config/babel.config.js -------------------------------------------------------------------------------- /config/next/hugo.toml: -------------------------------------------------------------------------------- 1 | # Overrides for next environment 2 | -------------------------------------------------------------------------------- /config/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/config/postcss.config.js -------------------------------------------------------------------------------- /config/production/hugo.toml: -------------------------------------------------------------------------------- 1 | # Overrides for production environment 2 | canonifyURLs = false -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/_index.md -------------------------------------------------------------------------------- /content/docs/client-side/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/_index.md -------------------------------------------------------------------------------- /content/docs/client-side/browser-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/browser-cache.md -------------------------------------------------------------------------------- /content/docs/client-side/csp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/csp.md -------------------------------------------------------------------------------- /content/docs/client-side/dom-clobbering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/dom-clobbering.md -------------------------------------------------------------------------------- /content/docs/client-side/html-tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/html-tags.md -------------------------------------------------------------------------------- /content/docs/client-side/jsonp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/jsonp.md -------------------------------------------------------------------------------- /content/docs/client-side/service-worker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/service-worker.md -------------------------------------------------------------------------------- /content/docs/client-side/some.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/some.md -------------------------------------------------------------------------------- /content/docs/client-side/window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/window.md -------------------------------------------------------------------------------- /content/docs/client-side/xsleaks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/xsleaks.md -------------------------------------------------------------------------------- /content/docs/client-side/xss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/client-side/xss.md -------------------------------------------------------------------------------- /content/docs/framework/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/_index.md -------------------------------------------------------------------------------- /content/docs/framework/apache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/apache.md -------------------------------------------------------------------------------- /content/docs/framework/dompurify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/dompurify.md -------------------------------------------------------------------------------- /content/docs/framework/drupal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/drupal.md -------------------------------------------------------------------------------- /content/docs/framework/express.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/express.md -------------------------------------------------------------------------------- /content/docs/framework/htmx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/htmx.md -------------------------------------------------------------------------------- /content/docs/framework/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/nginx.md -------------------------------------------------------------------------------- /content/docs/framework/nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/nodejs.md -------------------------------------------------------------------------------- /content/docs/framework/nuxt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/nuxt.md -------------------------------------------------------------------------------- /content/docs/framework/sping-boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/sping-boot.md -------------------------------------------------------------------------------- /content/docs/framework/vuejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/vuejs.md -------------------------------------------------------------------------------- /content/docs/framework/werkzeug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/werkzeug.md -------------------------------------------------------------------------------- /content/docs/framework/wordpress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/framework/wordpress.md -------------------------------------------------------------------------------- /content/docs/getting-started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/getting-started/_index.md -------------------------------------------------------------------------------- /content/docs/getting-started/cheatsheets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/getting-started/cheatsheets.md -------------------------------------------------------------------------------- /content/docs/getting-started/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/getting-started/introduction.md -------------------------------------------------------------------------------- /content/docs/getting-started/learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/getting-started/learning.md -------------------------------------------------------------------------------- /content/docs/getting-started/vulnerability-reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/getting-started/vulnerability-reports.md -------------------------------------------------------------------------------- /content/docs/http/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/http/_index.md -------------------------------------------------------------------------------- /content/docs/http/content-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/http/content-type.md -------------------------------------------------------------------------------- /content/docs/http/cookie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/http/cookie.md -------------------------------------------------------------------------------- /content/docs/http/cross-origin-read-blocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/http/cross-origin-read-blocking.md -------------------------------------------------------------------------------- /content/docs/http/cross-origin-resource-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/http/cross-origin-resource-policy.md -------------------------------------------------------------------------------- /content/docs/http/cross-origin-resource-sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/http/cross-origin-resource-sharing.md -------------------------------------------------------------------------------- /content/docs/http/x-content-type-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/http/x-content-type-options.md -------------------------------------------------------------------------------- /content/docs/others/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/others/_index.md -------------------------------------------------------------------------------- /content/docs/others/browser-exploit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/others/browser-exploit.md -------------------------------------------------------------------------------- /content/docs/others/burpsuite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/others/burpsuite.md -------------------------------------------------------------------------------- /content/docs/others/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/others/debugging.md -------------------------------------------------------------------------------- /content/docs/others/open-redirect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/others/open-redirect.md -------------------------------------------------------------------------------- /content/docs/others/parsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/others/parsing.md -------------------------------------------------------------------------------- /content/docs/others/prototype-pollution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/others/prototype-pollution.md -------------------------------------------------------------------------------- /content/docs/programming/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/programming/_index.md -------------------------------------------------------------------------------- /content/docs/programming/javascript/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/programming/javascript/_index.md -------------------------------------------------------------------------------- /content/docs/programming/javascript/behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/programming/javascript/behavior.md -------------------------------------------------------------------------------- /content/docs/programming/javascript/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/programming/javascript/javascript.md -------------------------------------------------------------------------------- /content/docs/programming/php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/programming/php.md -------------------------------------------------------------------------------- /content/docs/programming/python/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/programming/python/_index.md -------------------------------------------------------------------------------- /content/docs/programming/python/class-pollution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/programming/python/class-pollution.md -------------------------------------------------------------------------------- /content/docs/programming/python/format-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/programming/python/format-string.md -------------------------------------------------------------------------------- /content/docs/programming/python/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/programming/python/python.md -------------------------------------------------------------------------------- /content/docs/programming/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/programming/ruby.md -------------------------------------------------------------------------------- /content/docs/server-side/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/server-side/_index.md -------------------------------------------------------------------------------- /content/docs/server-side/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/server-side/caching.md -------------------------------------------------------------------------------- /content/docs/server-side/graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/server-side/graphql.md -------------------------------------------------------------------------------- /content/docs/server-side/sql-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/server-side/sql-injection.md -------------------------------------------------------------------------------- /content/docs/server-side/ssrf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/server-side/ssrf.md -------------------------------------------------------------------------------- /content/docs/server-side/ssti/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/server-side/ssti/_index.md -------------------------------------------------------------------------------- /content/docs/server-side/ssti/django-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/server-side/ssti/django-template.md -------------------------------------------------------------------------------- /content/docs/server-side/ssti/ejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/server-side/ssti/ejs.md -------------------------------------------------------------------------------- /content/docs/server-side/ssti/pug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/server-side/ssti/pug.md -------------------------------------------------------------------------------- /content/docs/server-side/ssti/tera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/server-side/ssti/tera.md -------------------------------------------------------------------------------- /content/docs/writeup/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/writeup/_index.md -------------------------------------------------------------------------------- /content/docs/writeup/dghack2023-jarjarbank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/writeup/dghack2023-jarjarbank.md -------------------------------------------------------------------------------- /content/docs/writeup/sekaictf2023-golfjail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/content/docs/writeup/sekaictf2023-golfjail.md -------------------------------------------------------------------------------- /hugo_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/hugo_stats.json -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/footer/script-footer-custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/layouts/partials/footer/script-footer-custom.html -------------------------------------------------------------------------------- /layouts/partials/head/custom-head.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/partials/head/script-header.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/OffensiveWeb/HEAD/todo.txt --------------------------------------------------------------------------------