├── .gitattributes ├── .gitignore ├── .todo.txt ├── CDll.cls ├── CDllExport.cls ├── CRemoteQuery.cls ├── CResolveRemoteExports.cls ├── CResult.cls ├── Form1.frm ├── Project1.vbp ├── Project1.vbw ├── bin ├── MSWINSCK.OCX ├── procLib.dll ├── remoteLookup.exe └── sppe.dll ├── bulk_example.txt ├── cs_client ├── AssemblyInfo.cs ├── Client.cs ├── Program.cs ├── cs_client.csproj ├── cs_client.sln └── cs_client.suo ├── d_client ├── dtest.sln ├── dtest.suo ├── dtest.visualdproj └── main.d ├── modMain.bas ├── python_client └── example.py ├── readme.txt ├── screenshot.png ├── ucProgress.ctl └── vb6_client ├── CRemoteExportClient.cls ├── Form1.frm ├── Project1.vbp ├── Project1.vbw └── remoteClient.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /.todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/.todo.txt -------------------------------------------------------------------------------- /CDll.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/CDll.cls -------------------------------------------------------------------------------- /CDllExport.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/CDllExport.cls -------------------------------------------------------------------------------- /CRemoteQuery.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/CRemoteQuery.cls -------------------------------------------------------------------------------- /CResolveRemoteExports.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/CResolveRemoteExports.cls -------------------------------------------------------------------------------- /CResult.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/CResult.cls -------------------------------------------------------------------------------- /Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/Form1.frm -------------------------------------------------------------------------------- /Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/Project1.vbp -------------------------------------------------------------------------------- /Project1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/Project1.vbw -------------------------------------------------------------------------------- /bin/MSWINSCK.OCX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/bin/MSWINSCK.OCX -------------------------------------------------------------------------------- /bin/procLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/bin/procLib.dll -------------------------------------------------------------------------------- /bin/remoteLookup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/bin/remoteLookup.exe -------------------------------------------------------------------------------- /bin/sppe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/bin/sppe.dll -------------------------------------------------------------------------------- /bulk_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/bulk_example.txt -------------------------------------------------------------------------------- /cs_client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/cs_client/AssemblyInfo.cs -------------------------------------------------------------------------------- /cs_client/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/cs_client/Client.cs -------------------------------------------------------------------------------- /cs_client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/cs_client/Program.cs -------------------------------------------------------------------------------- /cs_client/cs_client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/cs_client/cs_client.csproj -------------------------------------------------------------------------------- /cs_client/cs_client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/cs_client/cs_client.sln -------------------------------------------------------------------------------- /cs_client/cs_client.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/cs_client/cs_client.suo -------------------------------------------------------------------------------- /d_client/dtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/d_client/dtest.sln -------------------------------------------------------------------------------- /d_client/dtest.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/d_client/dtest.suo -------------------------------------------------------------------------------- /d_client/dtest.visualdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/d_client/dtest.visualdproj -------------------------------------------------------------------------------- /d_client/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/d_client/main.d -------------------------------------------------------------------------------- /modMain.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/modMain.bas -------------------------------------------------------------------------------- /python_client/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/python_client/example.py -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/screenshot.png -------------------------------------------------------------------------------- /ucProgress.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/ucProgress.ctl -------------------------------------------------------------------------------- /vb6_client/CRemoteExportClient.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/vb6_client/CRemoteExportClient.cls -------------------------------------------------------------------------------- /vb6_client/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/vb6_client/Form1.frm -------------------------------------------------------------------------------- /vb6_client/Project1.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/vb6_client/Project1.vbp -------------------------------------------------------------------------------- /vb6_client/Project1.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/vb6_client/Project1.vbw -------------------------------------------------------------------------------- /vb6_client/remoteClient.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandiant/remote_lookup/HEAD/vb6_client/remoteClient.exe --------------------------------------------------------------------------------