Skip to content

Commit

Permalink
add ViewStateDecoder tab
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Jan 11, 2021
1 parent 880a9cf commit 0621dbd
Show file tree
Hide file tree
Showing 12 changed files with 914 additions and 638 deletions.
10 changes: 10 additions & 0 deletions Readme-ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ __VIEWSTATE のパラメータが存在する場合、History の Message Tabに

![ViewState Tab](/image/ViewState.png)

### ViewStateDecoder タブ

![ViewStateDecoder Tab](/image/ViewStateDecoder.png)

- [Decode] ボタン
入力したViewState値をデコードします。

- [Clear] ボタン
デコードした値をクリアします。

## コマンドラインオプション

コマンドラインから ViewState の値をデコードすることが可能です。
Expand Down
11 changes: 10 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ Supports Burp suite Professional/Community.
This extension is a tool that allows you to display ViewState of ASP.NET.
Note that it is also possible to decode using the command line.


ViewState has been hidden in Burp suite since v2020.3.
It is intended for use with Burp suite v2020.x or later.

Expand All @@ -32,6 +31,16 @@ If the __VIEWSTATE parameter exists, you can select the ViewState from the "sele

![ViewState Tab](/image/ViewState.png)

### ViewStateDecoder Tab

![ViewStateDecoder Tab](/image/ViewStateDecoder.png)

- [Decode] Button
Decode the ViewState value.

- [Clear] Button
Clear the decoded value.

## Command line option

It is possible to decode the value of ViewState from the command line.
Expand Down
Binary file modified image/ViewState.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/ViewStateDecoder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>burp</groupId>
<artifactId>ViewStateDecoder</artifactId>
<version>0.2</version>
<version>0.3</version>
<packaging>jar</packaging>
<properties>
<releaseVersion>${project.version}.0.0</releaseVersion>
Expand Down Expand Up @@ -35,9 +35,10 @@
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<configuration>
<outputDirectory>${project.basedir}/release</outputDirectory>
<finalName>${project.artifactId}-v${project.version}</finalName>
<outputDirectory>${project.basedir}/release</outputDirectory>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
Expand Down
Binary file not shown.
Loading

0 comments on commit 0621dbd

Please sign in to comment.