Skip to content

Commit 7ab7489

Browse files
author
tkokhing
committed
final push
1 parent baa8b4a commit 7ab7489

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

src/app/_components/preference/toggle-frame.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ type Props = {
88
defaultOpen?: boolean;
99
};
1010

11-
// export function ToggleFrame({ label, children, defaultOpen = true }: Props) {
12-
export function ToggleFrame({ label, children, defaultOpen = false }: Props) {
11+
export function ToggleFrame({ label, children, defaultOpen = true }: Props) {
12+
// export function ToggleFrame({ label, children, defaultOpen = false }: Props) {
1313
const [isOpen, setIsOpen] = useState(defaultOpen);
1414
const ref = useRef<HTMLDivElement>(null);
1515

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

Lines changed: 4 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_Enum_net_command, AD_Enum_powerview, AD_Exploit_attack, AD_Auth_decision_flow, AD_Kerberos, AD_As_rep_roast, AD_Ldap, AD_Call_back_attacker, AD_Lateral_move, AD_Bypass_uac, AD_Pass_the_hash, AD_Overpass_the_hash, AD_Netexec } from "@/lib/_data_exporter/data_kiil-chain/kill-chain_exporter";
10+
import { AD_Access, AD_Enum_net_command, AD_Enum_powerview, AD_Exploit_attack, AD_Auth_decision_flow, AD_Kerberos, AD_As_rep_roast, AD_Ldap, AD_Call_back_attacker, AD_Lateral_move, AD_Bypass_uac, AD_Pass_the_hash, AD_Overpass_the_hash, AD_Netexec, AOA_Killchain_netexec, AOA_Killchain_rapid_checklist, SSH_Connection } 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";
@@ -42,6 +42,9 @@ export default async function Post(props: Params) {
4242
AD_Pass_the_hash,
4343
AD_Overpass_the_hash,
4444
AD_Netexec,
45+
AOA_Killchain_netexec,
46+
AOA_Killchain_rapid_checklist,
47+
SSH_Connection,
4548
};
4649
const post = getPostBySlug(params.slug, MDX_FOLDER);
4750
if (!post || post.subPath != 'heptagoning/kill-chain/active_dir') return notFound();

src/app/heptagoning/kill-chain/recon/[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 { 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";
10+
import { RECON_Site, 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";
@@ -28,6 +28,7 @@ export default async function Post(props: Params) {
2828
Note,
2929
Alert,
3030
ToggleFrame,
31+
RECON_Site,
3132
NMAP_Overview,
3233
NMAP_Vuln_Scan,
3334
NMAP_SMB_Enum,

0 commit comments

Comments
 (0)