-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
category3: dotnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
title: Blazor Pentesting | ||
description: Blazor is a web framework for building interactive web applications using C# instead of JavaScript. | ||
tags: | ||
- .NET | ||
- Web | ||
refs: | ||
date: 2024-11-30 | ||
draft: false | ||
--- | ||
|
||
## Common Directories/Files | ||
|
||
```bash | ||
# This file contains paths of DLLs that can be reversed. | ||
/_framework/blazor.boot.json | ||
/_framework/<Example>.dll | ||
``` | ||
|
||
<br /> | ||
|
||
## Reverse Engineering DLLs | ||
|
||
We can reverse DLLs such as `/_framework/<Example>.dll` using tools such as **DotPeek** for retrieving sensitive information (credentials, software versions, etc.). | ||
|
||
If you use DotPeek, right-click on the name in Assembly Explorer and click **Decompiled Sources** for investigation. |