├── 2.x ├── trunk │ ├── KProcessHacker │ │ ├── dirs │ │ ├── clean │ │ │ ├── makefile │ │ │ └── sources │ │ ├── bin │ │ │ ├── amd64 │ │ │ │ ├── kprocesshacker.pdb │ │ │ │ └── kprocesshacker.sys │ │ │ └── i386 │ │ │ │ ├── kprocesshacker.pdb │ │ │ │ └── kprocesshacker.sys │ │ ├── bin-signed │ │ │ ├── amd64 │ │ │ │ └── kprocesshacker.sys │ │ │ └── i386 │ │ │ │ └── kprocesshacker.sys │ │ ├── sign.cmd │ │ └── sources.inc │ ├── build │ │ ├── internal │ │ │ ├── wait.cmd │ │ │ ├── readme.txt │ │ │ ├── DigiCertHighAssuranceCodeSigningCA-1.crt │ │ │ └── sign.cmd │ │ ├── sdk │ │ │ ├── phapppub_gen.cmd │ │ │ ├── makesdkwithdoc.cmd │ │ │ ├── phapppub_options.txt │ │ │ └── replace.vbs │ │ ├── Installer │ │ │ ├── Icons │ │ │ │ ├── uninstall.ico │ │ │ │ ├── ProcessHackerLarge.bmp │ │ │ │ └── ProcessHackerSmall.bmp │ │ │ └── Process_Hacker2_installer.iss │ │ ├── zw_options.txt │ │ └── coverity │ │ │ └── coverity-build.bat │ ├── lib │ │ ├── lib32 │ │ │ ├── ntdll.exp │ │ │ ├── ntdll.lib │ │ │ ├── samlib.exp │ │ │ ├── samlib.lib │ │ │ ├── winsta.exp │ │ │ └── winsta.lib │ │ ├── lib64 │ │ │ ├── ntdll.exp │ │ │ ├── ntdll.lib │ │ │ ├── samlib.exp │ │ │ ├── samlib.lib │ │ │ ├── winsta.exp │ │ │ └── winsta.lib │ │ ├── makeall.cmd │ │ ├── makelib.cmd │ │ └── readme.txt │ ├── ProcessHacker │ │ ├── ProcessHacker.ico │ │ ├── resources │ │ │ ├── cog.bmp │ │ │ ├── cog.ico │ │ │ ├── cog.png │ │ │ ├── pin.bmp │ │ │ ├── pin.png │ │ │ ├── cross.bmp │ │ │ ├── cross.png │ │ │ ├── disk.bmp │ │ │ ├── disk.png │ │ │ ├── find.bmp │ │ │ ├── find.png │ │ │ ├── group.bmp │ │ │ ├── group.png │ │ │ ├── help.bmp │ │ │ ├── help.png │ │ │ ├── lock.bmp │ │ │ ├── lock.png │ │ │ ├── money.bmp │ │ │ ├── money.png │ │ │ ├── table.bmp │ │ │ ├── table.png │ │ │ ├── tick.bmp │ │ │ ├── tick.png │ │ │ ├── user.bmp │ │ │ ├── user.png │ │ │ ├── arrow_up.bmp │ │ │ ├── arrow_up.png │ │ │ ├── bricks.bmp │ │ │ ├── bricks.png │ │ │ ├── cog_edit.bmp │ │ │ ├── cog_edit.png │ │ │ ├── cog_go.bmp │ │ │ ├── cog_go.ico │ │ │ ├── cog_go.png │ │ │ ├── folder.bmp │ │ │ ├── folder.png │ │ │ ├── pencil.bmp │ │ │ ├── pencil.png │ │ │ ├── lock_edit.bmp │ │ │ ├── lock_edit.png │ │ │ ├── magnifier.bmp │ │ │ ├── magnifier.png │ │ │ ├── page_copy.bmp │ │ │ ├── page_copy.png │ │ │ ├── table_sort.bmp │ │ │ ├── table_sort.png │ │ │ ├── ProcessHacker.png │ │ │ ├── application.bmp │ │ │ ├── application.ico │ │ │ ├── application.png │ │ │ ├── arrow_refresh.bmp │ │ │ ├── arrow_refresh.png │ │ │ ├── arrow_right.bmp │ │ │ ├── arrow_right.png │ │ │ ├── information.bmp │ │ │ ├── information.png │ │ │ ├── lightbulb_off.bmp │ │ │ ├── lightbulb_off.png │ │ │ ├── application_go.bmp │ │ │ ├── application_go.ico │ │ │ ├── application_go.png │ │ │ ├── folder_explore.bmp │ │ │ ├── folder_explore.png │ │ │ ├── page_white_text.png │ │ │ ├── control_pause_blue.bmp │ │ │ ├── control_pause_blue.png │ │ │ ├── control_play_blue.bmp │ │ │ ├── control_play_blue.png │ │ │ ├── control_stop_blue.bmp │ │ │ ├── control_stop_blue.png │ │ │ ├── table_relationship.bmp │ │ │ ├── table_relationship.png │ │ │ ├── control_equalizer_blue.bmp │ │ │ └── control_equalizer_blue.png │ │ ├── include │ │ │ └── phapprev_in.h │ │ └── sdk │ │ │ └── phdk.h │ ├── tools │ │ ├── fixlib │ │ │ ├── bin │ │ │ │ └── Release │ │ │ │ │ └── fixlib.exe │ │ │ └── fixlib.vcxproj.filters │ │ ├── GenerateZw │ │ │ └── GenerateZw │ │ │ │ └── bin │ │ │ │ └── Release │ │ │ │ └── GenerateZw.exe │ │ ├── GenerateHeader │ │ │ └── GenerateHeader │ │ │ │ ├── bin │ │ │ │ └── Release │ │ │ │ │ └── GenerateHeader.exe │ │ │ │ └── App.config │ │ └── fiin │ │ │ └── resource.h │ ├── plugins │ │ ├── OnlineChecks │ │ │ ├── json-c │ │ │ │ ├── ChangeLog │ │ │ │ ├── json_config.h │ │ │ │ ├── AUTHORS │ │ │ │ ├── json_c_version.c │ │ │ │ └── random_seed.h │ │ │ ├── CHANGELOG.txt │ │ │ └── sha256.h │ │ ├── ToolStatus │ │ │ └── resources │ │ │ │ ├── cross.bmp │ │ │ │ ├── cross.png │ │ │ │ ├── find.bmp │ │ │ │ ├── find.png │ │ │ │ ├── cog_edit.bmp │ │ │ │ ├── cog_edit.png │ │ │ │ ├── chart_line.bmp │ │ │ │ ├── chart_line.png │ │ │ │ ├── active_search.bmp │ │ │ │ ├── active_search.png │ │ │ │ ├── application.bmp │ │ │ │ ├── application.png │ │ │ │ ├── arrow_refresh.bmp │ │ │ │ ├── arrow_refresh.png │ │ │ │ ├── cross_modern.png │ │ │ │ ├── find_modern.png │ │ │ │ ├── lightbulb_off.bmp │ │ │ │ ├── lightbulb_off.png │ │ │ │ ├── application_get.bmp │ │ │ │ ├── application_get.png │ │ │ │ ├── application_go.bmp │ │ │ │ ├── application_go.png │ │ │ │ ├── cog_edit_modern.png │ │ │ │ ├── inactive_search.bmp │ │ │ │ ├── inactive_search.png │ │ │ │ ├── application_modern.png │ │ │ │ ├── chart_line_modern.png │ │ │ │ ├── arrow_refresh_modern.png │ │ │ │ ├── lightbulb_off_modern.png │ │ │ │ ├── application_get_modern.png │ │ │ │ └── application_go_modern.png │ │ ├── readme.txt │ │ ├── SamplePlugin │ │ │ └── bin │ │ │ │ └── Release32 │ │ │ │ └── SamplePlugin.dll │ │ ├── NetAdapters │ │ │ └── CHANGELOG.txt │ │ ├── ExtendedNotifications │ │ │ └── CHANGELOG.txt │ │ ├── WindowExplorer │ │ │ └── CHANGELOG.txt │ │ ├── UserNotes │ │ │ └── CHANGELOG.txt │ │ └── NetworkTools │ │ │ └── CHANGELOG.txt │ ├── phlib │ │ ├── include │ │ │ ├── templ.h │ │ │ ├── circbuf.h │ │ │ ├── md5.h │ │ │ └── colorbox.h │ │ └── circbuf.c │ └── tests │ │ └── phlib-test │ │ ├── tests.h │ │ └── main.c └── incomplete │ └── readme.txt ├── misc ├── website │ ├── websitev3 │ │ ├── include │ │ │ └── .htaccess │ │ ├── favicon.ico │ │ └── img │ │ │ ├── close.png │ │ │ ├── next.png │ │ │ ├── prev.png │ │ │ ├── donate.png │ │ │ ├── loading.gif │ │ │ ├── logo_64x64.png │ │ │ └── screenshots │ │ │ ├── menu.png │ │ │ ├── stats.png │ │ │ ├── disk_tab.png │ │ │ ├── network.png │ │ │ ├── services.png │ │ │ ├── sysinfo.png │ │ │ ├── find_handles.png │ │ │ ├── main_window.png │ │ │ ├── sysinfo_cpu.png │ │ │ ├── thread_stack.png │ │ │ ├── sysinfo_memory.png │ │ │ ├── sysinfo_trimmed.png │ │ │ └── sysinfo_trimmed_1.png │ ├── websitev1 │ │ ├── robots.txt │ │ └── images │ │ │ ├── blank.gif │ │ │ ├── bullet.gif │ │ │ ├── close.gif │ │ │ ├── favicon.gif │ │ │ ├── go-down.png │ │ │ ├── graphs.png │ │ │ ├── handles.png │ │ │ ├── hxdef.png │ │ │ ├── image-1.jpg │ │ │ ├── loading.gif │ │ │ ├── memory.png │ │ │ ├── modules.png │ │ │ ├── results.png │ │ │ ├── search.png │ │ │ ├── threads.png │ │ │ ├── thumb-1.jpg │ │ │ ├── token.png │ │ │ ├── close_red.png │ │ │ ├── icesword.png │ │ │ ├── next_blue.gif │ │ │ ├── next_gold.gif │ │ │ ├── next_grey.gif │ │ │ ├── next_red.gif │ │ │ ├── nextlabel.gif │ │ │ ├── pause_red.png │ │ │ ├── play_blue.png │ │ │ ├── play_gold.png │ │ │ ├── play_grey.png │ │ │ ├── play_red.png │ │ │ ├── prev_blue.gif │ │ │ ├── prev_gold.gif │ │ │ ├── prev_grey.gif │ │ │ ├── prev_red.gif │ │ │ ├── prevlabel.gif │ │ │ ├── processes.png │ │ │ ├── PH_MainIcon.png │ │ │ ├── close_blue.png │ │ │ ├── close_gold.png │ │ │ ├── close_green.png │ │ │ ├── close_grey.png │ │ │ ├── closelabel.gif │ │ │ ├── next_green.gif │ │ │ ├── pause_blue.png │ │ │ ├── pause_gold.png │ │ │ ├── pause_green.png │ │ │ ├── pause_grey.png │ │ │ ├── play_green.png │ │ │ ├── prev_green.gif │ │ │ ├── servicemenu.png │ │ │ ├── donate-button.gif │ │ │ ├── download-icon.gif │ │ │ ├── memory_editor.png │ │ │ ├── processhacker.png │ │ │ ├── sysinfo_small.png │ │ │ └── processhacker_small.png │ └── websitev2 │ │ ├── favicon.ico │ │ ├── img │ │ ├── donate.png │ │ ├── sflogo.png │ │ ├── ad_300x250.png │ │ ├── ad_336x280.png │ │ ├── ad_728x90.png │ │ ├── logo_64x64.png │ │ ├── screenshots │ │ │ ├── menu.png │ │ │ ├── stats.png │ │ │ ├── disk_tab.png │ │ │ ├── network.png │ │ │ ├── services.png │ │ │ ├── sysinfo.png │ │ │ ├── find_handles.png │ │ │ ├── main_window.png │ │ │ ├── sysinfo_cpu.png │ │ │ ├── thread_stack.png │ │ │ ├── sysinfo_memory.png │ │ │ ├── sysinfo_trimmed.png │ │ │ └── sysinfo_trimmed_1.png │ │ └── answers-arrow-right.png │ │ └── minify.bat └── bugcheck │ ├── KBugCheck │ ├── makefile │ ├── i386 │ │ └── kbugcheck.sys │ └── sources │ └── BugCheck │ ├── fake_base.ico │ ├── app.config │ ├── Properties │ └── Settings.settings │ ├── BugCheckCode.cs │ └── Program.cs └── 1.x ├── branches └── ph-plugins │ ├── KProcessHacker │ ├── makefile │ ├── autoreload.cmd │ ├── include │ │ └── types.h │ ├── amd64 │ │ └── kprocesshacker.sys │ ├── i386 │ │ └── kprocesshacker.sys │ ├── auto.cmd │ └── sources │ ├── ProcessHacker │ ├── Build │ │ ├── ngen.cmd │ │ ├── 7za │ │ │ └── 7za.exe │ │ ├── release.cmd │ │ ├── Installer │ │ │ ├── Custom_Messages.iss │ │ │ ├── Icons │ │ │ │ ├── uninstall.ico │ │ │ │ ├── ProcessHacker.ico │ │ │ │ ├── ProcessHackerLarge.bmp │ │ │ │ └── ProcessHackerSmall.bmp │ │ │ ├── Languages │ │ │ │ └── Greek.isl │ │ │ └── Process_Hacker_installer.iss │ │ └── testsign.cmd │ ├── Icons │ │ ├── CogGo.ico │ │ ├── Help.ico │ │ ├── Table.ico │ │ ├── Bricks.ico │ │ ├── Keyboard.ico │ │ ├── PageEdit.ico │ │ ├── Process.ico │ │ ├── Terminal.ico │ │ ├── ApplicationXP.ico │ │ ├── ProcessHacker.ico │ │ ├── ProcessHacker.png │ │ ├── Process_small.ico │ │ └── ProcessHacker_small.ico │ ├── ProcessHacker.ico │ ├── Resources │ │ ├── cog.png │ │ ├── disk.png │ │ ├── find.png │ │ ├── help.png │ │ ├── lock.png │ │ ├── page.png │ │ ├── tick.png │ │ ├── user.png │ │ ├── bricks.png │ │ ├── cross.png │ │ ├── delete.png │ │ ├── group.png │ │ ├── money.png │ │ ├── mouse.png │ │ ├── pencil.png │ │ ├── report.png │ │ ├── sflogo.png │ │ ├── table.png │ │ ├── arrow_up.png │ │ ├── cog_edit.png │ │ ├── door_out.png │ │ ├── folder_go.png │ │ ├── lock_edit.png │ │ ├── page_copy.png │ │ ├── page_edit.png │ │ ├── page_gear.png │ │ ├── page_save.png │ │ ├── pencil_go.png │ │ ├── application.png │ │ ├── arrow_right.png │ │ ├── chart_curve.png │ │ ├── chart_line.png │ │ ├── information.png │ │ ├── report_user.png │ │ ├── table_sort.png │ │ ├── active_search.png │ │ ├── application_go.png │ │ ├── arrow_refresh.png │ │ ├── control_pause.png │ │ ├── control_play.png │ │ ├── control_stop.png │ │ ├── folder_explore.png │ │ ├── lightbulb_off.png │ │ ├── VirusTotal-logo.png │ │ ├── asterisk_orange.png │ │ ├── inactive_search.png │ │ ├── page_white_text.png │ │ ├── application_delete.png │ │ ├── control_equalizer.png │ │ ├── control_pause_blue.png │ │ ├── control_play_blue.png │ │ ├── control_stop_blue.png │ │ ├── table_relationship.png │ │ ├── application_form_magnify.png │ │ ├── application_view_detail.png │ │ └── control_equalizer_blue.png │ ├── SharpDevelop │ │ └── Wrappers │ │ │ ├── Util.cs │ │ │ ├── ResourceManager.cs │ │ │ └── CorPub │ │ │ ├── ICorPublish.cs │ │ │ ├── ICorPublishProcess.cs │ │ │ └── Autogenerated │ │ │ ├── ICorPublish.cs │ │ │ ├── CorpubPublish.cs │ │ │ ├── CorPublishClass.cs │ │ │ ├── ICorPublishEnum.cs │ │ │ ├── ICorPublishProcess.cs │ │ │ ├── ICorPublishAppDomain.cs │ │ │ ├── ICorPublishProcessEnum.cs │ │ │ └── ICorPublishAppDomainEnum.cs │ ├── Components │ │ ├── TaskDialog │ │ │ └── TaskDialog.cs │ │ ├── Be.Windows.Forms.HexBox │ │ │ ├── HexBox.bmp │ │ │ ├── HexBox.cs │ │ │ ├── HexBox.snk │ │ │ └── IByteProvider.cs │ │ └── TaskbarLib │ │ │ └── JumpLists │ │ │ └── JumpListManager.cs │ └── UI │ │ ├── Actions │ │ └── ElevationLevel.cs │ │ └── WindowFromHandle.cs │ ├── CHANGELOG.txt │ ├── TreeViewAdv │ ├── key.snk │ ├── Resources │ │ ├── Folder.bmp │ │ ├── Leaf.bmp │ │ ├── Thumbs.db │ │ ├── check.bmp │ │ ├── minus.bmp │ │ ├── plus.bmp │ │ ├── DVSplit.cur │ │ ├── loading_icon │ │ ├── uncheck.bmp │ │ ├── unknown.bmp │ │ └── FolderClosed.bmp │ ├── app.config │ ├── Threading │ │ └── WorkItemStatus.cs │ └── Tree │ │ ├── IToolTipProvider.cs │ │ ├── NodeControls │ │ ├── NodeEventArgs.cs │ │ └── NodeControlValueEventArgs.cs │ │ ├── TreeColumnEventArgs.cs │ │ ├── TreeViewAdvEventArgs.cs │ │ ├── ColumnCollection.cs │ │ ├── Input │ │ └── ColumnState.cs │ │ ├── TreeViewAdvCancelEventArgs.cs │ │ └── DropPosition.cs │ ├── ExtraTools │ ├── NtObjects │ │ ├── app.config │ │ └── Properties │ │ │ └── Settings.settings │ ├── NtProfiler │ │ ├── app.config │ │ └── Properties │ │ │ └── Settings.settings │ ├── ProcessAnalyzer │ │ ├── fake_base.ico │ │ └── Properties │ │ │ └── Settings.settings │ └── SysCallHacker │ │ └── Properties │ │ └── Settings.settings │ ├── NProcessHacker │ ├── Release │ │ └── NProcessHacker.dll │ ├── x64 │ │ └── Release │ │ │ └── NProcessHacker.dll │ └── NProcessHackerHook │ │ └── nphhook.c │ ├── ProcessHacker.Common │ ├── app.config │ ├── ExtensionAttribute.cs │ ├── IResettable.cs │ ├── Linq │ │ ├── IGrouping.cs │ │ ├── ILookup.cs │ │ ├── IOrderedEnumerable.cs │ │ ├── Query Operators │ │ │ └── Enumerable Private.cs │ │ └── Grouping.cs │ └── Settings │ │ ├── SettingsStore.cs │ │ └── SettingDefaultAttribute.cs │ ├── ProcessHacker.Native │ ├── app.config │ ├── Security │ │ ├── EventPairAccess.cs │ │ ├── FltPortAccess.cs │ │ ├── ProfileAccess.cs │ │ ├── ObjectTypeAccess.cs │ │ ├── KeyedEventAccess.cs │ │ ├── PortAccess.cs │ │ ├── MutantAccess.cs │ │ ├── SymbolicLinkAccess.cs │ │ ├── EventAccess.cs │ │ ├── TimerAccess.cs │ │ ├── SemaphoreAccess.cs │ │ ├── IoCompletionAccess.cs │ │ ├── DirectoryAccess.cs │ │ ├── JobObjectAccess.cs │ │ ├── DebugObjectAccess.cs │ │ ├── SectionAccess.cs │ │ ├── LsaSecretAccess.cs │ │ ├── ISecurable.cs │ │ └── ScManagerAccess.cs │ ├── SsLogging │ │ ├── SsData.cs │ │ ├── SsSimple.cs │ │ └── SsClientId.cs │ └── ILoadedModule.cs │ ├── Assistant │ └── Properties │ │ └── Settings.settings │ └── ProcessHacker.Base │ └── PluginSettingsControlBase.cs └── trunk ├── ProcessHacker ├── Build │ ├── ngen.cmd │ ├── 7za │ │ └── 7za.exe │ ├── Installer │ │ ├── Custom_Messages.iss │ │ ├── Icons │ │ │ ├── uninstall.ico │ │ │ ├── ProcessHacker.ico │ │ │ ├── ProcessHackerLarge.bmp │ │ │ └── ProcessHackerSmall.bmp │ │ ├── Languages │ │ │ └── Greek.isl │ │ └── Process_Hacker_installer.iss │ └── testsign.cmd ├── Icons │ ├── Help.ico │ ├── Bricks.ico │ ├── CogGo.ico │ ├── Process.ico │ ├── Table.ico │ ├── Keyboard.ico │ ├── PageEdit.ico │ ├── Terminal.ico │ ├── ApplicationXP.ico │ ├── ProcessHacker.ico │ ├── ProcessHacker.png │ ├── Process_small.ico │ └── ProcessHacker_small.ico ├── ProcessHacker.ico ├── Resources │ ├── cog.png │ ├── cross.png │ ├── disk.png │ ├── find.png │ ├── group.png │ ├── help.png │ ├── lock.png │ ├── money.png │ ├── mouse.png │ ├── page.png │ ├── table.png │ ├── tick.png │ ├── user.png │ ├── arrow_up.png │ ├── bricks.png │ ├── cog_edit.png │ ├── delete.png │ ├── door_out.png │ ├── folder.png │ ├── pencil.png │ ├── report.png │ ├── sflogo.png │ ├── chart_line.png │ ├── folder_go.png │ ├── lock_edit.png │ ├── page_copy.png │ ├── page_edit.png │ ├── page_gear.png │ ├── page_save.png │ ├── pencil_go.png │ ├── table_sort.png │ ├── active_search.png │ ├── application.png │ ├── arrow_refresh.png │ ├── arrow_right.png │ ├── chart_curve.png │ ├── control_pause.png │ ├── control_play.png │ ├── control_stop.png │ ├── information.png │ ├── lightbulb_off.png │ ├── report_user.png │ ├── VirusTotal-logo.png │ ├── application_go.png │ ├── asterisk_orange.png │ ├── folder_explore.png │ ├── inactive_search.png │ ├── page_white_text.png │ ├── application_delete.png │ ├── control_equalizer.png │ ├── control_pause_blue.png │ ├── control_play_blue.png │ ├── control_stop_blue.png │ ├── table_relationship.png │ ├── application_view_detail.png │ ├── control_equalizer_blue.png │ └── application_form_magnify.png ├── SharpDevelop │ └── Wrappers │ │ ├── Util.cs │ │ ├── ResourceManager.cs │ │ └── CorPub │ │ ├── ICorPublish.cs │ │ ├── ICorPublishProcess.cs │ │ └── Autogenerated │ │ ├── ICorPublish.cs │ │ ├── CorpubPublish.cs │ │ ├── CorPublishClass.cs │ │ ├── ICorPublishEnum.cs │ │ ├── ICorPublishProcess.cs │ │ ├── ICorPublishAppDomain.cs │ │ ├── ICorPublishProcessEnum.cs │ │ └── ICorPublishAppDomainEnum.cs ├── Components │ ├── TaskDialog │ │ └── TaskDialog.cs │ ├── Be.Windows.Forms.HexBox │ │ ├── HexBox.cs │ │ ├── HexBox.bmp │ │ ├── HexBox.snk │ │ └── IByteProvider.cs │ └── TaskbarLib │ │ └── JumpLists │ │ └── JumpListManager.cs ├── app.config ├── UI │ ├── Actions │ │ └── ElevationLevel.cs │ └── WindowFromHandle.cs └── Providers │ └── IProvider.cs ├── CHANGELOG.txt ├── TreeViewAdv ├── Resources │ ├── Leaf.bmp │ ├── Thumbs.db │ ├── check.bmp │ ├── minus.bmp │ ├── plus.bmp │ ├── DVSplit.cur │ ├── Folder.bmp │ ├── uncheck.bmp │ ├── unknown.bmp │ ├── loading_icon │ └── FolderClosed.bmp ├── app.config ├── Threading │ └── WorkItemStatus.cs ├── Tree │ ├── IToolTipProvider.cs │ ├── NodeControls │ │ ├── NodeEventArgs.cs │ │ └── NodeControlValueEventArgs.cs │ ├── TreeColumnEventArgs.cs │ ├── TreeViewAdvEventArgs.cs │ ├── ColumnCollection.cs │ ├── Input │ │ └── ColumnState.cs │ ├── TreeViewAdvCancelEventArgs.cs │ ├── DropPosition.cs │ └── ITreeModel.cs └── StringCollectionEditor.cs ├── ExtraTools ├── ProcessAnalyzer │ ├── fake_base.ico │ └── Properties │ │ └── Settings.settings ├── NtObjects │ ├── app.config │ ├── Properties │ │ └── Settings.settings │ └── Program.cs ├── NtProfiler │ ├── app.config │ └── Properties │ │ └── Settings.settings └── SysCallHacker │ └── Properties │ └── Settings.settings ├── NProcessHacker ├── Release │ └── NProcessHacker.dll ├── x64 │ └── Release │ │ └── NProcessHacker.dll └── NProcessHackerHook │ └── nphhook.c ├── ProcessHacker.Common ├── app.config └── IResettable.cs └── ProcessHacker.Native ├── app.config ├── Api └── LsaDefinitions.cs ├── Security ├── EventPairAccess.cs ├── FltPortAccess.cs ├── ProfileAccess.cs ├── TypeObjectAccess.cs ├── KeyedEventAccess.cs ├── PortAccess.cs ├── MutantAccess.cs ├── SymbolicLinkAccess.cs ├── EventAccess.cs ├── TimerAccess.cs ├── SemaphoreAccess.cs ├── IoCompletionAccess.cs ├── DirectoryAccess.cs ├── JobObjectAccess.cs ├── DebugObjectAccess.cs ├── SectionAccess.cs ├── LsaSecretAccess.cs ├── ISecurable.cs └── ScManagerAccess.cs ├── SsLogging ├── SsData.cs ├── SsSimple.cs └── SsClientId.cs └── ILoadedModule.cs /2.x/trunk/KProcessHacker/dirs: -------------------------------------------------------------------------------- 1 | DIRS=clean 2 | -------------------------------------------------------------------------------- /misc/website/websitev3/include/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /2.x/trunk/build/internal/wait.cmd: -------------------------------------------------------------------------------- 1 | ping -n %1 localhost > nul -------------------------------------------------------------------------------- /misc/bugcheck/KBugCheck/makefile: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def -------------------------------------------------------------------------------- /2.x/trunk/KProcessHacker/clean/makefile: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def -------------------------------------------------------------------------------- /misc/website/websitev1/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | 4 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/KProcessHacker/makefile: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Build/ngen.cmd: -------------------------------------------------------------------------------- 1 | ngen.exe install ..\bin\Release\ProcessHacker.exe -------------------------------------------------------------------------------- /2.x/trunk/build/internal/readme.txt: -------------------------------------------------------------------------------- 1 | I use these scripts on own machine. 2 | 3 | wj32. -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/ngen.cmd: -------------------------------------------------------------------------------- 1 | ngen.exe install ..\bin\Release\ProcessHacker.exe -------------------------------------------------------------------------------- /1.x/trunk/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/CHANGELOG.txt -------------------------------------------------------------------------------- /2.x/trunk/lib/lib32/ntdll.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib32/ntdll.exp -------------------------------------------------------------------------------- /2.x/trunk/lib/lib32/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib32/ntdll.lib -------------------------------------------------------------------------------- /2.x/trunk/lib/lib32/samlib.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib32/samlib.exp -------------------------------------------------------------------------------- /2.x/trunk/lib/lib32/samlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib32/samlib.lib -------------------------------------------------------------------------------- /2.x/trunk/lib/lib32/winsta.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib32/winsta.exp -------------------------------------------------------------------------------- /2.x/trunk/lib/lib32/winsta.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib32/winsta.lib -------------------------------------------------------------------------------- /2.x/trunk/lib/lib64/ntdll.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib64/ntdll.exp -------------------------------------------------------------------------------- /2.x/trunk/lib/lib64/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib64/ntdll.lib -------------------------------------------------------------------------------- /2.x/trunk/lib/lib64/samlib.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib64/samlib.exp -------------------------------------------------------------------------------- /2.x/trunk/lib/lib64/samlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib64/samlib.lib -------------------------------------------------------------------------------- /2.x/trunk/lib/lib64/winsta.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib64/winsta.exp -------------------------------------------------------------------------------- /2.x/trunk/lib/lib64/winsta.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/lib/lib64/winsta.lib -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/KProcessHacker/autoreload.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | auto & sc stop kprocesshacker & sc start kprocesshacker -------------------------------------------------------------------------------- /misc/bugcheck/BugCheck/fake_base.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/bugcheck/BugCheck/fake_base.ico -------------------------------------------------------------------------------- /misc/website/websitev2/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/favicon.ico -------------------------------------------------------------------------------- /misc/website/websitev3/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/favicon.ico -------------------------------------------------------------------------------- /misc/website/websitev3/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/close.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/next.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/prev.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/CHANGELOG.txt -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/Help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/Help.ico -------------------------------------------------------------------------------- /2.x/trunk/build/sdk/phapppub_gen.cmd: -------------------------------------------------------------------------------- 1 | ..\..\tools\GenerateHeader\GenerateHeader\bin\Release\GenerateHeader.exe phapppub_options.txt -------------------------------------------------------------------------------- /2.x/trunk/lib/makeall.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call makelib.cmd ntdll 4 | call makelib.cmd samlib 5 | call makelib.cmd winsta 6 | -------------------------------------------------------------------------------- /misc/website/websitev2/img/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/donate.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/sflogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/sflogo.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/donate.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/loading.gif -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Build/7za/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Build/7za/7za.exe -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/Bricks.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/Bricks.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/CogGo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/CogGo.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/Process.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/Process.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/Table.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/Table.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/ProcessHacker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/ProcessHacker.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/cog.png -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/Leaf.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/Leaf.bmp -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/Thumbs.db -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/check.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/check.bmp -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/minus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/minus.bmp -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/plus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/plus.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/ProcessHacker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/ProcessHacker.ico -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/cog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/cog.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/cog.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/cog.ico -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/cog.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/pin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/pin.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/pin.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/blank.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/bullet.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/close.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/favicon.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/go-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/go-down.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/graphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/graphs.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/handles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/handles.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/hxdef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/hxdef.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/image-1.jpg -------------------------------------------------------------------------------- /misc/website/websitev1/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/loading.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/memory.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/modules.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/results.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/search.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/threads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/threads.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/thumb-1.jpg -------------------------------------------------------------------------------- /misc/website/websitev1/images/token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/token.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/ad_300x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/ad_300x250.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/ad_336x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/ad_336x280.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/ad_728x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/ad_728x90.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/logo_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/logo_64x64.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/logo_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/logo_64x64.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/key.snk -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/Keyboard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/Keyboard.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/PageEdit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/PageEdit.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/Terminal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/Terminal.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/cross.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/disk.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/find.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/group.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/help.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/lock.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/money.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/mouse.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/page.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/table.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/tick.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/user.png -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/DVSplit.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/DVSplit.cur -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/Folder.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/Folder.bmp -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/uncheck.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/uncheck.bmp -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/unknown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/unknown.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/cross.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/cross.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/cross.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/disk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/disk.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/disk.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/find.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/find.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/find.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/group.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/group.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/group.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/help.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/help.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/help.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/lock.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/lock.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/lock.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/money.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/money.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/money.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/table.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/table.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/table.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/tick.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/tick.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/tick.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/user.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/user.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/user.png -------------------------------------------------------------------------------- /misc/bugcheck/KBugCheck/i386/kbugcheck.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/bugcheck/KBugCheck/i386/kbugcheck.sys -------------------------------------------------------------------------------- /misc/website/websitev1/images/close_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/close_red.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/icesword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/icesword.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/next_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/next_blue.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/next_gold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/next_gold.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/next_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/next_grey.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/next_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/next_red.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/nextlabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/nextlabel.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/pause_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/pause_red.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/play_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/play_blue.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/play_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/play_gold.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/play_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/play_grey.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/play_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/play_red.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/prev_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/prev_blue.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/prev_gold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/prev_gold.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/prev_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/prev_grey.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/prev_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/prev_red.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/prevlabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/prevlabel.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/processes.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/arrow_up.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/bricks.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/cog_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/cog_edit.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/delete.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/door_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/door_out.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/folder.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/pencil.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/report.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/sflogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/sflogo.png -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/loading_icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/loading_icon -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/arrow_up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/arrow_up.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/arrow_up.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/bricks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/bricks.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/bricks.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/cog_edit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/cog_edit.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/cog_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/cog_edit.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/cog_go.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/cog_go.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/cog_go.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/cog_go.ico -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/cog_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/cog_go.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/folder.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/folder.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/folder.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/pencil.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/pencil.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/pencil.png -------------------------------------------------------------------------------- /2.x/trunk/build/Installer/Icons/uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/build/Installer/Icons/uninstall.ico -------------------------------------------------------------------------------- /2.x/trunk/tools/fixlib/bin/Release/fixlib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/tools/fixlib/bin/Release/fixlib.exe -------------------------------------------------------------------------------- /misc/website/websitev1/images/PH_MainIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/PH_MainIcon.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/close_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/close_blue.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/close_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/close_gold.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/close_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/close_green.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/close_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/close_grey.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/closelabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/closelabel.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/next_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/next_green.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/pause_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/pause_blue.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/pause_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/pause_gold.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/pause_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/pause_green.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/pause_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/pause_grey.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/play_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/play_green.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/prev_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/prev_green.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/servicemenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/servicemenu.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/ApplicationXP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/ApplicationXP.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/ProcessHacker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/ProcessHacker.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/ProcessHacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/ProcessHacker.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/Process_small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/Process_small.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/chart_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/chart_line.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/folder_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/folder_go.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/lock_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/lock_edit.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/page_copy.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/page_edit.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/page_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/page_gear.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/page_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/page_save.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/pencil_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/pencil_go.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/table_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/table_sort.png -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Resources/FolderClosed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/TreeViewAdv/Resources/FolderClosed.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/lock_edit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/lock_edit.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/lock_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/lock_edit.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/magnifier.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/magnifier.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/magnifier.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/page_copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/page_copy.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/page_copy.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/table_sort.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/table_sort.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/table_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/table_sort.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/OnlineChecks/json-c/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/OnlineChecks/json-c/ChangeLog -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/cross.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/cross.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/cross.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/find.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/find.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/find.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/donate-button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/donate-button.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/download-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/download-icon.gif -------------------------------------------------------------------------------- /misc/website/websitev1/images/memory_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/memory_editor.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/processhacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/processhacker.png -------------------------------------------------------------------------------- /misc/website/websitev1/images/sysinfo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/sysinfo_small.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/menu.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/stats.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/menu.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/stats.png -------------------------------------------------------------------------------- /1.x/trunk/ExtraTools/ProcessAnalyzer/fake_base.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ExtraTools/ProcessAnalyzer/fake_base.ico -------------------------------------------------------------------------------- /1.x/trunk/NProcessHacker/Release/NProcessHacker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/NProcessHacker/Release/NProcessHacker.dll -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/active_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/active_search.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/application.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/arrow_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/arrow_refresh.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/arrow_right.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/chart_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/chart_curve.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/control_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/control_pause.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/control_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/control_play.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/control_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/control_stop.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/information.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/lightbulb_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/lightbulb_off.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/report_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/report_user.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/ProcessHacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/ProcessHacker.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/application.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/application.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/application.ico -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/application.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/arrow_refresh.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/arrow_refresh.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/arrow_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/arrow_refresh.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/arrow_right.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/arrow_right.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/arrow_right.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/information.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/information.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/information.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/lightbulb_off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/lightbulb_off.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/lightbulb_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/lightbulb_off.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/OnlineChecks/json-c/json_config.h: -------------------------------------------------------------------------------- 1 | 2 | /* Define to 1 if you have the header file. */ 3 | #define JSON_C_HAVE_INTTYPES_H 1 4 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/cog_edit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/cog_edit.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/cog_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/cog_edit.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/answers-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/answers-arrow-right.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/disk_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/disk_tab.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/network.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/services.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/sysinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/sysinfo.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/disk_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/disk_tab.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/network.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/services.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/sysinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/sysinfo.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/CogGo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/CogGo.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/Help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/Help.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/Table.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/Table.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Icons/ProcessHacker_small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Icons/ProcessHacker_small.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/VirusTotal-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/VirusTotal-logo.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/application_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/application_go.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/asterisk_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/asterisk_orange.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/folder_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/folder_explore.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/inactive_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/inactive_search.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/page_white_text.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/Util.cs -------------------------------------------------------------------------------- /2.x/trunk/KProcessHacker/bin/amd64/kprocesshacker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/KProcessHacker/bin/amd64/kprocesshacker.pdb -------------------------------------------------------------------------------- /2.x/trunk/KProcessHacker/bin/amd64/kprocesshacker.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/KProcessHacker/bin/amd64/kprocesshacker.sys -------------------------------------------------------------------------------- /2.x/trunk/KProcessHacker/bin/i386/kprocesshacker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/KProcessHacker/bin/i386/kprocesshacker.pdb -------------------------------------------------------------------------------- /2.x/trunk/KProcessHacker/bin/i386/kprocesshacker.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/KProcessHacker/bin/i386/kprocesshacker.sys -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/application_go.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/application_go.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/application_go.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/application_go.ico -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/application_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/application_go.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/folder_explore.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/folder_explore.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/folder_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/folder_explore.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/page_white_text.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/chart_line.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/chart_line.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/chart_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/chart_line.png -------------------------------------------------------------------------------- /misc/bugcheck/BugCheck/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /misc/website/websitev1/images/processhacker_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev1/images/processhacker_small.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/7za/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Build/7za/7za.exe -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Build/release.cmd -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/Bricks.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/Bricks.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/Keyboard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/Keyboard.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/PageEdit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/PageEdit.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/Process.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/Process.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/Terminal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/Terminal.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/ProcessHacker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/ProcessHacker.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/cog.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/disk.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/find.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/help.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/lock.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/page.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/tick.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/user.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/Folder.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/Folder.bmp -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/Leaf.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/Leaf.bmp -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/Thumbs.db -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/check.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/check.bmp -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/minus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/minus.bmp -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/plus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/plus.bmp -------------------------------------------------------------------------------- /1.x/trunk/NProcessHacker/x64/Release/NProcessHacker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/NProcessHacker/x64/Release/NProcessHacker.dll -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/application_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/application_delete.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/control_equalizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/control_equalizer.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/control_pause_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/control_pause_blue.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/control_play_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/control_play_blue.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/control_stop_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/control_stop_blue.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/table_relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/table_relationship.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/control_pause_blue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/control_pause_blue.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/control_pause_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/control_pause_blue.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/control_play_blue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/control_play_blue.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/control_play_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/control_play_blue.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/control_stop_blue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/control_stop_blue.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/control_stop_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/control_stop_blue.png -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/table_relationship.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/table_relationship.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/table_relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/table_relationship.png -------------------------------------------------------------------------------- /2.x/trunk/build/Installer/Icons/ProcessHackerLarge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/build/Installer/Icons/ProcessHackerLarge.bmp -------------------------------------------------------------------------------- /2.x/trunk/build/Installer/Icons/ProcessHackerSmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/build/Installer/Icons/ProcessHackerSmall.bmp -------------------------------------------------------------------------------- /2.x/trunk/build/Installer/Process_Hacker2_installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/build/Installer/Process_Hacker2_installer.iss -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/active_search.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/active_search.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/active_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/active_search.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/application.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/application.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/application.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/arrow_refresh.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/arrow_refresh.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/arrow_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/arrow_refresh.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/cross_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/cross_modern.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/find_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/find_modern.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/lightbulb_off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/lightbulb_off.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/lightbulb_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/lightbulb_off.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/find_handles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/find_handles.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/main_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/main_window.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/sysinfo_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/sysinfo_cpu.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/thread_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/thread_stack.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/find_handles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/find_handles.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/main_window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/main_window.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/sysinfo_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/sysinfo_cpu.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/thread_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/thread_stack.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/KProcessHacker/include/types.h: -------------------------------------------------------------------------------- 1 | #ifndef _TYPES_H 2 | #define _TYPES_H 3 | 4 | #include 5 | #include "version.h" 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/bricks.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/cross.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/delete.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/group.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/money.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/mouse.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/pencil.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/report.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/sflogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/sflogo.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/table.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/DVSplit.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/DVSplit.cur -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/loading_icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/loading_icon -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/uncheck.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/uncheck.bmp -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/unknown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/unknown.bmp -------------------------------------------------------------------------------- /1.x/trunk/ExtraTools/NtObjects/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /1.x/trunk/ExtraTools/NtProfiler/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/application_get.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/application_get.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/application_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/application_get.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/application_go.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/application_go.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/application_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/application_go.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/cog_edit_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/cog_edit_modern.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/inactive_search.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/inactive_search.bmp -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/inactive_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/inactive_search.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/readme.txt: -------------------------------------------------------------------------------- 1 | Before compiling these plugins you must have generated the 2 | Process Hacker SDK. You can do this by running makesdk.cmd in 3 | build/sdk. -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/sysinfo_memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/sysinfo_memory.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/sysinfo_trimmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/sysinfo_trimmed.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/sysinfo_memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/sysinfo_memory.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/sysinfo_trimmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/sysinfo_trimmed.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/ApplicationXP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/ApplicationXP.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/ProcessHacker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/ProcessHacker.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/ProcessHacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/ProcessHacker.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/Process_small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/Process_small.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/arrow_up.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/cog_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/cog_edit.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/door_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/door_out.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/folder_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/folder_go.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/lock_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/lock_edit.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/page_copy.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/page_edit.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/page_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/page_gear.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/page_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/page_save.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/pencil_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/pencil_go.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Build/Installer/Custom_Messages.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Build/Installer/Custom_Messages.iss -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Build/Installer/Icons/uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Build/Installer/Icons/uninstall.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Build/Installer/Languages/Greek.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Build/Installer/Languages/Greek.isl -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Components/TaskDialog/TaskDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Components/TaskDialog/TaskDialog.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/application_view_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/application_view_detail.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/control_equalizer_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/control_equalizer_blue.png -------------------------------------------------------------------------------- /2.x/trunk/KProcessHacker/bin-signed/amd64/kprocesshacker.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/KProcessHacker/bin-signed/amd64/kprocesshacker.sys -------------------------------------------------------------------------------- /2.x/trunk/KProcessHacker/bin-signed/i386/kprocesshacker.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/KProcessHacker/bin-signed/i386/kprocesshacker.sys -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/include/phapprev_in.h: -------------------------------------------------------------------------------- 1 | #ifndef PHAPPREV_H 2 | #define PHAPPREV_H 3 | 4 | #define PHAPP_VERSION_REVISION $WCREV$ 5 | 6 | #endif // PHAPPREV_H 7 | -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/control_equalizer_blue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/control_equalizer_blue.bmp -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/resources/control_equalizer_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/ProcessHacker/resources/control_equalizer_blue.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/SamplePlugin/bin/Release32/SamplePlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/SamplePlugin/bin/Release32/SamplePlugin.dll -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/application_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/application_modern.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/chart_line_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/chart_line_modern.png -------------------------------------------------------------------------------- /misc/website/websitev2/img/screenshots/sysinfo_trimmed_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev2/img/screenshots/sysinfo_trimmed_1.png -------------------------------------------------------------------------------- /misc/website/websitev3/img/screenshots/sysinfo_trimmed_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/misc/website/websitev3/img/screenshots/sysinfo_trimmed_1.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/KProcessHacker/amd64/kprocesshacker.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/KProcessHacker/amd64/kprocesshacker.sys -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/KProcessHacker/i386/kprocesshacker.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/KProcessHacker/i386/kprocesshacker.sys -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/application.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/arrow_right.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/chart_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/chart_curve.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/chart_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/chart_line.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/information.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/report_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/report_user.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/table_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/table_sort.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Resources/FolderClosed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/TreeViewAdv/Resources/FolderClosed.bmp -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Build/Installer/Icons/ProcessHacker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Build/Installer/Icons/ProcessHacker.ico -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Resources/application_form_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Resources/application_form_magnify.png -------------------------------------------------------------------------------- /2.x/trunk/phlib/include/templ.h: -------------------------------------------------------------------------------- 1 | #ifndef _PH_TEMPL_H 2 | #define _PH_TEMPL_H 3 | 4 | #define TEMPLATE_(f,T) f##_##T 5 | #define T___(f,T) TEMPLATE_(f,T) 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/arrow_refresh_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/arrow_refresh_modern.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/lightbulb_off_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/lightbulb_off_modern.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ExtraTools/NtObjects/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ExtraTools/NtProfiler/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ExtraTools/ProcessAnalyzer/fake_base.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ExtraTools/ProcessAnalyzer/fake_base.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/NProcessHacker/Release/NProcessHacker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/NProcessHacker/Release/NProcessHacker.dll -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Common/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/active_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/active_search.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/application_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/application_go.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/arrow_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/arrow_refresh.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/control_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/control_pause.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/control_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/control_play.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/control_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/control_stop.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/folder_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/folder_explore.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/lightbulb_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/lightbulb_off.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/ResourceManager.cs -------------------------------------------------------------------------------- /2.x/trunk/KProcessHacker/clean/sources: -------------------------------------------------------------------------------- 1 | !IF 0 2 | 3 | This builds a clean version of KProcessHacker suitable for driver signing. 4 | 5 | !ENDIF 6 | 7 | !include ..\sources.inc 8 | -------------------------------------------------------------------------------- /2.x/trunk/build/internal/DigiCertHighAssuranceCodeSigningCA-1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/build/internal/DigiCertHighAssuranceCodeSigningCA-1.crt -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/application_get_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/application_get_modern.png -------------------------------------------------------------------------------- /2.x/trunk/plugins/ToolStatus/resources/application_go_modern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/plugins/ToolStatus/resources/application_go_modern.png -------------------------------------------------------------------------------- /2.x/trunk/tools/GenerateZw/GenerateZw/bin/Release/GenerateZw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/tools/GenerateZw/GenerateZw/bin/Release/GenerateZw.exe -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Icons/ProcessHacker_small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Icons/ProcessHacker_small.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/VirusTotal-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/VirusTotal-logo.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/asterisk_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/asterisk_orange.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/inactive_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/inactive_search.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/page_white_text.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/Util.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Build/Installer/Icons/ProcessHackerLarge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Build/Installer/Icons/ProcessHackerLarge.bmp -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Build/Installer/Icons/ProcessHackerSmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Build/Installer/Icons/ProcessHackerSmall.bmp -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Build/Installer/Process_Hacker_installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Build/Installer/Process_Hacker_installer.iss -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/ICorPublish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/ICorPublish.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/NetAdapters/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | 1.2 2 | * Added adapter details window 3 | 4 | 1.1 5 | * Added native driver statistics support 6 | 7 | 1.0 8 | * Initial release 9 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/NProcessHacker/x64/Release/NProcessHacker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/NProcessHacker/x64/Release/NProcessHacker.dll -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/application_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/application_delete.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/control_equalizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/control_equalizer.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/control_pause_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/control_pause_blue.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/control_play_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/control_play_blue.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/control_stop_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/control_stop_blue.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/table_relationship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/table_relationship.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Common/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.bmp -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.snk -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Custom_Messages.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Custom_Messages.iss -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Icons/uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Icons/uninstall.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Languages/Greek.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Languages/Greek.isl -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Components/TaskDialog/TaskDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Components/TaskDialog/TaskDialog.cs -------------------------------------------------------------------------------- /2.x/trunk/lib/makelib.cmd: -------------------------------------------------------------------------------- 1 | lib /machine:x86 /def:lib32/%1.def /out:lib32/%1.lib 2 | "../tools/fixlib/bin/Release/fixlib.exe" lib32/%1.lib 3 | lib /machine:x64 /def:lib64/%1.def /out:lib64/%1.lib 4 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/application_form_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/application_form_magnify.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/application_view_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/application_view_detail.png -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Resources/control_equalizer_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Resources/control_equalizer_blue.png -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Components/Be.Windows.Forms.HexBox/IByteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Components/Be.Windows.Forms.HexBox/IByteProvider.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Components/TaskbarLib/JumpLists/JumpListManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/Components/TaskbarLib/JumpLists/JumpListManager.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/ICorPublishProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/ICorPublishProcess.cs -------------------------------------------------------------------------------- /2.x/trunk/tools/GenerateHeader/GenerateHeader/bin/Release/GenerateHeader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/2.x/trunk/tools/GenerateHeader/GenerateHeader/bin/Release/GenerateHeader.exe -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Icons/ProcessHacker.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Icons/ProcessHacker.ico -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/ResourceManager.cs -------------------------------------------------------------------------------- /2.x/trunk/build/sdk/makesdkwithdoc.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem Doxygen 4 | 5 | pushd ..\..\ 6 | if exist doc\doxygen rmdir /S /Q doc\doxygen 7 | doxygen 8 | popd 9 | 10 | call makesdk.cmd 11 | -------------------------------------------------------------------------------- /misc/bugcheck/KBugCheck/sources: -------------------------------------------------------------------------------- 1 | TARGETNAME=kbugcheck 2 | TARGETTYPE=DRIVER 3 | TARGETPATH=.\ 4 | 5 | INCLUDES=$(DDK_INC_PATH) 6 | LIBS=%BUILD%\lib 7 | 8 | SOURCES= \ 9 | kbugcheck.c \ 10 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/ICorPublish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/ICorPublish.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublish.cs -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Icons/ProcessHackerLarge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Icons/ProcessHackerLarge.bmp -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Icons/ProcessHackerSmall.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Icons/ProcessHackerSmall.bmp -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Process_Hacker_installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Build/Installer/Process_Hacker_installer.iss -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.bmp -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.cs -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Components/Be.Windows.Forms.HexBox/HexBox.snk -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/CorpubPublish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/CorpubPublish.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/CorPublishClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/CorPublishClass.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishEnum.cs -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Components/TaskbarLib/JumpLists/JumpListManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Components/TaskbarLib/JumpLists/JumpListManager.cs -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/ICorPublishProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/ICorPublishProcess.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishProcess.cs -------------------------------------------------------------------------------- /2.x/trunk/plugins/OnlineChecks/json-c/AUTHORS: -------------------------------------------------------------------------------- 1 | Michael Clark 2 | Jehiah Czebotar 3 | Eric Haszlakiewicz 4 | C. Watford (christopher.watford@gmail.com) 5 | 6 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Components/Be.Windows.Forms.HexBox/IByteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/Components/Be.Windows.Forms.HexBox/IByteProvider.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishAppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishAppDomain.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishProcessEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishProcessEnum.cs -------------------------------------------------------------------------------- /2.x/trunk/plugins/ExtendedNotifications/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | 1.3 2 | * Added Growl support 3 | 4 | 1.2 5 | * Added ability to log events to a file 6 | 7 | 1.1 8 | * Fixed memory leak 9 | 10 | 1.0 11 | * Initial release 12 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublish.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishAppDomainEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/trunk/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishAppDomainEnum.cs -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/KProcessHacker/auto.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | build -cZ 4 | if not %errorlevel%==0 goto end 5 | copy i386\kprocesshacker.sys ..\ProcessHacker\bin\Release\ 6 | copy i386\kprocesshacker.pdb ..\ProcessHacker\bin\Release\ 7 | :end -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/CorpubPublish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/CorpubPublish.cs -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/CorPublishClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/CorPublishClass.cs -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishEnum.cs -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishProcess.cs -------------------------------------------------------------------------------- /2.x/incomplete/readme.txt: -------------------------------------------------------------------------------- 1 | This directory contains incomplete pieces of code, mainly in the form of patches. 2 | I sometimes abandon ideas because of implementation problems that arise, and 3 | leave the patches here for future usage. 4 | 5 | wj32. 6 | -------------------------------------------------------------------------------- /2.x/trunk/tools/GenerateHeader/GenerateHeader/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishAppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishAppDomain.cs -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishProcessEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishProcessEnum.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Build/testsign.cmd: -------------------------------------------------------------------------------- 1 | signtool sign /a /d "Process Hacker" ..\bin\Release\ProcessHacker.exe 2 | signtool sign /a /d "Process Hacker Assistant" ..\bin\Release\Assistant.exe 3 | signtool sign /a /d "KProcessHacker" ..\bin\Release\kprocesshacker.sys -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishAppDomainEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/processhacker/HEAD/1.x/branches/ph-plugins/ProcessHacker/SharpDevelop/Wrappers/CorPub/Autogenerated/ICorPublishAppDomainEnum.cs -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Api/LsaDefinitions.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace ProcessHacker.Native.Api 3 | { 4 | public static partial class Win32 5 | { 6 | public const string Msv1_0_PackageName = "MICROSOFT_AUTHENTICATION_PACKAGE_V1_0"; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/Build/testsign.cmd: -------------------------------------------------------------------------------- 1 | signtool sign /a /d "Process Hacker" ..\bin\Release\ProcessHacker.exe 2 | signtool sign /a /d "Process Hacker Assistant" ..\bin\Release\Assistant.exe 3 | signtool sign /a /d "KProcessHacker" ..\bin\Release\kprocesshacker.sys -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Common/ExtensionAttribute.cs: -------------------------------------------------------------------------------- 1 | namespace System.Runtime.CompilerServices 2 | { 3 | [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)] 4 | public class ExtensionAttribute : Attribute 5 | { } 6 | } 7 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Common/IResettable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Common 6 | { 7 | public interface IResettable 8 | { 9 | void ResetObject(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Common/IResettable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Common 6 | { 7 | public interface IResettable 8 | { 9 | void ResetObject(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/EventPairAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum EventPairAccess : uint 7 | { 8 | All = StandardRights.Required | StandardRights.Synchronize 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /2.x/trunk/tests/phlib-test/tests.h: -------------------------------------------------------------------------------- 1 | #ifndef TESTS_H 2 | #define TESTS_H 3 | 4 | #include 5 | 6 | VOID Test_basesup( 7 | VOID 8 | ); 9 | 10 | VOID Test_format( 11 | VOID 12 | ); 13 | 14 | VOID Test_support( 15 | VOID 16 | ); 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/FltPortAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum FltPortAccess : uint 7 | { 8 | Connect = 0x1, 9 | All = Connect | StandardRights.All 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Common/Linq/IGrouping.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace System.Linq 6 | { 7 | public interface IGrouping : IEnumerable 8 | { 9 | TKey Key { get; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/ProfileAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum ProfileAccess : uint 7 | { 8 | Control = 0x1, 9 | All = StandardRights.Required | Control 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/TypeObjectAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum TypeObjectAccess : uint 7 | { 8 | Create = 0x1, 9 | All = StandardRights.Required | Create 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/EventPairAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum EventPairAccess : uint 7 | { 8 | All = StandardRights.Required | StandardRights.Synchronize 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/FltPortAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum FltPortAccess : uint 7 | { 8 | Connect = 0x1, 9 | All = Connect | StandardRights.All 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/ProfileAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum ProfileAccess : uint 7 | { 8 | Control = 0x1, 9 | All = StandardRights.Required | Control 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Threading/WorkItemStatus.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Threading 6 | { 7 | public enum WorkItemStatus 8 | { 9 | Completed, 10 | Queued, 11 | Executing, 12 | Aborted 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /misc/bugcheck/BugCheck/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/ObjectTypeAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum ObjectTypeAccess : uint 7 | { 8 | Create = 0x1, 9 | All = StandardRights.Required | Create 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /1.x/trunk/ExtraTools/NtObjects/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/UI/Actions/ElevationLevel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.UI.Actions 6 | { 7 | public enum ElevationLevel 8 | { 9 | Never = 0, 10 | Prompt, 11 | Elevate 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/Assistant/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /1.x/trunk/ExtraTools/NtProfiler/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /1.x/trunk/ExtraTools/SysCallHacker/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Threading/WorkItemStatus.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Threading 6 | { 7 | public enum WorkItemStatus 8 | { 9 | Completed, 10 | Queued, 11 | Executing, 12 | Aborted 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /1.x/trunk/ExtraTools/ProcessAnalyzer/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ExtraTools/NtObjects/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ExtraTools/NtProfiler/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/UI/Actions/ElevationLevel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.UI.Actions 6 | { 7 | public enum ElevationLevel 8 | { 9 | Never = 0, 10 | Prompt, 11 | Elevate 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/KeyedEventAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum KeyedEventAccess : uint 7 | { 8 | Wait = 0x1, 9 | Wake = 0x2, 10 | All = StandardRights.Required | Wait | Wake 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ExtraTools/ProcessAnalyzer/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ExtraTools/SysCallHacker/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /2.x/trunk/tests/phlib-test/main.c: -------------------------------------------------------------------------------- 1 | #include "tests.h" 2 | 3 | int __cdecl main(int argc, char *argv[]) 4 | { 5 | NTSTATUS status; 6 | 7 | status = PhInitializePhLib(); 8 | assert(NT_SUCCESS(status)); 9 | 10 | Test_basesup(); 11 | Test_format(); 12 | Test_support(); 13 | 14 | return 0; 15 | } 16 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/PortAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum PortAccess : uint 7 | { 8 | Connect = 0x1, 9 | All = StandardRights.Required | StandardRights.Synchronize | 10 | Connect 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/KeyedEventAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum KeyedEventAccess : uint 7 | { 8 | Wait = 0x1, 9 | Wake = 0x2, 10 | All = StandardRights.Required | Wait | Wake 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Tree/IToolTipProvider.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using Aga.Controls.Tree.NodeControls; 5 | 6 | namespace Aga.Controls.Tree 7 | { 8 | public interface IToolTipProvider 9 | { 10 | string GetToolTip(TreeNodeAdv node, NodeControl nodeControl); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/MutantAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum MutantAccess : uint 7 | { 8 | QueryState = 0x1, 9 | All = StandardRights.Required | StandardRights.Synchronize | 10 | QueryState 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/PortAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum PortAccess : uint 7 | { 8 | Connect = 0x1, 9 | All = StandardRights.Required | StandardRights.Synchronize | 10 | Connect 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Tree/IToolTipProvider.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using Aga.Controls.Tree.NodeControls; 5 | 6 | namespace Aga.Controls.Tree 7 | { 8 | public interface IToolTipProvider 9 | { 10 | string GetToolTip(TreeNodeAdv node, NodeControl nodeControl); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/SsLogging/SsData.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Native.SsLogging 6 | { 7 | public class SsData 8 | { 9 | public int Index 10 | { 11 | get; 12 | internal set; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/MutantAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum MutantAccess : uint 7 | { 8 | QueryState = 0x1, 9 | All = StandardRights.Required | StandardRights.Synchronize | 10 | QueryState 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/SymbolicLinkAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Native.Security 6 | { 7 | [Flags] 8 | public enum SymbolicLinkAccess : uint 9 | { 10 | Query = 0x1, 11 | All = StandardRights.Required | Query 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Base/PluginSettingsControlBase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows.Forms; 5 | 6 | namespace ProcessHacker.Base 7 | { 8 | public class PluginSettingsControlBase : UserControl 9 | { 10 | public virtual void OnSettingsSaved() { } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/SsLogging/SsData.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Native.SsLogging 6 | { 7 | public class SsData 8 | { 9 | public int Index 10 | { 11 | get; 12 | internal set; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /2.x/trunk/KProcessHacker/sign.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | set PHBASE=.. 3 | set SIGN_TIMESTAMP=1 4 | copy bin\i386\kprocesshacker.sys bin-signed\i386\kprocesshacker.sys 5 | copy bin\amd64\kprocesshacker.sys bin-signed\amd64\kprocesshacker.sys 6 | call ..\build\internal\sign.cmd bin-signed\i386\kprocesshacker.sys kmcs 7 | call ..\build\internal\sign.cmd bin-signed\amd64\kprocesshacker.sys kmcs 8 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/SymbolicLinkAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Native.Security 6 | { 7 | [Flags] 8 | public enum SymbolicLinkAccess : uint 9 | { 10 | Query = 0x1, 11 | All = StandardRights.Required | Query 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/EventAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum EventAccess : uint 7 | { 8 | QueryState = 0x1, 9 | ModifyState = 0x2, 10 | All = StandardRights.Required | StandardRights.Synchronize | 11 | QueryState | ModifyState 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/TimerAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum TimerAccess : uint 7 | { 8 | QueryState = 0x1, 9 | ModifyState = 0x2, 10 | All = StandardRights.Required | StandardRights.Synchronize | 11 | QueryState | ModifyState 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/SemaphoreAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum SemaphoreAccess : uint 7 | { 8 | QueryState = 0x1, 9 | ModifyState = 0x2, 10 | All = StandardRights.Required | StandardRights.Synchronize | 11 | QueryState | ModifyState 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Common/Linq/ILookup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | 5 | namespace System.Linq 6 | { 7 | public interface ILookup : IEnumerable> 8 | { 9 | int Count { get; } 10 | bool Contains (TKey key); 11 | IEnumerable this [TKey key] { get; } 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Common/Settings/SettingsStore.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Common.Settings 6 | { 7 | public abstract class SettingsStore 8 | { 9 | public abstract string GetValue(string name); 10 | public abstract void SetValue(string name, string value); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/EventAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum EventAccess : uint 7 | { 8 | QueryState = 0x1, 9 | ModifyState = 0x2, 10 | All = StandardRights.Required | StandardRights.Synchronize | 11 | QueryState | ModifyState 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/TimerAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum TimerAccess : uint 7 | { 8 | QueryState = 0x1, 9 | ModifyState = 0x2, 10 | All = StandardRights.Required | StandardRights.Synchronize | 11 | QueryState | ModifyState 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/SemaphoreAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum SemaphoreAccess : uint 7 | { 8 | QueryState = 0x1, 9 | ModifyState = 0x2, 10 | All = StandardRights.Required | StandardRights.Synchronize | 11 | QueryState | ModifyState 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /misc/website/websitev2/minify.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | rem install node.js and then run: 3 | rem npm install -g clean-css 4 | rem npm install -g uglify-js 5 | 6 | pushd %~dp0 7 | 8 | echo minifying and combining css files... 9 | cmd /c cleancss --s0 --compatibility ie8 css\normalize.css css\stylesheet.css -o css\pack.css 10 | cmd /c uglifyjs js\moment.js js\feed.js --compress --mangle -o js\pack.js 11 | 12 | popd 13 | -------------------------------------------------------------------------------- /2.x/trunk/phlib/circbuf.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | #undef T 5 | #define T ULONG 6 | #include "circbuf_i.h" 7 | 8 | #undef T 9 | #define T ULONG64 10 | #include "circbuf_i.h" 11 | 12 | #undef T 13 | #define T PVOID 14 | #include "circbuf_i.h" 15 | 16 | #undef T 17 | #define T SIZE_T 18 | #include "circbuf_i.h" 19 | 20 | #undef T 21 | #define T FLOAT 22 | #include "circbuf_i.h" 23 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/IoCompletionAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Native.Security 6 | { 7 | [Flags] 8 | public enum IoCompletionAccess : uint 9 | { 10 | QueryState = 0x1, 11 | ModifyState = 0x2, 12 | All = StandardRights.Required | StandardRights.Synchronize | 0x3 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/WindowExplorer/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | 1.5 2 | * Fixed window list not displaying Modern UI windows 3 | 4 | 1.4 5 | * Fixed hook support for low integrity processes 6 | 7 | 1.3 8 | * Fixed hook bugs 9 | 10 | 1.2 11 | * Added more window properties 12 | 13 | 1.1 14 | * Added Always on Top and Opacity 15 | * Renamed Show/Hide and Enable/Disable to Visible and Enabled 16 | 17 | 1.0 18 | * Initial release -------------------------------------------------------------------------------- /2.x/trunk/ProcessHacker/sdk/phdk.h: -------------------------------------------------------------------------------- 1 | #ifndef _PH_PHDK_H 2 | #define _PH_PHDK_H 3 | 4 | #pragma once 5 | 6 | #define PHLIB_IMPORT 7 | #define PHAPPAPI __declspec(dllimport) 8 | 9 | #include "phgui.h" 10 | #include "phnet.h" 11 | #include "circbuf.h" 12 | #include "dltmgr.h" 13 | #include "treenew.h" 14 | #include "graph.h" 15 | #include "emenu.h" 16 | #include "cpysave.h" 17 | 18 | #include "phapppub.h" 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/IoCompletionAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Native.Security 6 | { 7 | [Flags] 8 | public enum IoCompletionAccess : uint 9 | { 10 | QueryState = 0x1, 11 | ModifyState = 0x2, 12 | All = StandardRights.Required | StandardRights.Synchronize | 0x3 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.x/trunk/build/zw_options.txt: -------------------------------------------------------------------------------- 1 | base=..\phlib\include 2 | in=ntbasic.h;ntcm.h;ntdbg.h;ntexapi.h;ntgdi.h;ntioapi.h;ntkeapi.h;ntldr.h;ntlpcapi.h;ntlsa.h;ntmisc.h;ntmmapi.h;ntnls.h;ntobapi.h;ntpebteb.h;ntpfapi.h;ntpnpapi.h;ntpoapi.h;ntpsapi.h;ntregapi.h;ntrtl.h;ntsam.h;ntseapi.h;nttmapi.h;nttp.h;ntwow64.h;ntxcapi.h 3 | out=ntzwapi.h 4 | header=#ifndef _NTZWAPI_H\r\n#define _NTZWAPI_H\r\n\r\n// This file was automatically generated. Do not edit.\r\n\r\n 5 | footer=#endif\r\n -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/DirectoryAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum DirectoryAccess : uint 7 | { 8 | Query = 0x1, 9 | Traverse = 0x2, 10 | CreateObject = 0x4, 11 | CreateSubdirectory = 0x8, 12 | All = StandardRights.Required | Query | Traverse | 13 | CreateObject | CreateSubdirectory 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /misc/bugcheck/BugCheck/BugCheckCode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace BugCheck 6 | { 7 | public struct BugCheckCode 8 | { 9 | public uint Code; 10 | public string Name; 11 | public string Description; 12 | public string Param1; 13 | public string Param2; 14 | public string Param3; 15 | public string Param4; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Tree/NodeControls/NodeEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree.NodeControls 6 | { 7 | public class NodeEventArgs : EventArgs 8 | { 9 | private TreeNodeAdv _node; 10 | public TreeNodeAdv Node 11 | { 12 | get { return _node; } 13 | } 14 | 15 | public NodeEventArgs(TreeNodeAdv node) 16 | { 17 | _node = node; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Tree/TreeColumnEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree 6 | { 7 | public class TreeColumnEventArgs: EventArgs 8 | { 9 | private TreeColumn _column; 10 | public TreeColumn Column 11 | { 12 | get { return _column; } 13 | } 14 | 15 | public TreeColumnEventArgs(TreeColumn column) 16 | { 17 | _column = column; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Tree/TreeViewAdvEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree 6 | { 7 | public class TreeViewAdvEventArgs : EventArgs 8 | { 9 | private TreeNodeAdv _node; 10 | 11 | public TreeNodeAdv Node 12 | { 13 | get { return _node; } 14 | } 15 | 16 | public TreeViewAdvEventArgs(TreeNodeAdv node) 17 | { 18 | _node = node; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/DirectoryAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum DirectoryAccess : uint 7 | { 8 | Query = 0x1, 9 | Traverse = 0x2, 10 | CreateObject = 0x4, 11 | CreateSubdirectory = 0x8, 12 | All = StandardRights.Required | Query | Traverse | 13 | CreateObject | CreateSubdirectory 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/ILoadedModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using ProcessHacker.Native.Api; 5 | 6 | namespace ProcessHacker.Native 7 | { 8 | public interface ILoadedModule 9 | { 10 | IntPtr BaseAddress { get; } 11 | int Size { get; } 12 | LdrpDataTableEntryFlags Flags { get; } 13 | string BaseName { get; } 14 | string FileName { get; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/JobObjectAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum JobObjectAccess : uint 7 | { 8 | AssignProcess = 0x0001, 9 | SetAttributes = 0x0002, 10 | Query = 0x0004, 11 | Terminate = 0x0008, 12 | SetSecurityAttributes = 0x0010, 13 | All = StandardRights.Required | StandardRights.Synchronize | 0x1f 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /2.x/trunk/tools/fiin/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by fiin.rc 4 | 5 | // Next default values for new objects 6 | // 7 | #ifdef APSTUDIO_INVOKED 8 | #ifndef APSTUDIO_READONLY_SYMBOLS 9 | #define _APS_NEXT_RESOURCE_VALUE 101 10 | #define _APS_NEXT_COMMAND_VALUE 40001 11 | #define _APS_NEXT_CONTROL_VALUE 1001 12 | #define _APS_NEXT_SYMED_VALUE 101 13 | #endif 14 | #endif 15 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Tree/NodeControls/NodeEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree.NodeControls 6 | { 7 | public class NodeEventArgs : EventArgs 8 | { 9 | private TreeNodeAdv _node; 10 | public TreeNodeAdv Node 11 | { 12 | get { return _node; } 13 | } 14 | 15 | public NodeEventArgs(TreeNodeAdv node) 16 | { 17 | _node = node; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Tree/TreeColumnEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree 6 | { 7 | public class TreeColumnEventArgs: EventArgs 8 | { 9 | private TreeColumn _column; 10 | public TreeColumn Column 11 | { 12 | get { return _column; } 13 | } 14 | 15 | public TreeColumnEventArgs(TreeColumn column) 16 | { 17 | _column = column; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Tree/TreeViewAdvEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree 6 | { 7 | public class TreeViewAdvEventArgs : EventArgs 8 | { 9 | private TreeNodeAdv _node; 10 | 11 | public TreeNodeAdv Node 12 | { 13 | get { return _node; } 14 | } 15 | 16 | public TreeViewAdvEventArgs(TreeNodeAdv node) 17 | { 18 | _node = node; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /2.x/trunk/build/sdk/phapppub_options.txt: -------------------------------------------------------------------------------- 1 | base=..\..\ProcessHacker\include 2 | modes=phapppub 3 | in=phapp.h;providers.h;uimodels.h;colmgr.h;extmgr.h;notifico.h;settings.h;phplug.h;procprpp.h;phsvccl.h;sysinfo.h;procgrp.h;miniinfo.h 4 | out=..\sdk\phapppub.h 5 | header=#ifndef _PH_PHAPPPUB_H\r\n#define _PH_PHAPPPUB_H\r\n\r\n// This file was automatically generated. Do not edit.\r\n\r\n#ifdef __cplusplus\r\nextern "C" {\r\n#endif\r\n 6 | footer=\r\n#ifdef __cplusplus\r\n}\r\n#endif\r\n\r\n#endif\r\n -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Tree/ColumnCollection.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Collections.ObjectModel; 5 | 6 | namespace Aga.Controls.Tree 7 | { 8 | /*internal class ColumnCollection: Collection 9 | { 10 | public int TotalWidth 11 | { 12 | get 13 | { 14 | int res = 0; 15 | foreach (Column c in Items) 16 | res += c.Width; 17 | return res; 18 | } 19 | } 20 | }*/ 21 | } 22 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/ILoadedModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using ProcessHacker.Native.Api; 5 | 6 | namespace ProcessHacker.Native 7 | { 8 | public interface ILoadedModule 9 | { 10 | IntPtr BaseAddress { get; } 11 | int Size { get; } 12 | LdrpDataTableEntryFlags Flags { get; } 13 | string BaseName { get; } 14 | string FileName { get; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/JobObjectAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum JobObjectAccess : uint 7 | { 8 | AssignProcess = 0x0001, 9 | SetAttributes = 0x0002, 10 | Query = 0x0004, 11 | Terminate = 0x0008, 12 | SetSecurityAttributes = 0x0010, 13 | All = StandardRights.Required | StandardRights.Synchronize | 0x1f 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/UserNotes/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | 1.5 2 | * Added individual process highlighting support 3 | 4 | 1.4 5 | * Added tray icon mini info window support 6 | 7 | 1.3 8 | * Added ability to save I/O priority 9 | 10 | 1.2 11 | * Fixed bug where process priorities were not actually saved 12 | 13 | 1.1 14 | * Added ability to save process priority 15 | * Added "Only for processes with the same command line" option for process comments 16 | 17 | 1.0 18 | * Initial release 19 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Tree/ColumnCollection.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Collections.ObjectModel; 5 | 6 | namespace Aga.Controls.Tree 7 | { 8 | /*internal class ColumnCollection: Collection 9 | { 10 | public int TotalWidth 11 | { 12 | get 13 | { 14 | int res = 0; 15 | foreach (Column c in Items) 16 | res += c.Width; 17 | return res; 18 | } 19 | } 20 | }*/ 21 | } 22 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/OnlineChecks/json-c/json_c_version.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2012 Eric Haszlakiewicz 3 | * 4 | * This library is free software; you can redistribute it and/or modify 5 | * it under the terms of the MIT license. See COPYING for details. 6 | */ 7 | #include "config.h" 8 | 9 | #include "json_c_version.h" 10 | 11 | const char *json_c_version(void) 12 | { 13 | return JSON_C_VERSION; 14 | } 15 | 16 | int json_c_version_num(void) 17 | { 18 | return JSON_C_VERSION_NUM; 19 | } 20 | 21 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Tree/Input/ColumnState.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree 6 | { 7 | internal abstract class ColumnState : InputState 8 | { 9 | private TreeColumn _column; 10 | public TreeColumn Column 11 | { 12 | get { return _column; } 13 | } 14 | 15 | public ColumnState(TreeViewAdv tree, TreeColumn column) 16 | : base(tree) 17 | { 18 | _column = column; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/SsLogging/SsSimple.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Native.SsLogging 6 | { 7 | public sealed class SsSimple : SsData 8 | { 9 | public object Argument 10 | { 11 | get; 12 | internal set; 13 | } 14 | 15 | public Type Type 16 | { 17 | get; 18 | internal set; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/DebugObjectAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum DebugObjectAccess : uint 7 | { 8 | ReadEvent = 0x1, 9 | ProcessAssign = 0x2, 10 | SetInformation = 0x4, 11 | QueryInformation = 0x8, 12 | All = StandardRights.Required | StandardRights.Synchronize | 13 | ReadEvent | ProcessAssign | SetInformation | QueryInformation 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/SectionAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum SectionAccess : uint 7 | { 8 | Query = 0x0001, 9 | MapWrite = 0x0002, 10 | MapRead = 0x0004, 11 | MapExecute = 0x0008, 12 | ExtendSize = 0x0010, 13 | MapExecuteExplicit = 0x0020, 14 | All = StandardRights.Required | Query | MapWrite | MapRead | MapExecute | ExtendSize 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /2.x/trunk/phlib/include/circbuf.h: -------------------------------------------------------------------------------- 1 | #ifndef _PH_CIRCBUF_H 2 | #define _PH_CIRCBUF_H 3 | 4 | #define PH_CIRCULAR_BUFFER_POWER_OF_TWO_SIZE 5 | 6 | #undef T 7 | #define T ULONG 8 | #include "circbuf_h.h" 9 | 10 | #undef T 11 | #define T ULONG64 12 | #include "circbuf_h.h" 13 | 14 | #undef T 15 | #define T PVOID 16 | #include "circbuf_h.h" 17 | 18 | #undef T 19 | #define T SIZE_T 20 | #include "circbuf_h.h" 21 | 22 | #undef T 23 | #define T FLOAT 24 | #include "circbuf_h.h" 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/SsLogging/SsSimple.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Native.SsLogging 6 | { 7 | public sealed class SsSimple : SsData 8 | { 9 | public object Argument 10 | { 11 | get; 12 | internal set; 13 | } 14 | 15 | public Type Type 16 | { 17 | get; 18 | internal set; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Tree/Input/ColumnState.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree 6 | { 7 | internal abstract class ColumnState : InputState 8 | { 9 | private TreeColumn _column; 10 | public TreeColumn Column 11 | { 12 | get { return _column; } 13 | } 14 | 15 | public ColumnState(TreeViewAdv tree, TreeColumn column) 16 | : base(tree) 17 | { 18 | _column = column; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/NetworkTools/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | 1.6 2 | * Added PathPing support 3 | 4 | 1.5 5 | * Improved ping graph scaling 6 | 7 | 1.4 8 | * Fixed whois scrolling issue 9 | * Fixed ping threading issues 10 | * Fixed various memory leaks 11 | 12 | 1.3 13 | * Added plugin options for ping/tracert/whois 14 | * Added native pint/tracert/whois support 15 | * Updated UI 16 | 17 | 1.2 18 | * Fixed encoding bug 19 | 20 | 1.1 21 | * Fixed handle leak 22 | 23 | 1.0 24 | * Initial release 25 | -------------------------------------------------------------------------------- /2.x/trunk/build/internal/sign.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if "%1" == "" goto :notset 4 | 5 | set additional= 6 | if "%2" == "kmcs" set additional=/ac "%PHBASE%\build\internal\DigiCert High Assurance EV Root CA.crt" 7 | 8 | set timestamp= 9 | if "%SIGN_TIMESTAMP%" == "1" set timestamp=/t http://timestamp.digicert.com 10 | 11 | signtool sign %timestamp% /i "DigiCert High Assurance Code Signing CA-1" %additional% %1 12 | 13 | goto :end 14 | 15 | :notset 16 | echo Parameters not set. 17 | pause 18 | 19 | :end 20 | -------------------------------------------------------------------------------- /2.x/trunk/phlib/include/md5.h: -------------------------------------------------------------------------------- 1 | #ifndef _MD5_H 2 | #define _MD5_H 3 | 4 | typedef struct 5 | { 6 | ULONG i[2]; 7 | ULONG buf[4]; 8 | UCHAR in[64]; 9 | UCHAR digest[16]; 10 | } MD5_CTX; 11 | 12 | VOID MD5Init( 13 | _Out_ MD5_CTX *Context 14 | ); 15 | 16 | VOID MD5Update( 17 | _Inout_ MD5_CTX *Context, 18 | _In_reads_bytes_(Length) UCHAR *Input, 19 | _In_ ULONG Length 20 | ); 21 | 22 | VOID MD5Final( 23 | _Inout_ MD5_CTX *Context 24 | ); 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/DebugObjectAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum DebugObjectAccess : uint 7 | { 8 | ReadEvent = 0x1, 9 | ProcessAssign = 0x2, 10 | SetInformation = 0x4, 11 | QueryInformation = 0x8, 12 | All = StandardRights.Required | StandardRights.Synchronize | 13 | ReadEvent | ProcessAssign | SetInformation | QueryInformation 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/SectionAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum SectionAccess : uint 7 | { 8 | Query = 0x0001, 9 | MapWrite = 0x0002, 10 | MapRead = 0x0004, 11 | MapExecute = 0x0008, 12 | ExtendSize = 0x0010, 13 | MapExecuteExplicit = 0x0020, 14 | All = StandardRights.Required | Query | MapWrite | MapRead | MapExecute | ExtendSize 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /1.x/trunk/NProcessHacker/NProcessHackerHook/nphhook.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../kphhook.h" 3 | 4 | BOOL WINAPI DllMain( 5 | HINSTANCE hinstDLL, 6 | DWORD fdwReason, 7 | LPVOID lpvReserved 8 | ) 9 | { 10 | switch (fdwReason) 11 | { 12 | case DLL_PROCESS_ATTACH: 13 | KphHookInit(); 14 | break; 15 | case DLL_PROCESS_DETACH: 16 | KphHookDeinit(); 17 | break; 18 | default: 19 | break; 20 | } 21 | 22 | return TRUE; 23 | } 24 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/LsaSecretAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum LsaSecretAccess : uint 7 | { 8 | SetValue = 0x00000001, 9 | QueryValue = 0x00000002, 10 | All = StandardRights.Required | SetValue | QueryValue, 11 | GenericRead = StandardRights.Read | QueryValue, 12 | GenericWrite = StandardRights.Write | SetValue, 13 | GenericExecute = StandardRights.Execute 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Tree/NodeControls/NodeControlValueEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree.NodeControls 6 | { 7 | public class NodeControlValueEventArgs : NodeEventArgs 8 | { 9 | private object _value; 10 | public object Value 11 | { 12 | get { return _value; } 13 | set { _value = value; } 14 | } 15 | 16 | public NodeControlValueEventArgs(TreeNodeAdv node) 17 | :base(node) 18 | { 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Tree/TreeViewAdvCancelEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree 6 | { 7 | public class TreeViewAdvCancelEventArgs : TreeViewAdvEventArgs 8 | { 9 | private bool _cancel; 10 | 11 | public bool Cancel 12 | { 13 | get { return _cancel; } 14 | set { _cancel = value; } 15 | } 16 | 17 | public TreeViewAdvCancelEventArgs(TreeNodeAdv node) 18 | : base(node) 19 | { 20 | } 21 | 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Tree/DropPosition.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree 6 | { 7 | public struct DropPosition 8 | { 9 | private TreeNodeAdv _node; 10 | public TreeNodeAdv Node 11 | { 12 | get { return _node; } 13 | set { _node = value; } 14 | } 15 | 16 | private NodePosition _position; 17 | public NodePosition Position 18 | { 19 | get { return _position; } 20 | set { _position = value; } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/NProcessHacker/NProcessHackerHook/nphhook.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../kphhook.h" 3 | 4 | BOOL WINAPI DllMain( 5 | HINSTANCE hinstDLL, 6 | DWORD fdwReason, 7 | LPVOID lpvReserved 8 | ) 9 | { 10 | switch (fdwReason) 11 | { 12 | case DLL_PROCESS_ATTACH: 13 | KphHookInit(); 14 | break; 15 | case DLL_PROCESS_DETACH: 16 | KphHookDeinit(); 17 | break; 18 | default: 19 | break; 20 | } 21 | 22 | return TRUE; 23 | } 24 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Tree/TreeViewAdvCancelEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree 6 | { 7 | public class TreeViewAdvCancelEventArgs : TreeViewAdvEventArgs 8 | { 9 | private bool _cancel; 10 | 11 | public bool Cancel 12 | { 13 | get { return _cancel; } 14 | set { _cancel = value; } 15 | } 16 | 17 | public TreeViewAdvCancelEventArgs(TreeNodeAdv node) 18 | : base(node) 19 | { 20 | } 21 | 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/ISecurable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using ProcessHacker.Native.Api; 5 | using ProcessHacker.Native.Security.AccessControl; 6 | 7 | namespace ProcessHacker.Native.Security 8 | { 9 | public interface ISecurable 10 | { 11 | SecurityDescriptor GetSecurity(SecurityInformation securityInformation); 12 | void SetSecurity(SecurityInformation securityInformation, SecurityDescriptor securityDescriptor); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/OnlineChecks/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | 1.7 2 | * Fixed virusscan.jotti.org uploader 3 | 4 | 1.6 5 | * Updated VirusTotal executable limit to 128 MB 6 | 7 | 1.5 8 | * Added CIMA hash checking 9 | * Added file analyzed prompt 10 | 11 | 1.4 12 | * Added upload progress 13 | * Updated UI 14 | 15 | 1.3 16 | * Updated VirusTotal uploader and added hash checking 17 | 18 | 1.2 19 | * Added Comodo Instant Malware Analysis 20 | 21 | 1.1 22 | * Updated VirusTotal uploader 23 | 24 | 1.0 25 | * Initial release 26 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/LsaSecretAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum LsaSecretAccess : uint 7 | { 8 | SetValue = 0x00000001, 9 | QueryValue = 0x00000002, 10 | All = StandardRights.Required | SetValue | QueryValue, 11 | GenericRead = StandardRights.Read | QueryValue, 12 | GenericWrite = StandardRights.Write | SetValue, 13 | GenericExecute = StandardRights.Execute 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Tree/NodeControls/NodeControlValueEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree.NodeControls 6 | { 7 | public class NodeControlValueEventArgs : NodeEventArgs 8 | { 9 | private object _value; 10 | public object Value 11 | { 12 | get { return _value; } 13 | set { _value = value; } 14 | } 15 | 16 | public NodeControlValueEventArgs(TreeNodeAdv node) 17 | :base(node) 18 | { 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /2.x/trunk/KProcessHacker/sources.inc: -------------------------------------------------------------------------------- 1 | TARGETTYPE=DRIVER 2 | 3 | !IF !DEFINED(TARGETNAME) 4 | TARGETNAME=kprocesshacker 5 | !ENDIF 6 | 7 | !IF !DEFINED(TARGETPATH) 8 | TARGETPATH=..\bin 9 | !ENDIF 10 | 11 | INCLUDES=$(DDK_INC_PATH);..\include;..\..\phlib\include 12 | LIBS=%BUILD%\lib 13 | 14 | SOURCES= \ 15 | ..\main.c \ 16 | ..\devctrl.c \ 17 | ..\dyndata.c \ 18 | ..\dynimp.c \ 19 | ..\object.c \ 20 | ..\process.c \ 21 | ..\qrydrv.c \ 22 | ..\thread.c \ 23 | ..\vm.c \ 24 | ..\resource.rc 25 | -------------------------------------------------------------------------------- /2.x/trunk/phlib/include/colorbox.h: -------------------------------------------------------------------------------- 1 | #ifndef _PH_COLORBOX_H 2 | #define _PH_COLORBOX_H 3 | 4 | #define PH_COLORBOX_CLASSNAME L"PhColorBox" 5 | 6 | BOOLEAN PhColorBoxInitialization( 7 | VOID 8 | ); 9 | 10 | #define CBCM_SETCOLOR (WM_APP + 1501) 11 | #define CBCM_GETCOLOR (WM_APP + 1502) 12 | 13 | #define ColorBox_SetColor(hWnd, Color) \ 14 | SendMessage((hWnd), CBCM_SETCOLOR, (WPARAM)(Color), 0) 15 | 16 | #define ColorBox_GetColor(hWnd) \ 17 | ((COLORREF)SendMessage((hWnd), CBCM_GETCOLOR, 0, 0)) 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Common/Linq/IOrderedEnumerable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace System 6 | { 7 | // We'll stick with Microsoft's definition of IOrderedEnumerable to minimize confusion. 8 | 9 | public interface IOrderedEnumerable : IEnumerable 10 | { 11 | IOrderedEnumerable CreateOrderedEnumerable ( 12 | Func keySelector, 13 | IComparer comparer, 14 | bool descending); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/ISecurable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using ProcessHacker.Native.Api; 5 | using ProcessHacker.Native.Security.AccessControl; 6 | 7 | namespace ProcessHacker.Native.Security 8 | { 9 | public interface ISecurable 10 | { 11 | SecurityDescriptor GetSecurity(SecurityInformation securityInformation); 12 | void SetSecurity(SecurityInformation securityInformation, SecurityDescriptor securityDescriptor); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/TreeViewAdv/Tree/DropPosition.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace Aga.Controls.Tree 6 | { 7 | public struct DropPosition 8 | { 9 | private TreeNodeAdv _node; 10 | public TreeNodeAdv Node 11 | { 12 | get { return _node; } 13 | set { _node = value; } 14 | } 15 | 16 | private NodePosition _position; 17 | public NodePosition Position 18 | { 19 | get { return _position; } 20 | set { _position = value; } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/Providers/IProvider.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using ProcessHacker.Common; 5 | 6 | namespace ProcessHacker 7 | { 8 | public interface IProvider 9 | { 10 | bool Boosting { get; set; } 11 | bool Busy { get; } 12 | bool Enabled { get; set; } 13 | LinkedListEntry ListEntry { get; } 14 | ProviderThread Owner { get; set; } 15 | bool Unregistering { get; set; } 16 | void Run(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /2.x/trunk/lib/readme.txt: -------------------------------------------------------------------------------- 1 | Microsoft's ntdll.lib files are supplied with the DDK, 2 | but are not redistributable. 3 | 4 | The alternative used in Process Hacker is to have a 5 | ntdll.def file and create ntdll.lib from that using 6 | the LIB tool. The x86 ntdll.lib must be fixed using 7 | fixlib, which converts the exports from ordinal to 8 | name entries. The x64 ntdll.lib does not suffer from 9 | this problem. 10 | 11 | The regex for swapping the export entries is below: 12 | 13 | Replace <:b:b:b:b{.*}:b=:b{.*}> 14 | with < \2 = \1> 15 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Common/Linq/Query Operators/Enumerable Private.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace System.Linq 6 | { 7 | public static partial class Enumerable 8 | { 9 | static void ThrowNoElements () 10 | { 11 | throw new InvalidOperationException ("Enumerable contains no elements"); 12 | } 13 | 14 | static void ThrowNoMatches () 15 | { 16 | throw new InvalidOperationException ("Enumerable contains no matching element"); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker/UI/WindowFromHandle.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows.Forms; 5 | 6 | namespace ProcessHacker.UI 7 | { 8 | public struct WindowFromHandle : IWin32Window 9 | { 10 | private IntPtr _handle; 11 | 12 | public WindowFromHandle(IntPtr handle) 13 | { 14 | _handle = handle; 15 | } 16 | 17 | public IntPtr Handle 18 | { 19 | get { return _handle; } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/OnlineChecks/json-c/random_seed.h: -------------------------------------------------------------------------------- 1 | /* 2 | * random_seed.h 3 | * 4 | * Copyright (c) 2013 Metaparadigm Pte. Ltd. 5 | * Michael Clark 6 | * 7 | * This library is free software; you can redistribute it and/or modify 8 | * it under the terms of the MIT license. See COPYING for details. 9 | * 10 | */ 11 | 12 | #ifndef seed_h 13 | #define seed_h 14 | 15 | #ifdef __cplusplus 16 | extern "C" { 17 | #endif 18 | 19 | extern int json_c_get_random_seed(); 20 | 21 | #ifdef __cplusplus 22 | } 23 | #endif 24 | 25 | #endif 26 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Common/Settings/SettingDefaultAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace ProcessHacker.Common.Settings 6 | { 7 | public class SettingDefaultAttribute 8 | { 9 | private string _value; 10 | 11 | public SettingDefaultAttribute(string value) 12 | { 13 | _value = value; 14 | } 15 | 16 | public string Value 17 | { 18 | get { return _value; } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /2.x/trunk/build/sdk/replace.vbs: -------------------------------------------------------------------------------- 1 | Const ForReading = 1 2 | Const ForWriting = 2 3 | 4 | strFileName = Wscript.Arguments(0) 5 | strOldText = Wscript.Arguments(1) 6 | strNewText = Wscript.Arguments(2) 7 | 8 | Set objFSO = CreateObject("Scripting.FileSystemObject") 9 | Set objFile = objFSO.OpenTextFile(strFileName, ForReading) 10 | 11 | strText = objFile.ReadAll 12 | objFile.Close 13 | strNewText = Replace(strText, strOldText, strNewText) 14 | 15 | Set objFile = objFSO.OpenTextFile(strFileName, ForWriting) 16 | objFile.Write strNewText 17 | objFile.Close 18 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker/UI/WindowFromHandle.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows.Forms; 5 | 6 | namespace ProcessHacker.UI 7 | { 8 | public class WindowFromHandle : IWin32Window 9 | { 10 | private IntPtr _handle; 11 | 12 | public WindowFromHandle(IntPtr handle) 13 | { 14 | _handle = handle; 15 | } 16 | 17 | public IntPtr Handle 18 | { 19 | get { return _handle; } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/SsLogging/SsClientId.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using ProcessHacker.Native.Api; 5 | 6 | namespace ProcessHacker.Native.SsLogging 7 | { 8 | public class SsClientId : SsData 9 | { 10 | public SsClientId(MemoryRegion data) 11 | { 12 | this.Original = data.ReadStruct(); 13 | } 14 | 15 | public ClientId Original 16 | { 17 | get; 18 | internal set; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Common/Linq/Grouping.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Collections.ObjectModel; 5 | 6 | namespace System.Linq 7 | { 8 | internal class Grouping : ReadOnlyCollection, IGrouping 9 | { 10 | internal IList InnerList { get { return this.Items; } } 11 | 12 | public TKey Key { get; private set; } 13 | 14 | public Grouping (TKey key) : base (new List()) 15 | { 16 | Key = key; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/SsLogging/SsClientId.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using ProcessHacker.Native.Api; 5 | 6 | namespace ProcessHacker.Native.SsLogging 7 | { 8 | public class SsClientId : SsData 9 | { 10 | public SsClientId(MemoryRegion data) 11 | { 12 | this.Original = data.ReadStruct(); 13 | } 14 | 15 | public ClientId Original 16 | { 17 | get; 18 | internal set; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /1.x/trunk/ProcessHacker.Native/Security/ScManagerAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum ScManagerAccess : uint 7 | { 8 | Connect = 0x0001, 9 | CreateService = 0x0002, 10 | EnumerateService = 0x0004, 11 | Lock = 0x0008, 12 | QueryLockStatus = 0x0010, 13 | ModifyBootConfig = 0x0020, 14 | All = StandardRights.Required | Connect | CreateService | EnumerateService | 15 | Lock | QueryLockStatus | ModifyBootConfig 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /2.x/trunk/build/coverity/coverity-build.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | SET MSBUILD_SWITCHES=/nologo /consoleloggerparameters:Verbosity=minimal /maxcpucount^ 4 | /nodeReuse:true /target:Rebuild /property:Configuration="Release" 5 | 6 | MSBuild "..\..\ProcessHacker.sln" %MSBUILD_SWITCHES%;Platform=Win32 7 | MSBuild "..\..\ProcessHacker.sln" %MSBUILD_SWITCHES%;Platform=x64 8 | 9 | PUSHD ..\sdk 10 | CALL "makesdk.cmd" 11 | POPD 12 | 13 | MSBuild "..\..\plugins\Plugins.sln" %MSBUILD_SWITCHES%;Platform=Win32 14 | MSBuild "..\..\plugins\Plugins.sln" %MSBUILD_SWITCHES%;Platform=x64 15 | -------------------------------------------------------------------------------- /2.x/trunk/plugins/OnlineChecks/sha256.h: -------------------------------------------------------------------------------- 1 | #ifndef _SHA256_H 2 | #define _SHA256_H 3 | 4 | #ifndef uint8 5 | #define uint8 unsigned char 6 | #endif 7 | 8 | #ifndef uint32 9 | #define uint32 unsigned long int 10 | #endif 11 | 12 | typedef struct 13 | { 14 | uint32 total[2]; 15 | uint32 state[8]; 16 | uint8 buffer[64]; 17 | } 18 | sha256_context; 19 | 20 | void sha256_starts( sha256_context *ctx ); 21 | void sha256_update( sha256_context *ctx, uint8 *input, uint32 length ); 22 | void sha256_finish( sha256_context *ctx, uint8 digest[32] ); 23 | 24 | #endif /* sha256.h */ 25 | 26 | -------------------------------------------------------------------------------- /2.x/trunk/tools/fixlib/fixlib.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Source Files 12 | 13 | 14 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/StringCollectionEditor.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.ComponentModel.Design; 5 | 6 | namespace Aga.Controls 7 | { 8 | public class StringCollectionEditor : CollectionEditor 9 | { 10 | public StringCollectionEditor(Type type): base(type) 11 | { 12 | } 13 | 14 | protected override Type CreateCollectionItemType() 15 | { 16 | return typeof(string); 17 | } 18 | 19 | protected override object CreateInstance(Type itemType) 20 | { 21 | return ""; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /1.x/trunk/TreeViewAdv/Tree/ITreeModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Collections; 5 | 6 | namespace Aga.Controls.Tree 7 | { 8 | public interface ITreeModel 9 | { 10 | IEnumerable GetChildren(TreePath treePath); 11 | bool IsLeaf(TreePath treePath); 12 | 13 | event EventHandler NodesChanged; 14 | event EventHandler NodesInserted; 15 | event EventHandler NodesRemoved; 16 | event EventHandler StructureChanged; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/KProcessHacker/sources: -------------------------------------------------------------------------------- 1 | TARGETNAME=kprocesshacker 2 | TARGETTYPE=DRIVER 3 | TARGETPATH=.\ 4 | 5 | INCLUDES=$(DDK_INC_PATH) 6 | LIBS=%BUILD%\lib 7 | 8 | SOURCES= \ 9 | kprocesshacker.c \ 10 | version.c \ 11 | \ 12 | kph.c \ 13 | handle.c \ 14 | hook.c \ 15 | protect.c \ 16 | ref.c \ 17 | sync.c \ 18 | sysservice.c \ 19 | sysservicedata.c \ 20 | test.c \ 21 | trace.c \ 22 | util.c \ 23 | \ 24 | io.c \ 25 | mm.c \ 26 | ob.c \ 27 | ps.c \ 28 | se.c \ 29 | resource.rc 30 | -------------------------------------------------------------------------------- /1.x/branches/ph-plugins/ProcessHacker.Native/Security/ScManagerAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace ProcessHacker.Native.Security 4 | { 5 | [Flags] 6 | public enum ScManagerAccess : uint 7 | { 8 | Connect = 0x0001, 9 | CreateService = 0x0002, 10 | EnumerateService = 0x0004, 11 | Lock = 0x0008, 12 | QueryLockStatus = 0x0010, 13 | ModifyBootConfig = 0x0020, 14 | All = StandardRights.Required | Connect | CreateService | EnumerateService | 15 | Lock | QueryLockStatus | ModifyBootConfig 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /misc/bugcheck/BugCheck/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace BugCheck 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new BugCheckWindow()); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /1.x/trunk/ExtraTools/NtObjects/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace NtObjects 6 | { 7 | static class Program 8 | { 9 | /// 10 | /// The main entry point for the application. 11 | /// 12 | [STAThread] 13 | static void Main() 14 | { 15 | Application.EnableVisualStyles(); 16 | Application.SetCompatibleTextRenderingDefault(false); 17 | Application.Run(new ObjectsWindow()); 18 | } 19 | } 20 | } 21 | --------------------------------------------------------------------------------