Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mooncat-greenpy committed Jan 29, 2021
1 parent 61fefa0 commit c8fda01
Show file tree
Hide file tree
Showing 51 changed files with 13,303 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,10 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/


bin/

/x64dbg_GolangAnalyzerPlugin/pluginsdk/*
!/x64dbg_GolangAnalyzerPlugin/pluginsdk/capstone/
!/x64dbg_GolangAnalyzerPlugin/pluginsdk/yara/
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# GolangAnalyzerPlugin
GolangAnalyzer helps you analyze Golang binaries.

## Features
- Add functions
- Add source file and line number information to comments

## Usage
1. Download the release
2. Copy x64dbg_GolangAnalyzerPlugin.dp32/x64dbg_GolangAnalyzerPlugin.dp64 files to plugins directories of x64dbg
3. Start debugging
4. `GoAnalyzer.line.enable`
5. `GoAnalyzer.analyze`

### Commands
- `GoAnalyzer.analyze`: Run analysis
- `GoAnalyzer.line.enable`: Enable the ability to comment source file and line number information
- `GoAnalyzer.line.enable`: Disable the ability to comment source file and line number information
31 changes: 31 additions & 0 deletions x64dbg_GolangAnalyzerPlugin.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30711.63
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "x64dbg_GolangAnalyzerPlugin", "x64dbg_GolangAnalyzerPlugin\x64dbg_GolangAnalyzerPlugin.vcxproj", "{34D49BFD-EB2D-429D-A0CD-55451DC6474E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{34D49BFD-EB2D-429D-A0CD-55451DC6474E}.Debug|x64.ActiveCfg = Debug|x64
{34D49BFD-EB2D-429D-A0CD-55451DC6474E}.Debug|x64.Build.0 = Debug|x64
{34D49BFD-EB2D-429D-A0CD-55451DC6474E}.Debug|x86.ActiveCfg = Debug|Win32
{34D49BFD-EB2D-429D-A0CD-55451DC6474E}.Debug|x86.Build.0 = Debug|Win32
{34D49BFD-EB2D-429D-A0CD-55451DC6474E}.Release|x64.ActiveCfg = Release|x64
{34D49BFD-EB2D-429D-A0CD-55451DC6474E}.Release|x64.Build.0 = Release|x64
{34D49BFD-EB2D-429D-A0CD-55451DC6474E}.Release|x86.ActiveCfg = Release|Win32
{34D49BFD-EB2D-429D-A0CD-55451DC6474E}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7368E1F0-8D08-42B2-B024-2563B185697A}
EndGlobalSection
EndGlobal
Loading

0 comments on commit c8fda01

Please sign in to comment.