Skip to content

Commit 9b89c51

Browse files
committed
changed the framework to MkDocs
1 parent 3c72d22 commit 9b89c51

File tree

952 files changed

+22875
-38243
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

952 files changed

+22875
-38243
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- main
7+
permissions:
8+
contents: write
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Configure Git Credentials
15+
run: |
16+
git config user.name github-actions[bot]
17+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
18+
- uses: actions/setup-python@v5
19+
with:
20+
python-version: 3.x
21+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
22+
- uses: actions/cache@v4
23+
with:
24+
key: mkdocs-material-${{ env.cache_id }}
25+
path: ~/.cache
26+
restore-keys: |
27+
mkdocs-material-
28+
- run: pip install mkdocs-material
29+
- run: mkdocs gh-deploy --force

.github/workflows/deploy.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
_site
2-
_bin
1+
.cache/
2+
.vscode/
3+
.venv/
34

4-
.vscode
5+
site/

README.md

Lines changed: 6 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
Exploit Notes is sticky notes for pentesting.
44
Search hacking techniques and tools for penetration testings, bug bounty, CTF.
55

6-
<br />
7-
86
## :notebook: Comprehensive Resources
97

108
This project contains vast information in the cybersecurity field such as below:
@@ -17,12 +15,9 @@ This project contains vast information in the cybersecurity field such as below:
1715
- Network
1816
- Container (Docker, Kubernetes)
1917
- Cryptography
20-
- Binary, Reverse Engineering
2118
- AI/Machine Learning
2219
- Blockchain, Smart Contract
2320

24-
<br />
25-
2621
## :warning: Disclaimer
2722

2823
Exploit Notes are only for educational purpose or penetration testing, not attacking servers that you're not authorized.This site will not take any responsibility even if you attack the server illegally or cause damage unintentionally.
@@ -33,27 +28,19 @@ Although the author strives to post the latest information on the content of thi
3328

3429
I'm not a security expert, just an enthusiast, so the contents are not necessarily accurate.
3530

36-
<br />
37-
38-
## :pencil: Edit Resources
39-
40-
If you find issues or new hacking techniques, please issue or send pull request.
31+
## :pencil: Use Locally
4132

42-
If it's a simple edit, you can edit it online from this GitHub repository.
43-
44-
However if you want to check the modified site, clone this repository, modify the contents, and manually test the modified site with the command below.
45-
You need `deno` for this.
33+
To use Exploit Notes locally, run the following command:
4634

4735
```sh
4836
git clone https://github.com/hideckies/exploit-notes.git
4937
cd exploit-notes
50-
51-
# Start local server
52-
deno task serve
38+
python3 -m venv .venv
39+
source .venv/bin/activate
40+
pip3 install -r requirements.txt
41+
mkdocs serve
5342
```
5443

55-
<br />
56-
5744
## :coffee: Donate Me
5845

5946
If you find this site helpful, please consider supporting my ongoing efforts through a donation.

_config.ts

Lines changed: 0 additions & 103 deletions
This file was deleted.

0 commit comments

Comments
 (0)