Skip to content

Commit baa8b4a

Browse files
author
tkokhing
committed
Build up notes on more AD, defined more constants for sync, toggleFrame better, update gitignore to excl src_lib_gitattributes for UH-X
1 parent 3ceddfc commit baa8b4a

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
/mytest
1616
src/app/testerer/
1717
src/lib/_data_exporter/
18+
src/lib/.gitattributes
1819
src/lib/.gitignore
1920
src/lib/README.md
2021

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ type Props = {
88
defaultOpen?: boolean;
99
};
1010

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

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

Lines changed: 3 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_Kerberos, AD_As_rep_roast, 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 } 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,8 +32,10 @@ export default async function Post(props: Params) {
3232
AD_Enum_net_command,
3333
AD_Enum_powerview,
3434
AD_Exploit_attack,
35+
AD_Auth_decision_flow,
3536
AD_Kerberos,
3637
AD_As_rep_roast,
38+
AD_Ldap,
3739
AD_Call_back_attacker,
3840
AD_Lateral_move,
3941
AD_Bypass_uac,

src/lib/share/constants.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,16 @@ export const TKOKHING_LOGO_SVG_URL = `${LOGO_PATH}/tkokhing.svg`;
2929

3030

3131
export const ATTACKER_IP = "192.168.118.10";
32-
export const ATTACKER_PORT = "4444";
32+
export const ATTACKER_PORT = "22";
3333

3434
// // Client01 (aka MS01) Browser Viewing
3535
// // - Internal (172.16.242.173)
36+
37+
export const AD_DOMAIN_NAME = "CAR_DOMAIN"
38+
39+
export const MS01_username = "this_AD_user";
40+
export const MS01_password = "this_AD_password";
41+
3642
export const MS01_IP_EXT = "192.168.118.173";
3743
export const MS01_IP_INT = "172.16.242.173";
3844
export const MS01_FORWARD_PORT_1 = "80"; // To download <u>PowerCat</u>
@@ -56,7 +62,7 @@ export const AD_ATTACKER_LISTEN_PORT_2 = "443"; // To facilitate incoming <u>rev
5662
// // for kerberoasted service
5763
export const RUNNING_SPN = "svc-auth";
5864
export const RUNNING_SPN_HASH = "hashhashashashverylong";
59-
export const RUNNING_SPN_PASSWORD = "pas$word";
65+
export const RUNNING_SPN_PASSWORD = "running_spn_pas$word";
6066

6167

6268
// // EncodedText for SCSHELL

0 commit comments

Comments
 (0)