├── .gitattributes ├── .gitignore ├── README.md ├── appveyor.yml ├── r2pipe ├── CmdQueue.cs ├── DllR2Pipe.cs ├── HttpR2Pipe.cs ├── IR2Pipe.cs ├── Makefile ├── OldApi │ ├── HttpR2Pipe.cs │ └── R2Pipe.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── QueuedR2Pipe.cs ├── R2Pipe.cs ├── RlangPipe.cs ├── project.json └── r2pipe.csproj ├── r4w.sln ├── src └── r4w │ ├── App.config │ ├── Benchmarks.cs │ ├── ClassDiagram1.cd │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── GuiControl.cs │ ├── Newtonsoft.Json.dll │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest │ ├── askForm.Designer.cs │ ├── askForm.cs │ ├── askForm.resx │ ├── convertFrm.Designer.cs │ ├── convertFrm.cs │ ├── convertFrm.resx │ ├── decoratorParam.cs │ ├── hotkeys.cs │ ├── media │ ├── akira.jpg │ ├── bluedot.png │ ├── continue_until_icon.png │ ├── green_page.png │ ├── hexview.akira.css │ ├── hexview.azure.css │ ├── hexview.blue.css │ ├── hexview.control.css │ ├── hexview.dark.css │ ├── hexview.lemon.css │ ├── hexview.pink.css │ ├── hexview.terminal256.css │ ├── paste.png │ ├── pinkspace.jpg │ ├── playbutton.png │ ├── playbutton_gray_small.png │ ├── playbutton_small.png │ ├── r2icon.jpg │ ├── r2icon_c.ico │ ├── r2icon_c.png │ ├── r2logo3.png │ ├── r2logo3_boxed.ico │ ├── r2logo3_boxed.png │ ├── r2logo3_boxed_rounded.ico │ ├── r2pipe.css │ ├── r2pipe_high.css │ ├── roses_and_diamonds.jpg │ ├── roses_and_diamonds_low_bright.jpg │ ├── sf2_original.jpg │ ├── sf2_original_low_bright.jpg │ ├── sf2_original_r2.jpg │ ├── step_over_icon.png │ └── window_handler_callbacks.cs.txt │ ├── packages.config │ ├── r2html.cs │ ├── r2logo3_boxed_rounded.ico │ ├── r2pipe_wrapper.cs │ ├── r4w.csproj │ ├── radare2-w64-1.1.0-git.zip │ ├── rconfig.cs │ ├── scripts │ ├── jquery-1.11.3.js │ └── r2html.js │ ├── shellext.reg │ ├── themeManager.cs │ ├── webbrowser_container_form.Designer.cs │ ├── webbrowser_container_form.cs │ └── webbrowser_container_form.resx └── zipfiles.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/appveyor.yml -------------------------------------------------------------------------------- /r2pipe/CmdQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/CmdQueue.cs -------------------------------------------------------------------------------- /r2pipe/DllR2Pipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/DllR2Pipe.cs -------------------------------------------------------------------------------- /r2pipe/HttpR2Pipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/HttpR2Pipe.cs -------------------------------------------------------------------------------- /r2pipe/IR2Pipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/IR2Pipe.cs -------------------------------------------------------------------------------- /r2pipe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/Makefile -------------------------------------------------------------------------------- /r2pipe/OldApi/HttpR2Pipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/OldApi/HttpR2Pipe.cs -------------------------------------------------------------------------------- /r2pipe/OldApi/R2Pipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/OldApi/R2Pipe.cs -------------------------------------------------------------------------------- /r2pipe/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/Program.cs -------------------------------------------------------------------------------- /r2pipe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /r2pipe/QueuedR2Pipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/QueuedR2Pipe.cs -------------------------------------------------------------------------------- /r2pipe/R2Pipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/R2Pipe.cs -------------------------------------------------------------------------------- /r2pipe/RlangPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/RlangPipe.cs -------------------------------------------------------------------------------- /r2pipe/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/project.json -------------------------------------------------------------------------------- /r2pipe/r2pipe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r2pipe/r2pipe.csproj -------------------------------------------------------------------------------- /r4w.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/r4w.sln -------------------------------------------------------------------------------- /src/r4w/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/App.config -------------------------------------------------------------------------------- /src/r4w/Benchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Benchmarks.cs -------------------------------------------------------------------------------- /src/r4w/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/r4w/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Form1.Designer.cs -------------------------------------------------------------------------------- /src/r4w/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Form1.cs -------------------------------------------------------------------------------- /src/r4w/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Form1.resx -------------------------------------------------------------------------------- /src/r4w/GuiControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/GuiControl.cs -------------------------------------------------------------------------------- /src/r4w/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/r4w/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Program.cs -------------------------------------------------------------------------------- /src/r4w/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/r4w/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/r4w/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Properties/Resources.resx -------------------------------------------------------------------------------- /src/r4w/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/r4w/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Properties/Settings.settings -------------------------------------------------------------------------------- /src/r4w/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/Properties/app.manifest -------------------------------------------------------------------------------- /src/r4w/askForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/askForm.Designer.cs -------------------------------------------------------------------------------- /src/r4w/askForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/askForm.cs -------------------------------------------------------------------------------- /src/r4w/askForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/askForm.resx -------------------------------------------------------------------------------- /src/r4w/convertFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/convertFrm.Designer.cs -------------------------------------------------------------------------------- /src/r4w/convertFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/convertFrm.cs -------------------------------------------------------------------------------- /src/r4w/convertFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/convertFrm.resx -------------------------------------------------------------------------------- /src/r4w/decoratorParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/decoratorParam.cs -------------------------------------------------------------------------------- /src/r4w/hotkeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/hotkeys.cs -------------------------------------------------------------------------------- /src/r4w/media/akira.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/akira.jpg -------------------------------------------------------------------------------- /src/r4w/media/bluedot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/bluedot.png -------------------------------------------------------------------------------- /src/r4w/media/continue_until_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/continue_until_icon.png -------------------------------------------------------------------------------- /src/r4w/media/green_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/green_page.png -------------------------------------------------------------------------------- /src/r4w/media/hexview.akira.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/hexview.akira.css -------------------------------------------------------------------------------- /src/r4w/media/hexview.azure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/hexview.azure.css -------------------------------------------------------------------------------- /src/r4w/media/hexview.blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/hexview.blue.css -------------------------------------------------------------------------------- /src/r4w/media/hexview.control.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/hexview.control.css -------------------------------------------------------------------------------- /src/r4w/media/hexview.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/hexview.dark.css -------------------------------------------------------------------------------- /src/r4w/media/hexview.lemon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/hexview.lemon.css -------------------------------------------------------------------------------- /src/r4w/media/hexview.pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/hexview.pink.css -------------------------------------------------------------------------------- /src/r4w/media/hexview.terminal256.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/hexview.terminal256.css -------------------------------------------------------------------------------- /src/r4w/media/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/paste.png -------------------------------------------------------------------------------- /src/r4w/media/pinkspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/pinkspace.jpg -------------------------------------------------------------------------------- /src/r4w/media/playbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/playbutton.png -------------------------------------------------------------------------------- /src/r4w/media/playbutton_gray_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/playbutton_gray_small.png -------------------------------------------------------------------------------- /src/r4w/media/playbutton_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/playbutton_small.png -------------------------------------------------------------------------------- /src/r4w/media/r2icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/r2icon.jpg -------------------------------------------------------------------------------- /src/r4w/media/r2icon_c.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/r2icon_c.ico -------------------------------------------------------------------------------- /src/r4w/media/r2icon_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/r2icon_c.png -------------------------------------------------------------------------------- /src/r4w/media/r2logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/r2logo3.png -------------------------------------------------------------------------------- /src/r4w/media/r2logo3_boxed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/r2logo3_boxed.ico -------------------------------------------------------------------------------- /src/r4w/media/r2logo3_boxed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/r2logo3_boxed.png -------------------------------------------------------------------------------- /src/r4w/media/r2logo3_boxed_rounded.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/r2logo3_boxed_rounded.ico -------------------------------------------------------------------------------- /src/r4w/media/r2pipe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/r2pipe.css -------------------------------------------------------------------------------- /src/r4w/media/r2pipe_high.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/r2pipe_high.css -------------------------------------------------------------------------------- /src/r4w/media/roses_and_diamonds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/roses_and_diamonds.jpg -------------------------------------------------------------------------------- /src/r4w/media/roses_and_diamonds_low_bright.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/roses_and_diamonds_low_bright.jpg -------------------------------------------------------------------------------- /src/r4w/media/sf2_original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/sf2_original.jpg -------------------------------------------------------------------------------- /src/r4w/media/sf2_original_low_bright.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/sf2_original_low_bright.jpg -------------------------------------------------------------------------------- /src/r4w/media/sf2_original_r2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/sf2_original_r2.jpg -------------------------------------------------------------------------------- /src/r4w/media/step_over_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/step_over_icon.png -------------------------------------------------------------------------------- /src/r4w/media/window_handler_callbacks.cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/media/window_handler_callbacks.cs.txt -------------------------------------------------------------------------------- /src/r4w/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/packages.config -------------------------------------------------------------------------------- /src/r4w/r2html.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/r2html.cs -------------------------------------------------------------------------------- /src/r4w/r2logo3_boxed_rounded.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/r2logo3_boxed_rounded.ico -------------------------------------------------------------------------------- /src/r4w/r2pipe_wrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/r2pipe_wrapper.cs -------------------------------------------------------------------------------- /src/r4w/r4w.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/r4w.csproj -------------------------------------------------------------------------------- /src/r4w/radare2-w64-1.1.0-git.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/radare2-w64-1.1.0-git.zip -------------------------------------------------------------------------------- /src/r4w/rconfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/rconfig.cs -------------------------------------------------------------------------------- /src/r4w/scripts/jquery-1.11.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/scripts/jquery-1.11.3.js -------------------------------------------------------------------------------- /src/r4w/scripts/r2html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/scripts/r2html.js -------------------------------------------------------------------------------- /src/r4w/shellext.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/shellext.reg -------------------------------------------------------------------------------- /src/r4w/themeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/themeManager.cs -------------------------------------------------------------------------------- /src/r4w/webbrowser_container_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/webbrowser_container_form.Designer.cs -------------------------------------------------------------------------------- /src/r4w/webbrowser_container_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/webbrowser_container_form.cs -------------------------------------------------------------------------------- /src/r4w/webbrowser_container_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/src/r4w/webbrowser_container_form.resx -------------------------------------------------------------------------------- /zipfiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m4ndingo/radare2gui_dotnet/HEAD/zipfiles.bat --------------------------------------------------------------------------------