Skip to content

Commit 2705bd7

Browse files
author
tkokhing
committed
Build up notes on AD and topics under recon
1 parent ce18dc4 commit 2705bd7

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

src/app/heptagoning/kill-chain/active_dir/[slug]/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PostBody } from "@/app/_components/post_gen/post-body";
77
import { getPostBySlug } from "@/lib/share/api";
88
import { generatePageMetadata } from "@/lib/share/generatePageMetadata";
99
import { generatePageStaticParams } from "@/lib/share/generatePageStaticParams";
10-
import { AD_Access, AD_Overview, AD_Kerberos } from "@/lib/_data_exporter/data_kiil-chain/kill-chain_exporter";
10+
import { AD_Access, AD_Overview, AD_Enum_powerview, AD_Kerberos } from "@/lib/_data_exporter/data_kiil-chain/kill-chain_exporter";
1111
import Alert from "@/app/_components/blog_frame/alert";
1212
import Note from "@/app/_components/blog_frame/note";
1313
import Tip from "@/app/_components/blog_frame/tip";
@@ -30,6 +30,7 @@ export default async function Post(props: Params) {
3030
ToggleFrame,
3131
AD_Access,
3232
AD_Overview,
33+
AD_Enum_powerview,
3334
AD_Kerberos,
3435
};
3536
const post = getPostBySlug(params.slug, MDX_FOLDER);

src/app/heptagoning/kill-chain/recon/[slug]/page.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PostBody } from "@/app/_components/post_gen/post-body";
77
import { getPostBySlug } from "@/lib/share/api";
88
import { generatePageMetadata } from "@/lib/share/generatePageMetadata";
99
import { generatePageStaticParams } from "@/lib/share/generatePageStaticParams";
10-
import { NMAP_Overview, NMAP_Vuln_Scan, NMAP_SMB_Enum, NMAP_TCP_vs_UDP, RUSTSCAN_Overview, GOBUSTER_Overview, GOBUSTER_Outsmart_301,GOBUSTER_Advanced, SQLI_Overview } from "@/lib/_data_exporter/data_kiil-chain/kill-chain_exporter";
10+
import { NMAP_Overview, NMAP_Vuln_Scan, NMAP_SMB_Enum, NMAP_TCP_vs_UDP, RUSTSCAN_Overview, GOBUSTER_Overview, GOBUSTER_Outsmart_301,GOBUSTER_Advanced, SQLI_Overview, SQLI_Ph_1, SQLI_Ph_2, SQLI_Ph_3, SQLI_Ph_4a_union_based, SQLI_Ph_4b_blind_auth_bypass, SQLI_Ph_4c_blind_boolean_based, SQLI_Ph_4d_blind_time_based, SQLI_Ph_4e_search_bar } from "@/lib/_data_exporter/data_kiil-chain/kill-chain_exporter";
1111
import Alert from "@/app/_components/blog_frame/alert";
1212
import Note from "@/app/_components/blog_frame/note";
1313
import Tip from "@/app/_components/blog_frame/tip";
@@ -37,6 +37,14 @@ export default async function Post(props: Params) {
3737
GOBUSTER_Outsmart_301,
3838
GOBUSTER_Advanced,
3939
SQLI_Overview,
40+
SQLI_Ph_1,
41+
SQLI_Ph_2,
42+
SQLI_Ph_3,
43+
SQLI_Ph_4a_union_based,
44+
SQLI_Ph_4b_blind_auth_bypass,
45+
SQLI_Ph_4c_blind_boolean_based,
46+
SQLI_Ph_4d_blind_time_based,
47+
SQLI_Ph_4e_search_bar,
4048
};
4149
const post = getPostBySlug(params.slug, MDX_FOLDER);
4250
if (!post || post.subPath != 'heptagoning/kill-chain/recon') return notFound();

0 commit comments

Comments
 (0)