Skip to content

Commit 5e5006f

Browse files
author
tkokhing
committed
Build up notes on AD and constants listing
1 parent 2705bd7 commit 5e5006f

2 files changed

Lines changed: 18 additions & 13 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_Enum_powerview, AD_Kerberos } from "@/lib/_data_exporter/data_kiil-chain/kill-chain_exporter";
10+
import { AD_Access, AD_Overview, AD_Enum_powerview, AD_Kerberos, AD_Lateral_move } 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";
@@ -32,6 +32,7 @@ export default async function Post(props: Params) {
3232
AD_Overview,
3333
AD_Enum_powerview,
3434
AD_Kerberos,
35+
AD_Lateral_move,
3536
};
3637
const post = getPostBySlug(params.slug, MDX_FOLDER);
3738
if (!post || post.subPath != 'heptagoning/kill-chain/active_dir') return notFound();

src/lib/share/constants.ts

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,35 @@ 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+
9+
// For all sites
810
export const VICTIM1_IP = "172.17.0.5";
911
export const VICTIM1_PORT = "8080";
1012
export const ATTACKER_IP = "192.168.137.19";
1113
export const ATTACKER_PORT = "4444";
1214

1315
// AD Setup
1416

15-
// export const Client01_IP = "172.16.101.101";
16-
// export const Client01_PORT_FORWARD = "4444";
17+
// export const MS01_IP_EXT = "192.168.118.173";
18+
// export const MS01_IP_INT = "172.16.242.173";
19+
// export const MS01_PORT_FORWARD = "4444";
1720

18-
// // for kerberoasted service
21+
// // // for kerberoasted service
1922
// export const RUNNING_SPN = "svc-auth";
2023

21-
// // EncodedText for SCSHELL
24+
// // // EncodedText for SCSHELL
2225
// export const EncodedText = "encoded_text_for_scshell"
2326

24-
// export const WEB01_IP = "172.16.101.101";
25-
// export const WEB01_PORT_FORWARD = "4444";
2627

27-
// export const DC01_IP = "172.16.101.141";
28+
// export const MS02_IP_INT = "172.16.242.176";
29+
// export const MS02_PORT_FORWARD = "4443";
30+
31+
// export const DC01_IP = "172.16.242.162";
2832
// export const DC01_PORT_FORWARD = "4442";
2933

30-
export const Client01_IP_EXT = "192.168.118.173";
31-
export const Client01_IP_INT = "172.16.242.173";
32-
export const Client01_PORT_FORWARD = "4444";
34+
export const MS01_IP_EXT = "192.168.118.173";
35+
export const MS01_IP_INT = "172.16.242.173";
36+
export const MS01_PORT_FORWARD = "4444";
3337

3438
// // for kerberoasted service
3539
export const RUNNING_SPN = "svc-auth";
@@ -38,8 +42,8 @@ export const RUNNING_SPN = "svc-auth";
3842
export const EncodedText = "encoded_text_for_scshell"
3943

4044

41-
export const WEB01_IP = "172.16.242.176";
42-
export const WEB01_PORT_FORWARD = "4443";
45+
export const MS02_IP_INT = "172.16.242.176";
46+
export const MS02_PORT_FORWARD = "4443";
4347

4448
export const DC01_IP = "172.16.242.162";
4549
export const DC01_PORT_FORWARD = "4442";

0 commit comments

Comments
 (0)