{"id":22097456,"url":"https://github.com/nuclei-software/nuclei-dlink_gdbserver","last_synced_at":"2025-10-20T11:11:08.115Z","repository":{"id":112661642,"uuid":"560344441","full_name":"Nuclei-Software/nuclei-dlink_gdbserver","owner":"Nuclei-Software","description":"Nuclei DLink GDB Server Tool","archived":false,"fork":false,"pushed_at":"2024-07-02T04:04:49.000Z","size":27030,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T01:21:49.270Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Nuclei-Software.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2022-11-01T09:32:11.000Z","updated_at":"2024-12-10T06:13:24.000Z","dependencies_parsed_at":"2024-01-04T10:36:34.937Z","dependency_job_id":"cf171c5d-1ab1-4e2f-b755-32ad9f1f6519","html_url":"https://github.com/Nuclei-Software/nuclei-dlink_gdbserver","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Nuclei-Software/nuclei-dlink_gdbserver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nuclei-Software%2Fnuclei-dlink_gdbserver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nuclei-Software%2Fnuclei-dlink_gdbserver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nuclei-Software%2Fnuclei-dlink_gdbserver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nuclei-Software%2Fnuclei-dlink_gdbserver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Nuclei-Software","download_url":"https://codeload.github.com/Nuclei-Software/nuclei-dlink_gdbserver/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Nuclei-Software%2Fnuclei-dlink_gdbserver/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265637449,"owners_count":23802714,"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":[],"created_at":"2024-12-01T04:15:35.367Z","updated_at":"2025-10-20T11:11:07.990Z","avatar_url":"https://github.com/Nuclei-Software.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction\n\n![](img/dlink_gdbserver.png)\n\n# QT Development Environment\n\n- [Official Download](http://download.qt.io/)\n- [中国科学技术大学](http://mirrors.ustc.edu.cn/qtproject/)\n- [清华大学](https://mirrors.tuna.tsinghua.edu.cn/qt/)\n- [北京理工大学](http://mirror.bit.edu.cn/qtproject/)\n- [中国互联网络信息中心](https://mirrors.cnnic.cn/qt/)\n\n| directory | description |\n|--------|--------|\n| archive | Various Qt development tools installation packages, both new and old (you can download the Qt development environment and source code) |\n| community_releases | Community customized Qt library, Tizen Edition Qt and Qt additional source package |\n| development_releases | Development Edition, which has new and old unstable versions, is an informal version in the Qt development process |\n| learning | There are documentation tutorials and demonstration videos for learning Qt |\n| ministro | The mini version, currently available for Android |\n| official_releases | The official release is a stable version of the Qt library and development tools (you can download the Qt development environment and source code) |\n| online | Qt online installation source |\n| snapshots | A preview of the latest development tests in the Qt library and development tools |\n\n\u003e Since the latest version of QT only supports online installation, I'll use online installation as an example here\n\nIndex of **/qtproject/official_releases/online_installers/**\n\nThe mode of online installation will be slow in China, so we need to add the following parameters at startup:\n\n``` bash\n.\\qt-unified-windows-x64-online.exe --mirror https://mirrors.tuna.tsinghua.edu.cn/qt\n```\n\n![](img/qt_online_install_0.png)\n\n![](img/qt_online_install_1.png)\n\n``` bash\nvim ~/.bashrc\n\nexport PATH=~/Qt/Tools/QtCreator/bin:~/Qt/6.4.2/gcc_64/bin:$PATH;\n\nsource ~/.bashrc\n```\n\n# Qt In GUI Mode\n\n```bash\nqtcreator dlink_gdbserver.pro \u0026\n```\n\n![](img/qt_config.png)\n\n## Compile\n\n![](img/gui_compile.png)\n\n## Run\n\n![](img/gui_run.png)\n\n# Qt In Command Line Mode\n\n## Compile\n\n```bash\ncd dlink_gdbserver\n\nqmake dlink_gdbserver.pro -o ~/build/\n\nmake --directory=~/build/\n```\n\n## Run\n\n```bash\ncd build\n\n# Starting In GUI Mode\n./dlink_gdbserver\n\n# Starting In Command Line Mode\n./dlink_gdbserver -f ../dlink_gdbserver.cfg\n```\n\n# Linux add usb rules\n\nCreating a rule file\n```\nsudo vim /etc/udev/rules.d/50-dlink.rules\n```\n\nWrite Dlink-related USB rules\n```\nSUBSYSTEMS==\"usb\", ATTRS{idVendor}==\"28e9\", ATTRS{idProduct}==\"018a\", GROUP=\"users\", MODE=\"0666\"\n```\n\nReload USB rules or reboot your computer\n```\nsudo udevadm control --reload\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnuclei-software%2Fnuclei-dlink_gdbserver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnuclei-software%2Fnuclei-dlink_gdbserver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnuclei-software%2Fnuclei-dlink_gdbserver/lists"}