{"id":13377664,"url":"https://github.com/DynamoRIO/dynamorio","last_synced_at":"2025-03-13T03:30:58.194Z","repository":{"id":23864539,"uuid":"27242935","full_name":"DynamoRIO/dynamorio","owner":"DynamoRIO","description":"Dynamic Instrumentation Tool Platform","archived":false,"fork":false,"pushed_at":"2025-03-09T16:52:21.000Z","size":118530,"stargazers_count":2765,"open_issues_count":1730,"forks_count":574,"subscribers_count":107,"default_branch":"master","last_synced_at":"2025-03-10T10:45:03.958Z","etag":null,"topics":["analysis-framework","binary-analysis","cache-simulator","dynamorio","instrumentation","linux","profiling","simulator","toolkit","windows"],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DynamoRIO.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"License.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-11-27T22:08:34.000Z","updated_at":"2025-03-10T01:45:03.000Z","dependencies_parsed_at":"2023-12-07T23:35:30.672Z","dependency_job_id":"dd69eb18-6734-4505-b67d-4d53194dea61","html_url":"https://github.com/DynamoRIO/dynamorio","commit_stats":null,"previous_names":[],"tags_count":397,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DynamoRIO%2Fdynamorio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DynamoRIO%2Fdynamorio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DynamoRIO%2Fdynamorio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DynamoRIO%2Fdynamorio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DynamoRIO","download_url":"https://codeload.github.com/DynamoRIO/dynamorio/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243335204,"owners_count":20274897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["analysis-framework","binary-analysis","cache-simulator","dynamorio","instrumentation","linux","profiling","simulator","toolkit","windows"],"created_at":"2024-07-30T06:01:57.182Z","updated_at":"2025-03-13T03:30:53.543Z","avatar_url":"https://github.com/DynamoRIO.png","language":"C","readme":"Copyright (c) 2010-2024 Google, Inc. licensed under the terms of the BSD.  All other rights reserved.\nCopyright (c) 2000-2010 VMware, Inc. licensed under the terms of the BSD.  All other rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice,\n  this list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n  this list of conditions and the following disclaimer in the documentation\n  and/or other materials provided with the distribution.\n\n* Neither the name of VMware, Inc. nor the names of its contributors may be\n  used to endorse or promote products derived from this software without\n  specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGE.\n\n**********************************************************\nAbout DynamoRIO\n\nDynamoRIO is a runtime code manipulation system that supports code\ntransformations on any part of a program, while it executes. DynamoRIO\nexports an interface for building dynamic tools for a wide variety of uses:\nprogram analysis and understanding, profiling, instrumentation,\noptimization, translation, etc. Unlike many dynamic tool systems, DynamoRIO\nis not limited to insertion of callouts/trampolines and allows arbitrary\nmodifications to application instructions via a powerful IA-32/AMD64/ARM/AArch64\ninstruction manipulation library. DynamoRIO provides efficient,\ntransparent, and comprehensive manipulation of unmodified applications\nrunning on stock operating systems (Windows, Linux, or Android) and commodity\nIA-32, AMD64, ARM, and AArch64 hardware.\n\nThe DynamoRIO home page:\n\n  http://dynamorio.org/\n\n************************************************************\nQuickstart instructions for running DynamoRIO:\n\n--------------------------------------------------\nOn Linux:\n\nTo run the application with a DynamoRIO sample client:\n32-bit:\n  % bin32/drrun -c samples/bin32/libbbsize.so -- ls\n64-bit:\n  % bin64/drrun -c samples/bin64/libbbsize.so -- ls\n\nTo run the application with a DynamoRIO-based tool:\n32-bit:\n  % bin32/drrun -t drmemtrace -- ls\n64-bit\n  % bin64/drrun -t drmemtrace -- ls\n\nTo run the Dr. Memory tool which is included in release packages:\n  % bin32/drrun -t drmemory -- \u003cmy-32-bit-app\u003e \u003cargs-to-app\u003e\n\nFor additional options and to list available tools for -t:\n  % bin32/drrun -help\n\nFor full control over child processes use a two-step process:\nfirst configure with bin32/drconfig and then invoke the parent\nprocess with bin32/drinject.\n\n--------------------------------------------------\nOn Windows, with examples run from a cygwin shell (for cmd shell replace\nthe first slash with a backward slash: e.g., bin32\\drrun.exe):\n\nMethod 1: directly invoke an application:\nTo run the application with a DynamoRIO sample client:\n32-bit\n  % bin32/drrun.exe -c samples/bin32/bbsize.dll -- notepad\n64-bit\n  % bin64/drrun.exe -c samples/bin64/bbsize.dll -- notepad\n\nTo run the application with a DynamoRIO-based tool:\n32-bit\n  % bin32/drrun.exe -t drstrace -- notepad\n64-bit\n  % bin64/drrun.exe -t drstrace -- notepad\n\nTo run the Dr. Memory tool which is included in release packages:\n  % bin32/drrun.exe -t drmemory -- \u003cmy-32-bit-app\u003e \u003cargs-to-app\u003e\n\nFor additional options and to list available tools for -t:\n  % bin32/drrun.exe -help\n\nMethod 2: configure an application and launch it separately.\nThis requires administrative privileges:\n32-bit:\n  % bin32/drconfig.exe -reg notepad.exe -syswide_on -c samples/bin32/bbsize.dll\n64-bit:\n  % bin64/drconfig.exe -reg notepad.exe -syswide_on -c samples/bin64/bbsize.dll\nNow run the application however you normally would, with the mouse or from\nthe command line.  From a cygwin shell this will run 32-bit notepad:\n  % cmd /c start notepad\n\nNow close notepad and a messagebox should pop up produced by the bbsize client.\n\nNote that if you use cygwin unzip to extract files from the release package\n.zip file, you'll need to mark all the .dll and .exe files as ugo+rx in\norder to execute them.\n\n************************************************************\nInstructions for building:\n\nIf you are building from source, please see the DynamoRIO site for\ninformation on the required tools on both Windows and Linux:\n\nhttps://dynamorio.org/page_building.html\n\n************************************************************\nGetting help and reporting bugs:\n\nQuery the DynamoRIO users group mailing list/discussion forum:\n\n  http://groups.google.com/group/dynamorio-users\n\nUse the Issue Tracker:\n\n  http://dynamorio.org/issues\n\n************************************************************\n","funding_links":[],"categories":["C"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDynamoRIO%2Fdynamorio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDynamoRIO%2Fdynamorio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDynamoRIO%2Fdynamorio/lists"}