Skip to content

Commit 89355d2

Browse files
author
tkokhing
committed
completed nmap, recon page
1 parent 2c4b52c commit 89355d2

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ 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 } from "@/lib/_data_exporter/data_kiil-chain/kill-chain_exporter";
10+
import { NMAP_Overview, NMAP_Vuln_Scan, NMAP_SMB_Enum, NMAP_TCP_vs_UDP } 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";
14+
import { ToggleFrame } from "@/app/_components/preference/toggle-frame";
1415

1516
const MDX_FOLDER = "_heptagoning/_kill-chain/_recon";
1617

@@ -26,7 +27,11 @@ export default async function Post(props: Params) {
2627
Tip,
2728
Note,
2829
Alert,
30+
ToggleFrame,
2931
NMAP_Overview,
32+
NMAP_Vuln_Scan,
33+
NMAP_SMB_Enum,
34+
NMAP_TCP_vs_UDP,
3035
};
3136
const post = getPostBySlug(params.slug, MDX_FOLDER);
3237
if (!post || post.subPath != 'heptagoning/kill-chain/recon') return notFound();

src/lib/share/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const LOGO_PATH = "/img/logo";
55
export const REPO_NAME = ""; // for future expansion use
66
export const T_ANI_GIF_URL = `${LOGO_PATH}/tkokhing.gif`;
77
export const TKOKHING_LOGO_SVG_URL = `${LOGO_PATH}/tkokhing.svg`;
8-
export const VICTIM1_IP = "172.17.0.2";
8+
export const VICTIM1_IP = "172.17.0.5";
99
export const VICTIM1_PORT = "8080";
1010
export const ATTACKER_IP = "10.4.6.114";
1111
export const ATTACKER_PORT = "4444";

0 commit comments

Comments
 (0)