Windows Privilege Escalation I

8 of 16 modules completed
30%
Acquirable XP:+500
Difficulty:VII
Reward:+2 Keys
Foor
Bar

SeImpersonate Privilege

Download the provided 'Hello World' executable file.

Open Ghidra and create a new project.

Import the executable into your project.

Analyze the file to view the disassembly and decompiled code.

Locate the main function and identify the string 'Hello, World!' in the code.

Document your findings, including the address of the main function and the location of the string.

Submission: Submit a brief report detailing your findings, including screenshots of the disassembly and decompiled code where you found the key elements.

Build Our Exploit

Download the provided 'Hello World' executable file.

Open Ghidra and create a new project.

Import the executable into your project.

Analyze the file to view the disassembly and decompiled code.

Locate the main function and identify the string 'Hello, World!' in the code.

Document your findings, including the address of the main function and the location of the string.

Submission: Submit a brief report detailing your findings, including screenshots of the disassembly and decompiled code where you found the key elements.

Language C
1function createElement({ node, style, useInlineStyles, key }) {
2  const { properties, type, tagName, value } = node;
3  if (type === "text") {
4    return value;
5  } else if (tagName) {
6    const TagName = tagName;
7    const childrenCreator = createChildren(style, useInlineStyles);
8    const props = (
9      useInlineStyles
10      ? { style: createStyleObject(properties.className, style) }
11      : { className: createClassNameString(properties.className) }
12    );
13    const children = childrenCreator(node.children);
14    return <TagName key={key} {...props}>{children}</TagName>;
15  }
16}

Challenges

Solve these challenges

What is 2 + 2?

+1 XP
Submit

What is the capital of France?

+1 XP
Submit
Get Help
Back
Next

We use cookies!

By using hackerforce.com, you agree to our

2025 Hackerforce. Allright Reserved
Term & Condition
Privacy Policy