├── source_code_20121105 ├── bin │ ├── x64 │ │ ├── symsrv.yes │ │ ├── dbg64.dll │ │ ├── dbgeng.dll │ │ ├── srcsrv.dll │ │ ├── symchk.exe │ │ ├── symsrv.dll │ │ └── SymbolCheck.dll │ ├── x86 │ │ ├── symsrv.yes │ │ ├── dbg32.dll │ │ ├── dbgeng.dll │ │ ├── srcsrv.dll │ │ ├── symchk.exe │ │ ├── symsrv.dll │ │ └── SymbolCheck.dll │ ├── EasyHook32.dll │ ├── EasyHook64.dll │ ├── Injection32.dll │ ├── Injection64.dll │ ├── Test_x64_DotNet20_Release.exe │ ├── Test_x64_DotNet20_Release.exe.config │ ├── Test_x64_DotNet35_Release.exe │ ├── Test_x64_DotNet40_Release.exe │ ├── Test_x64_DotNet45_Release.exe │ ├── Test_x86_DotNet20_Release.exe │ ├── Test_x86_DotNet20_Release.exe.config │ ├── Test_x86_DotNet35_Release.exe │ ├── Test_x86_DotNet40_Release.exe │ ├── Test_x86_DotNet45_Release.exe │ ├── Test_x64_DotNet35_Release.exe.config │ ├── Test_x86_DotNet35_Release.exe.config │ ├── Test_x64_DotNet45_Release.exe.config │ ├── Test_x86_DotNet45_Release.exe.config │ ├── Test_x64_DotNet40_Release.exe.config │ └── Test_x86_DotNet40_Release.exe.config ├── Injection │ ├── res │ │ ├── 1A7C5BC4840374B11698A414FE04A6EE │ │ ├── 1BD5FD7082BB348F9FAF493B6DF6E3BF │ │ ├── 26B04A48905D01AB93E62B8C6913793E │ │ ├── 3787A4BC97CE6C630F4B581425223D96 │ │ ├── 3A2F5C8666F08B31C61DBAE9C297551C │ │ ├── 3ABB7ADB9CCBCD24D6C55201A3842A94 │ │ ├── 59D16FD61802739988728790BF1232B3 │ │ ├── 5DA46042E4E8FAE64F30213530137002 │ │ ├── 75BCC4043512E41D83C8F224B168039C │ │ ├── 781BF72F57CC9E5F85CB109C24D00FDC │ │ ├── 79E8025D1F2B0F8691C222DAC135D26E │ │ ├── 7F701A5B3B7A7A2F962C01434360F5C5 │ │ ├── 836B8F87DC42AD95D4FE95BD1E374DF2 │ │ ├── 89BAB052AB7A36EC05D8E8DB79115B1D │ │ ├── AF2D82D297609DF60469BFAE48645762 │ │ ├── B00FFB4355B1364656FB52CFF88199DE │ │ ├── B155251C48DEAB9492F91B32DACE2576 │ │ ├── B560A085EED4D5D72B039929F9AE4991 │ │ ├── BE25FA9D4F2E989CC07A869EB0C9EB8E │ │ ├── BE7DFCC43C5A2C214B50165F933559A6 │ │ ├── C0775067EF2564BEF11FCB09ECE1A3B2 │ │ ├── D146C378AEC2D1570A4E4F81E2B621B3 │ │ ├── DC42EA5012610F559F4A433BD4AA399C │ │ ├── EA8332A740B8737C4C473C889C86DCB2 │ │ └── EE3C31EAD84019600DD65D3E8A3E9744 │ ├── resource.h │ ├── Injection.aps │ ├── Injection.def │ ├── Injection.rc │ ├── stdafx.cpp │ ├── targetver.h │ ├── Utility.h │ ├── SymbolAddressCache.h │ └── Injection_VS2010.vcxproj.user ├── lib │ ├── EasyHook32.lib │ └── EasyHook64.lib └── Demo │ ├── DotNet20 │ ├── app.config │ └── Properties │ │ └── Settings.settings │ ├── DotNet20_x64 │ ├── app.config │ └── Properties │ │ └── Settings.settings │ ├── DotNet35 │ ├── app.config │ └── Properties │ │ └── Settings.settings │ ├── DotNet35_x64 │ ├── app.config │ └── Properties │ │ └── Settings.settings │ ├── DotNet45 │ ├── app.config │ └── Properties │ │ └── Settings.settings │ ├── DotNet45_x64 │ ├── app.config │ └── Properties │ │ └── Settings.settings │ ├── DotNet40 │ ├── app.config │ └── Properties │ │ └── Settings.settings │ ├── DotNet40_x64 │ ├── app.config │ └── Properties │ │ └── Settings.settings │ └── Program.cs ├── source_20140807 ├── curl-7.34.0 │ ├── packages │ │ ├── Linux │ │ │ ├── Makefile.am │ │ │ └── RPM │ │ │ │ ├── Makefile.am │ │ │ │ └── README │ │ ├── AIX │ │ │ ├── RPM │ │ │ │ └── Makefile.am │ │ │ └── Makefile.am │ │ ├── Win32 │ │ │ ├── Makefile.am │ │ │ └── README │ │ ├── OS400 │ │ │ └── make-src.sh │ │ ├── EPM │ │ │ ├── Makefile.am │ │ │ └── README │ │ ├── vms │ │ │ └── macro32_exactcase.patch │ │ ├── Symbian │ │ │ └── group │ │ │ │ ├── bld.inf │ │ │ │ ├── libcurl.iby │ │ │ │ └── curl.iby │ │ └── DOS │ │ │ └── README │ ├── CMake │ │ ├── CMakeConfigurableFile.in │ │ └── FindZLIB.cmake │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── test16 │ │ │ ├── test1034 │ │ │ ├── test1035 │ │ │ ├── test165 │ │ │ ├── DISABLED │ │ │ ├── test1395 │ │ │ ├── test1300 │ │ │ ├── test1301 │ │ │ ├── test1302 │ │ │ ├── test1303 │ │ │ ├── test1132 │ │ │ ├── test1396 │ │ │ ├── test1119 │ │ │ ├── test1307 │ │ │ ├── test1394 │ │ │ ├── test1305 │ │ │ ├── test1306 │ │ │ ├── test829 │ │ │ ├── test875 │ │ │ ├── test931 │ │ │ ├── test1409 │ │ │ ├── test226 │ │ │ ├── test1308 │ │ │ ├── test1410 │ │ │ ├── test225 │ │ │ ├── test1304 │ │ │ ├── test404 │ │ │ ├── test1329 │ │ │ ├── test289 │ │ │ ├── test41 │ │ │ ├── test1508 │ │ │ ├── test201 │ │ │ ├── test23 │ │ │ ├── test1234 │ │ │ ├── test21 │ │ │ ├── test597 │ │ │ ├── test929 │ │ │ ├── test604 │ │ │ ├── test402 │ │ │ ├── test629 │ │ │ ├── test930 │ │ │ ├── test1220 │ │ │ ├── test628 │ │ │ ├── test305 │ │ │ ├── test308 │ │ │ ├── test19 │ │ │ ├── test322 │ │ │ ├── test323 │ │ │ ├── test507 │ │ │ ├── test1069 │ │ │ ├── test20 │ │ │ ├── test200 │ │ │ ├── test321 │ │ │ ├── test324 │ │ │ ├── test605 │ │ │ ├── test607 │ │ │ ├── test606 │ │ │ ├── test859 │ │ │ ├── test860 │ │ │ ├── test863 │ │ │ ├── test1200 │ │ │ ├── test704 │ │ │ ├── test705 │ │ │ ├── test923 │ │ │ ├── test1023 │ │ │ ├── test203 │ │ │ ├── test283 │ │ │ ├── test1013 │ │ │ ├── test1014 │ │ │ ├── test1022 │ │ │ ├── test509 │ │ │ ├── test858 │ │ │ ├── test113 │ │ │ ├── test76 │ │ │ ├── test928 │ │ │ ├── test1000 │ │ │ ├── test231 │ │ │ ├── test136 │ │ │ ├── test204 │ │ │ ├── test205 │ │ │ ├── test543 │ │ │ ├── test632 │ │ │ ├── test1236 │ │ │ ├── test1016 │ │ │ ├── test1018 │ │ │ ├── test811 │ │ │ ├── test812 │ │ │ ├── test925 │ │ │ ├── test114 │ │ │ ├── test182 │ │ │ ├── test405 │ │ │ ├── test501 │ │ │ ├── test630 │ │ │ ├── test631 │ │ │ ├── test813 │ │ │ ├── test817 │ │ │ ├── test1084 │ │ │ ├── test191 │ │ │ ├── test814 │ │ │ ├── test1017 │ │ │ ├── test104 │ │ │ ├── test271 │ │ │ ├── test1201 │ │ │ ├── test195 │ │ │ ├── test66 │ │ │ ├── test702 │ │ │ ├── test703 │ │ │ ├── test1020 │ │ │ ├── test125 │ │ │ ├── test272 │ │ │ ├── test1019 │ │ │ ├── test143 │ │ │ ├── test202 │ │ │ ├── test290 │ │ │ ├── test111 │ │ │ ├── test1203 │ │ │ ├── test854 │ │ │ ├── test30 │ │ │ ├── test617 │ │ │ ├── test850 │ │ │ ├── test1009 │ │ │ ├── test616 │ │ │ ├── test140 │ │ │ ├── test282 │ │ │ ├── test926 │ │ │ ├── test1093 │ │ │ ├── test852 │ │ │ ├── test855 │ │ │ ├── test115 │ │ │ ├── test127 │ │ │ ├── test1326 │ │ │ ├── test601 │ │ │ ├── test117 │ │ │ ├── test123 │ │ │ ├── test37 │ │ │ ├── test524 │ │ │ ├── test600 │ │ │ ├── test851 │ │ │ ├── test1091 │ │ │ ├── test1500 │ │ │ ├── test229 │ │ │ ├── test238 │ │ │ ├── test285 │ │ │ ├── test806 │ │ │ ├── test1007 │ │ │ ├── test1049 │ │ │ ├── test122 │ │ │ ├── test502 │ │ │ ├── test633 │ │ │ ├── test810 │ │ │ ├── test1224 │ │ │ ├── test196 │ │ │ └── test295 │ │ ├── runtests.pdf │ │ ├── testcurl.pdf │ │ ├── certs │ │ │ ├── EdelCurlRoot-ca.der │ │ │ ├── Server-localhost-sv.der │ │ │ ├── Server-localhost-sv.p12 │ │ │ ├── Server-localhost0h-sv.der │ │ │ ├── Server-localhost0h-sv.p12 │ │ │ ├── Server-localhost.nn-sv.der │ │ │ ├── Server-localhost-sv.dhp │ │ │ ├── Server-localhost.nn-sv.dhp │ │ │ ├── Server-localhost0h-sv.dhp │ │ │ ├── EdelCurlRoot-ca.cnf │ │ │ ├── srp-verifier-db │ │ │ ├── Server-localhost-sv.csr │ │ │ ├── Server-localhost0h-sv.csr │ │ │ ├── Server-localhost.nn-sv.csr │ │ │ └── EdelCurlRoot-ca.prm │ │ ├── server │ │ │ └── base64.pl │ │ └── libtest │ │ │ ├── test75.pl │ │ │ ├── notexists.pl │ │ │ └── test307.pl │ ├── README │ ├── include │ │ └── Makefile.am │ ├── lib │ │ ├── cookie.c │ │ ├── krb5.c │ │ ├── libcurl.rc │ │ ├── security.c │ │ ├── libcurl.vers.in │ │ └── makefile.amiga │ ├── src │ │ ├── curl.rc │ │ └── tool_getparam.c │ ├── vs │ │ ├── vc8 │ │ │ └── lib │ │ │ │ ├── Debug │ │ │ │ └── vc8libcurl.log │ │ │ │ ├── Release │ │ │ │ └── vc8libcurl.log │ │ │ │ ├── vc8libcurl.vcxproj.user │ │ │ │ └── _UpgradeReport_Files │ │ │ │ ├── UpgradeReport_Plus.gif │ │ │ │ └── UpgradeReport_Minus.gif │ │ ├── t │ │ │ ├── lib │ │ │ │ ├── vc8_libcurl_prj.foot │ │ │ │ └── vc6_libcurl_dsp.foot │ │ │ └── README │ │ └── vc6 │ │ │ ├── lib │ │ │ └── vc6libcurl.dsw │ │ │ └── src │ │ │ └── vc6curltool.dsw │ ├── CMakeLists.txt │ ├── docs │ │ ├── BINDINGS │ │ ├── curl.pdf │ │ ├── curl-config.pdf │ │ ├── mk-ca-bundle.pdf │ │ ├── libcurl │ │ │ ├── libcurl.pdf │ │ │ ├── curl_free.pdf │ │ │ ├── curl_escape.pdf │ │ │ ├── curl_formadd.pdf │ │ │ ├── curl_formget.pdf │ │ │ ├── curl_getdate.pdf │ │ │ ├── curl_getenv.pdf │ │ │ ├── curl_mprintf.pdf │ │ │ ├── curl_version.pdf │ │ │ ├── libcurl-easy.pdf │ │ │ ├── curl_easy_init.pdf │ │ │ ├── curl_easy_pause.pdf │ │ │ ├── curl_easy_recv.pdf │ │ │ ├── curl_easy_reset.pdf │ │ │ ├── curl_easy_send.pdf │ │ │ ├── curl_formfree.pdf │ │ │ ├── curl_multi_init.pdf │ │ │ ├── curl_multi_wait.pdf │ │ │ ├── curl_share_init.pdf │ │ │ ├── curl_strequal.pdf │ │ │ ├── curl_unescape.pdf │ │ │ ├── libcurl-errors.pdf │ │ │ ├── libcurl-multi.pdf │ │ │ ├── libcurl-share.pdf │ │ │ ├── curl_easy_cleanup.pdf │ │ │ ├── curl_easy_escape.pdf │ │ │ ├── curl_easy_getinfo.pdf │ │ │ ├── curl_easy_perform.pdf │ │ │ ├── curl_easy_setopt.pdf │ │ │ ├── curl_global_init.pdf │ │ │ ├── curl_multi_assign.pdf │ │ │ ├── curl_multi_fdset.pdf │ │ │ ├── curl_multi_setopt.pdf │ │ │ ├── curl_multi_socket.pdf │ │ │ ├── curl_share_setopt.pdf │ │ │ ├── curl_slist_append.pdf │ │ │ ├── curl_version_info.pdf │ │ │ ├── libcurl-tutorial.pdf │ │ │ ├── curl_easy_duphandle.pdf │ │ │ ├── curl_easy_strerror.pdf │ │ │ ├── curl_easy_unescape.pdf │ │ │ ├── curl_global_cleanup.pdf │ │ │ ├── curl_global_init_mem.pdf │ │ │ ├── curl_multi_cleanup.pdf │ │ │ ├── curl_multi_info_read.pdf │ │ │ ├── curl_multi_perform.pdf │ │ │ ├── curl_multi_strerror.pdf │ │ │ ├── curl_multi_timeout.pdf │ │ │ ├── curl_share_cleanup.pdf │ │ │ ├── curl_share_strerror.pdf │ │ │ ├── curl_slist_free_all.pdf │ │ │ ├── curl_multi_add_handle.pdf │ │ │ ├── curl_multi_remove_handle.pdf │ │ │ └── curl_multi_socket_action.pdf │ │ └── index.html │ └── winbuild │ │ └── gen_resp_file.bat ├── Injection │ ├── res │ │ ├── 6D7E9E305D4445A486BFCE343AD804C12 │ │ ├── 6DB1505F15DE4DF69E22378883242B5E2 │ │ ├── 78258CE97F5147A686EF2EA4787A27C11 │ │ ├── D21D9E0DA3214B72A396B1BE6BB4874F2 │ │ ├── 5182A0CFB60D40DB90EEF44DEC7ACB932 │ │ ├── 7D30549D4DD444F3B5C8D20C9F0066442 │ │ ├── B6ECECB98D124A09AE3895D7F0F2F5BC2 │ │ └── 0292B49A03B44A7B98D880CA92221D2F1 │ ├── resource.h │ ├── Injection.aps │ ├── Injection.rc │ ├── PEFileParser.cpp │ ├── x64 │ │ ├── Debug - X64 │ │ │ └── Injection_VS2010.log │ │ └── Release - X64 │ │ │ └── Injection_VS2010.log │ ├── Injection.def │ ├── stdafx.cpp │ ├── targetver.h │ ├── PEFileParser.h │ ├── Utility.h │ └── Injection_VS2010.vcxproj.user ├── lib │ ├── GS_x64.lib │ ├── GS_x86.lib │ ├── AUX_ULIB_x64.LIB │ └── AUX_ULIB_x86.LIB ├── EasyHookLib │ ├── GS_x64.lib │ ├── GS_x86.lib │ ├── AUX_ULIB_x64.LIB │ ├── AUX_ULIB_x86.LIB │ ├── EasyHookLib.suo │ ├── DriverShared │ │ └── ASM │ │ │ ├── ILD_x64.asm │ │ │ └── ILD_x86.asm │ └── EasyHookLib.vcxproj.user ├── Demo │ ├── DotNet20 │ │ ├── app.config │ │ ├── obj │ │ │ ├── x64 │ │ │ │ └── Release │ │ │ │ │ ├── TempPE │ │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── x86 │ │ │ │ └── Release │ │ │ │ ├── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Properties │ │ │ └── Settings.settings │ ├── DotNet20_x64 │ │ ├── app.config │ │ ├── obj │ │ │ └── x64 │ │ │ │ └── Release │ │ │ │ ├── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Properties │ │ │ └── Settings.settings │ ├── DotNet35 │ │ ├── app.config │ │ ├── bin │ │ │ └── x64 │ │ │ │ └── Release │ │ │ │ ├── Test_x86_DotNet35_Release.vshost.exe.config │ │ │ │ ├── Test_x86_DotNet35_Release.vshost.exe │ │ │ │ └── Test_x86_DotNet35_Release.vshost.exe.manifest │ │ ├── obj │ │ │ ├── x64 │ │ │ │ └── Release │ │ │ │ │ ├── TempPE │ │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── x86 │ │ │ │ └── Release │ │ │ │ ├── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Properties │ │ │ └── Settings.settings │ │ └── Test_DotNet35_VS2010.csproj.user │ ├── DotNet35_x64 │ │ ├── app.config │ │ ├── obj │ │ │ └── x64 │ │ │ │ └── Release │ │ │ │ ├── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── Properties │ │ │ └── Settings.settings │ ├── DotNet45 │ │ ├── app.config │ │ └── Properties │ │ │ └── Settings.settings │ ├── DotNet45_x64 │ │ ├── app.config │ │ └── Properties │ │ │ └── Settings.settings │ ├── DotNet40 │ │ ├── app.config │ │ ├── bin │ │ │ └── x64 │ │ │ │ └── Release │ │ │ │ ├── Test_x86_DotNet40_Release.vshost.exe │ │ │ │ ├── Test_x86_DotNet40_Release.vshost.exe.config │ │ │ │ └── Test_x86_DotNet40_Release.vshost.exe.manifest │ │ ├── obj │ │ │ ├── x64 │ │ │ │ └── Release │ │ │ │ │ ├── TempPE │ │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ └── x86 │ │ │ │ └── Release │ │ │ │ ├── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Properties │ │ │ └── Settings.settings │ │ └── Test_DotNet40_VS2010.csproj.user │ ├── DotNet40_x64 │ │ ├── app.config │ │ ├── obj │ │ │ └── x64 │ │ │ │ └── Release │ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ │ ├── TempPE │ │ │ │ └── Properties.Resources.Designer.cs.dll │ │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Properties │ │ │ └── Settings.settings │ │ └── Test_DotNet40_x64_VS2010.csproj.user │ └── Program.cs └── bin │ ├── Test_x64_DotNet45_Release.exe.config │ └── Test_x86_DotNet45_Release.exe.config ├── source_20140807.zip ├── source_code_20121105.zip └── README.md /source_code_20121105/bin/x64/symsrv.yes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source_code_20121105/bin/x86/symsrv.yes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/Linux/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = RPM 2 | -------------------------------------------------------------------------------- /source_20140807/Injection/res/6D7E9E305D4445A486BFCE343AD804C12: -------------------------------------------------------------------------------- 1 | CILJit::compileMethod=14394 2 | -------------------------------------------------------------------------------- /source_20140807/Injection/res/6DB1505F15DE4DF69E22378883242B5E2: -------------------------------------------------------------------------------- 1 | PreJit::compileMethod=174208 2 | -------------------------------------------------------------------------------- /source_20140807/Injection/res/78258CE97F5147A686EF2EA4787A27C11: -------------------------------------------------------------------------------- 1 | PreJit::compileMethod=738400 2 | -------------------------------------------------------------------------------- /source_20140807/Injection/res/D21D9E0DA3214B72A396B1BE6BB4874F2: -------------------------------------------------------------------------------- 1 | CILJit::compileMethod=24090 2 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/AIX/RPM/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = README curl.spec.in 2 | 3 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/CMake/CMakeConfigurableFile.in: -------------------------------------------------------------------------------- 1 | @CMAKE_CONFIGURABLE_FILE_CONTENT@ 2 | 3 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/AIX/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = RPM 2 | 3 | EXTRA_DIST = Makefile.am 4 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/Win32/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = cygwin 2 | 3 | EXTRA_DIST = README 4 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(libtest) 2 | add_subdirectory(server) 3 | -------------------------------------------------------------------------------- /source_20140807.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807.zip -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/OS400/make-src.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # 4 | # Not implemented yet on OS/400. 5 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/EPM/Makefile.am: -------------------------------------------------------------------------------- 1 | AUTOMAKE_OPTIONS = foreign 2 | 3 | EXTRA_DIST = README curl.list.in 4 | -------------------------------------------------------------------------------- /source_code_20121105.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105.zip -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/Linux/RPM/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = README curl-ssl.spec.in curl.spec.in make_curl_rpm 2 | 3 | -------------------------------------------------------------------------------- /source_20140807/lib/GS_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/lib/GS_x64.lib -------------------------------------------------------------------------------- /source_20140807/lib/GS_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/lib/GS_x86.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # -NET-Modify-IL-Code-during-Run-time 2 | http://www.codeproject.com/Articles/463508/NET-CLR-Injection-Modify-IL-Code-during-Run-time 3 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/README -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = curl 2 | 3 | EXTRA_DIST = README 4 | 5 | AUTOMAKE_OPTIONS = foreign no-dependencies 6 | -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/1A7C5BC4840374B11698A414FE04A6EE: -------------------------------------------------------------------------------- 1 | 1A7C5BC4840374B11698A414FE04A6EE 2 | 216608;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/1BD5FD7082BB348F9FAF493B6DF6E3BF: -------------------------------------------------------------------------------- 1 | 1BD5FD7082BB348F9FAF493B6DF6E3BF 2 | 282704;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/26B04A48905D01AB93E62B8C6913793E: -------------------------------------------------------------------------------- 1 | 26B04A48905D01AB93E62B8C6913793E 2 | 11216;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/3787A4BC97CE6C630F4B581425223D96: -------------------------------------------------------------------------------- 1 | 3787A4BC97CE6C630F4B581425223D96 2 | 25635;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/3A2F5C8666F08B31C61DBAE9C297551C: -------------------------------------------------------------------------------- 1 | 3A2F5C8666F08B31C61DBAE9C297551C 2 | 282704;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/3ABB7ADB9CCBCD24D6C55201A3842A94: -------------------------------------------------------------------------------- 1 | 3ABB7ADB9CCBCD24D6C55201A3842A94 2 | 282912;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/59D16FD61802739988728790BF1232B3: -------------------------------------------------------------------------------- 1 | 59D16FD61802739988728790BF1232B3 2 | 23995;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/5DA46042E4E8FAE64F30213530137002: -------------------------------------------------------------------------------- 1 | 5DA46042E4E8FAE64F30213530137002 2 | 96016;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/75BCC4043512E41D83C8F224B168039C: -------------------------------------------------------------------------------- 1 | 75BCC4043512E41D83C8F224B168039C 2 | 23995;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/781BF72F57CC9E5F85CB109C24D00FDC: -------------------------------------------------------------------------------- 1 | 781BF72F57CC9E5F85CB109C24D00FDC 2 | 24100;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/79E8025D1F2B0F8691C222DAC135D26E: -------------------------------------------------------------------------------- 1 | 79E8025D1F2B0F8691C222DAC135D26E 2 | 282704;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/7F701A5B3B7A7A2F962C01434360F5C5: -------------------------------------------------------------------------------- 1 | 7F701A5B3B7A7A2F962C01434360F5C5 2 | 282912;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/836B8F87DC42AD95D4FE95BD1E374DF2: -------------------------------------------------------------------------------- 1 | 836B8F87DC42AD95D4FE95BD1E374DF2 2 | 11248;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/89BAB052AB7A36EC05D8E8DB79115B1D: -------------------------------------------------------------------------------- 1 | 89BAB052AB7A36EC05D8E8DB79115B1D 2 | 23995;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/AF2D82D297609DF60469BFAE48645762: -------------------------------------------------------------------------------- 1 | AF2D82D297609DF60469BFAE48645762 2 | 23995;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/B00FFB4355B1364656FB52CFF88199DE: -------------------------------------------------------------------------------- 1 | B00FFB4355B1364656FB52CFF88199DE 2 | 106336;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/B155251C48DEAB9492F91B32DACE2576: -------------------------------------------------------------------------------- 1 | B155251C48DEAB9492F91B32DACE2576 2 | 17776;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/B560A085EED4D5D72B039929F9AE4991: -------------------------------------------------------------------------------- 1 | B560A085EED4D5D72B039929F9AE4991 2 | 25635;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/BE25FA9D4F2E989CC07A869EB0C9EB8E: -------------------------------------------------------------------------------- 1 | BE25FA9D4F2E989CC07A869EB0C9EB8E 2 | 20000;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/BE7DFCC43C5A2C214B50165F933559A6: -------------------------------------------------------------------------------- 1 | BE7DFCC43C5A2C214B50165F933559A6 2 | 94912;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/C0775067EF2564BEF11FCB09ECE1A3B2: -------------------------------------------------------------------------------- 1 | C0775067EF2564BEF11FCB09ECE1A3B2 2 | 130784;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/D146C378AEC2D1570A4E4F81E2B621B3: -------------------------------------------------------------------------------- 1 | D146C378AEC2D1570A4E4F81E2B621B3 2 | 23995;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/DC42EA5012610F559F4A433BD4AA399C: -------------------------------------------------------------------------------- 1 | DC42EA5012610F559F4A433BD4AA399C 2 | 282704;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/EA8332A740B8737C4C473C889C86DCB2: -------------------------------------------------------------------------------- 1 | EA8332A740B8737C4C473C889C86DCB2 2 | 24100;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_code_20121105/Injection/res/EE3C31EAD84019600DD65D3E8A3E9744: -------------------------------------------------------------------------------- 1 | EE3C31EAD84019600DD65D3E8A3E9744 2 | 760832;ICorJitCompiler::s_pfnComplieMethod -------------------------------------------------------------------------------- /source_20140807/Injection/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Injection/resource.h -------------------------------------------------------------------------------- /source_20140807/lib/AUX_ULIB_x64.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/lib/AUX_ULIB_x64.LIB -------------------------------------------------------------------------------- /source_20140807/lib/AUX_ULIB_x86.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/lib/AUX_ULIB_x86.LIB -------------------------------------------------------------------------------- /source_20140807/EasyHookLib/GS_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/EasyHookLib/GS_x64.lib -------------------------------------------------------------------------------- /source_20140807/EasyHookLib/GS_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/EasyHookLib/GS_x86.lib -------------------------------------------------------------------------------- /source_20140807/Injection/Injection.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Injection/Injection.aps -------------------------------------------------------------------------------- /source_20140807/Injection/Injection.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Injection/Injection.rc -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/lib/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/lib/cookie.c -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/lib/krb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/lib/krb5.c -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/src/curl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/src/curl.rc -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/vs/vc8/lib/Debug/vc8libcurl.log: -------------------------------------------------------------------------------- 1 | Build started 2014-8-7 20:10:31. 2 | 3 | Build succeeded. 4 | 5 | Time Elapsed 00:00:00.01 6 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/vs/vc8/lib/Release/vc8libcurl.log: -------------------------------------------------------------------------------- 1 | Build started 2014-8-7 20:10:22. 2 | 3 | Build succeeded. 4 | 5 | Time Elapsed 00:00:00.01 6 | -------------------------------------------------------------------------------- /source_code_20121105/bin/EasyHook32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/EasyHook32.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/EasyHook64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/EasyHook64.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/Injection32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/Injection32.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/Injection64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/Injection64.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/x64/dbg64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x64/dbg64.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/x64/dbgeng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x64/dbgeng.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/x64/srcsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x64/srcsrv.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/x64/symchk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x64/symchk.exe -------------------------------------------------------------------------------- /source_code_20121105/bin/x64/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x64/symsrv.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/x86/dbg32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x86/dbg32.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/x86/dbgeng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x86/dbgeng.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/x86/srcsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x86/srcsrv.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/x86/symchk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x86/symchk.exe -------------------------------------------------------------------------------- /source_code_20121105/bin/x86/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x86/symsrv.dll -------------------------------------------------------------------------------- /source_code_20121105/lib/EasyHook32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/lib/EasyHook32.lib -------------------------------------------------------------------------------- /source_code_20121105/lib/EasyHook64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/lib/EasyHook64.lib -------------------------------------------------------------------------------- /source_20140807/Injection/PEFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Injection/PEFileParser.cpp -------------------------------------------------------------------------------- /source_20140807/Injection/x64/Debug - X64/Injection_VS2010.log: -------------------------------------------------------------------------------- 1 | Build started 2014-8-7 20:09:37. 2 | 3 | Build succeeded. 4 | 5 | Time Elapsed 00:00:00.01 6 | -------------------------------------------------------------------------------- /source_20140807/Injection/x64/Release - X64/Injection_VS2010.log: -------------------------------------------------------------------------------- 1 | Build started 2014-8-7 20:09:43. 2 | 3 | Build succeeded. 4 | 5 | Time Elapsed 00:00:00.01 6 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/CMakeLists.txt -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/BINDINGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/BINDINGS -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/curl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/curl.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/lib/libcurl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/lib/libcurl.rc -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/lib/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/lib/security.c -------------------------------------------------------------------------------- /source_code_20121105/Injection/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/Injection/resource.h -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet20/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/EasyHookLib/AUX_ULIB_x64.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/EasyHookLib/AUX_ULIB_x64.LIB -------------------------------------------------------------------------------- /source_20140807/EasyHookLib/AUX_ULIB_x86.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/EasyHookLib/AUX_ULIB_x86.LIB -------------------------------------------------------------------------------- /source_20140807/EasyHookLib/EasyHookLib.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/EasyHookLib/EasyHookLib.suo -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/data/test16 -------------------------------------------------------------------------------- /source_code_20121105/Injection/Injection.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/Injection/Injection.aps -------------------------------------------------------------------------------- /source_code_20121105/Injection/Injection.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | EXPORTS 3 | UpdateILCodes @1 4 | GetStatus @2 5 | WaitForIntializationCompletion @3 6 | -------------------------------------------------------------------------------- /source_code_20121105/Injection/Injection.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/Injection/Injection.rc -------------------------------------------------------------------------------- /source_code_20121105/bin/x64/SymbolCheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x64/SymbolCheck.dll -------------------------------------------------------------------------------- /source_code_20121105/bin/x86/SymbolCheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/x86/SymbolCheck.dll -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet20_x64/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/src/tool_getparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/src/tool_getparam.c -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1034: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/data/test1034 -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1035: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/data/test1035 -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test165: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/data/test165 -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/runtests.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/runtests.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/testcurl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/testcurl.pdf -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet20/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/curl-config.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/curl-config.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/mk-ca-bundle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/mk-ca-bundle.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/Win32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/packages/Win32/README -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet20_x64/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35_x64/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/libcurl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/libcurl.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_free.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_free.pdf -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet35/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet35_x64/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x64_DotNet20_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/Test_x64_DotNet20_Release.exe -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x64_DotNet20_Release.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x64_DotNet35_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/Test_x64_DotNet35_Release.exe -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x64_DotNet40_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/Test_x64_DotNet40_Release.exe -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x64_DotNet45_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/Test_x64_DotNet45_Release.exe -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x86_DotNet20_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/Test_x86_DotNet20_Release.exe -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x86_DotNet20_Release.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x86_DotNet35_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/Test_x86_DotNet35_Release.exe -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x86_DotNet40_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/Test_x86_DotNet40_Release.exe -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x86_DotNet45_Release.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_code_20121105/bin/Test_x86_DotNet45_Release.exe -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet45/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/EasyHookLib/DriverShared/ASM/ILD_x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/EasyHookLib/DriverShared/ASM/ILD_x64.asm -------------------------------------------------------------------------------- /source_20140807/EasyHookLib/DriverShared/ASM/ILD_x86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/EasyHookLib/DriverShared/ASM/ILD_x86.asm -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_escape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_escape.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_formadd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_formadd.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_formget.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_formget.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_getdate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_getdate.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_getenv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_getenv.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_mprintf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_mprintf.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_version.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/libcurl-easy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/libcurl-easy.pdf -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet45_x64/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/EasyHookLib/EasyHookLib.vcxproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_init.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_init.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_pause.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_pause.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_recv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_recv.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_reset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_reset.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_send.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_send.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_formfree.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_formfree.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_init.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_init.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_wait.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_wait.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_share_init.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_share_init.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_strequal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_strequal.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_unescape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_unescape.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/libcurl-errors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/libcurl-errors.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/libcurl-multi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/libcurl-multi.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/libcurl-share.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/libcurl-share.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/EdelCurlRoot-ca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/certs/EdelCurlRoot-ca.der -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet45/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_cleanup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_cleanup.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_escape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_escape.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_getinfo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_getinfo.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_perform.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_perform.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_setopt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_setopt.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_global_init.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_global_init.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_assign.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_assign.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_fdset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_fdset.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_setopt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_setopt.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_socket.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_socket.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_share_setopt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_share_setopt.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_slist_append.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_slist_append.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_version_info.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_version_info.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/libcurl-tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/libcurl-tutorial.pdf -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet45_x64/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x64_DotNet35_Release.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x86_DotNet35_Release.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_duphandle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_duphandle.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_strerror.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_strerror.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_easy_unescape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_easy_unescape.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_global_cleanup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_global_cleanup.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_global_init_mem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_global_init_mem.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_cleanup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_cleanup.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_info_read.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_info_read.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_perform.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_perform.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_strerror.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_strerror.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_timeout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_timeout.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_share_cleanup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_share_cleanup.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_share_strerror.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_share_strerror.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_slist_free_all.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_slist_free_all.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost-sv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/certs/Server-localhost-sv.der -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost-sv.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/certs/Server-localhost-sv.p12 -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost0h-sv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/certs/Server-localhost0h-sv.der -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost0h-sv.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/certs/Server-localhost0h-sv.p12 -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/vs/vc8/lib/vc8libcurl.vcxproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40_x64/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/bin/Test_x64_DotNet45_Release.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/bin/Test_x86_DotNet45_Release.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_add_handle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_add_handle.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost.nn-sv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/tests/certs/Server-localhost.nn-sv.der -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet40/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_remove_handle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_remove_handle.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/libcurl/curl_multi_socket_action.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/docs/libcurl/curl_multi_socket_action.pdf -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/winbuild/gen_resp_file.bat: -------------------------------------------------------------------------------- 1 | @echo OFF 2 | @del %OUTFILE% 3 | @echo %MACRO_NAME% = \> %OUTFILE% 4 | @for %%i in (%*) do @echo %DIROBJ%/%%i \>> %OUTFILE% 5 | @echo. >> %OUTFILE% 6 | :END 7 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet40_x64/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x64_DotNet45_Release.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x86_DotNet45_Release.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35/bin/x64/Release/Test_x86_DotNet35_Release.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x64_DotNet40_Release.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_code_20121105/bin/Test_x86_DotNet40_Release.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/vms/macro32_exactcase.patch: -------------------------------------------------------------------------------- 1 | macro32_exactcase.exe 2 | SE EC 3 | ^X00000001 4 | RE /I 5 | ^X00012B1D 6 | 'BICB2 #^X00000020,R3' 7 | EXIT 8 | 'BICB2 #^X00000000,R3' 9 | EXI 10 | U 11 | EXI 12 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35/bin/x64/Release/Test_x86_DotNet35_Release.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet35/bin/x64/Release/Test_x86_DotNet35_Release.vshost.exe -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40/bin/x64/Release/Test_x86_DotNet40_Release.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet40/bin/x64/Release/Test_x86_DotNet40_Release.vshost.exe -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/lib/libcurl.vers.in: -------------------------------------------------------------------------------- 1 | HIDDEN 2 | { 3 | local: 4 | __*; 5 | _rest*; 6 | _save*; 7 | }; 8 | 9 | CURL_@CURL_LT_SHLIB_VERSIONED_FLAVOUR@4 10 | { 11 | global: curl_*; 12 | local: *; 13 | }; 14 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/vs/t/lib/vc8_libcurl_prj.foot: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/vs/vc8/lib/_UpgradeReport_Files/UpgradeReport_Plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/vs/vc8/lib/_UpgradeReport_Files/UpgradeReport_Plus.gif -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/server/base64.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | use MIME::Base64 qw(encode_base64); 4 | 5 | my $buf; 6 | while(read(STDIN, $buf, 60*57)) { 7 | my $enc = encode_base64($buf); 8 | print "$enc"; 9 | } 10 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/vs/vc8/lib/_UpgradeReport_Files/UpgradeReport_Minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/curl-7.34.0/vs/vc8/lib/_UpgradeReport_Files/UpgradeReport_Minus.gif -------------------------------------------------------------------------------- /source_20140807/Injection/Injection.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | EXPORTS 3 | UpdateILCodes @1 4 | IsInitialized @2 5 | WaitForIntializationCompletion @3 6 | IsInjectionSucceeded @4 7 | GetErrorMessage @5 8 | __CollectAddress @6 -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet20/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet20/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet20/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet20/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet35/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet35/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40/bin/x64/Release/Test_x86_DotNet40_Release.vshost.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet40/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet40/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet20/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet20/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet20/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet20/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet35/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet35/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet40/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet40/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40_x64/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet40_x64/obj/x64/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet20_x64/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet20_x64/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35_x64/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet35_x64/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40_x64/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet40_x64/obj/x64/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/Linux/RPM/README: -------------------------------------------------------------------------------- 1 | Author: Daniel (I'm not trustworthy, replace this!) 2 | 3 | Paul Marquis's 'make_curl_rpm' script is a fine example on how to automate the 4 | jobs. You need to fill in your own name and email at least. 5 | 6 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet20_x64/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet20_x64/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35_x64/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet35_x64/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40_x64/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evit15/-NET-Modify-IL-Code-during-Run-time/HEAD/source_20140807/Demo/DotNet40_x64/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/vs/t/lib/vc6_libcurl_dsp.foot: -------------------------------------------------------------------------------- 1 | # Begin Group "Resource Files" 2 | 3 | # PROP Default_Filter "" 4 | # Begin Source File 5 | 6 | SOURCE=..\..\..\lib\libcurl.rc 7 | # End Source File 8 | # End Group 9 | # End Target 10 | # End Project 11 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet20/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet45/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/Symbian/group/bld.inf: -------------------------------------------------------------------------------- 1 | // 2 | // libcurl and curl bld.inf file for Symbian OS 3 | // 4 | PRJ_EXPORTS 5 | libcurl.iby /epoc32/rom/include/libcurl.iby 6 | curl.iby /epoc32/rom/include/curl.iby 7 | 8 | PRJ_MMPFILES 9 | libcurl.mmp 10 | curl.mmp 11 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost-sv.dhp: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIGHAoGBAP5mA7oYimErFUulbvNC8V0HwyB62NCj6TZb6YXJwElCksQc8RyHnkrY 3 | 9Wx2+lduFqHjUWalgVF7Gma7CfR/pt+fiU6Jn2vWR2v7KT6hYeRKsJrONJlth+NK 4 | V7/d4zyvleJ/VSp0TuuSxmMMQ6hG3i5YhSGXyCh4h0pl4Wu/hdVTAgEC 5 | -----END DH PARAMETERS----- 6 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet20_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet45_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost.nn-sv.dhp: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIGHAoGBAPrtEVPhZfEczB9JnWXbln79YnTh/V6ehXMWe414wyn/VT1ow25sLEev 3 | H2+eT84aDp5e+TfBSFjA6or96/lyQvsgAE+cE6f6uuw9ApVG2MK+BCn4snxHBb6G 4 | LFQf+9qHZ4BEkpBL60p1fkGu8BM1wXGXEaeYhgGumNA9fm5YJrl7AgEC 5 | -----END DH PARAMETERS----- 6 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost0h-sv.dhp: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIGHAoGBAL/3hRxvWX+Mdyu/aBPU1JeeA5sg4nXtA7B24eCql9Tq53Lks1/HJ5B+ 3 | xSapGAFd+22xhBsNkJihf74oiPEVr9nNoLjFV/DZe259+JYgs+pBTFN+Cp13ALUi 4 | CeZxX2mlxlstD1SBRTKgxA/j4ttR1Chn8knn+RVdFE9YFKCYPyLrAgEC 5 | -----END DH PARAMETERS----- 6 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet20/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet35/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet40/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet45/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet20_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet35_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet40_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/DotNet45_x64/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/DISABLED: -------------------------------------------------------------------------------- 1 | # This file can be used to specify test cases that should not run when all 2 | # test cases are run by runtests.pl. Just add the plain test case numbers, one 3 | # per line. 4 | # Lines starting with '#' letters are treated as comments. 5 | 594 6 | 815 7 | 816 8 | 1209 9 | 1211 10 | 1512 11 | -------------------------------------------------------------------------------- /source_20140807/Injection/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // Injection.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | // TODO: reference any additional headers you need in STDAFX.H 8 | // and not in this file 9 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/EdelCurlRoot-ca.cnf: -------------------------------------------------------------------------------- 1 | [ ca ] 2 | default_ca = EdelCurlRoot 3 | 4 | [ EdelCurlRoot ] 5 | database = EdelCurlRoot-ca.db 6 | certificate = EdelCurlRoot-ca.crt 7 | private_key = EdelCurlRoot-ca.key 8 | crlnumber = EdelCurlRoot-ca.cnt 9 | default_md = sha1 10 | default_days = 365 11 | default_crl_days = 30 12 | -------------------------------------------------------------------------------- /source_code_20121105/Injection/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // Injection.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | // TODO: reference any additional headers you need in STDAFX.H 8 | // and not in this file 9 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/libtest/test75.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | # Check that the length of a given URL is correct 3 | if ( $#ARGV != 1 ) 4 | { 5 | print "Usage: $0 string length\n"; 6 | exit 3; 7 | } 8 | if (length(@ARGV[0]) != @ARGV[1]) 9 | { 10 | print "Given host IP and port not supported\n"; 11 | exit 1; 12 | } 13 | exit 0; 14 | -------------------------------------------------------------------------------- /source_20140807/Injection/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // Including SDKDDKVer.h defines the highest available Windows platform. 4 | 5 | // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and 6 | // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. 7 | 8 | #include 9 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35/Test_DotNet35_VS2010.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40/Test_DotNet40_VS2010.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | -------------------------------------------------------------------------------- /source_code_20121105/Injection/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // Including SDKDDKVer.h defines the highest available Windows platform. 4 | 5 | // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and 6 | // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. 7 | 8 | #include 9 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40_x64/Test_DotNet40_x64_VS2010.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/Symbian/group/libcurl.iby: -------------------------------------------------------------------------------- 1 | // 2 | // libcurl file transfer DLL 3 | // 4 | // Use this file with buildrom to add libcurl to a device ROM 5 | // 6 | 7 | #ifndef LIBCURL_IBY 8 | #define LIBCURL_IBY 9 | 10 | #include 11 | 12 | file=ABI_DIR\BUILD_DIR\libcurl.dll \sys\bin\libcurl.dll 13 | 14 | #endif // LIBCURL_IBY 15 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1395: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unittest 5 | 6 | 7 | 8 | # 9 | # Client-side 10 | 11 | 12 | none 13 | 14 | 15 | unittest 16 | 17 | 18 | Curl_dedotdotify 19 | 20 | 21 | unit1395 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/vs/t/README: -------------------------------------------------------------------------------- 1 | Note: 2 | 3 | Files located in subdirectory 'vs/t' and below are 'templates' used for 4 | the generation of msvc IDE workspace and project files, distributed in 5 | subdirectories 'vs/vc6' and 'vs/vc8'. 6 | 7 | All these template files use UNIX line endings intentionally, in order 8 | to allow proper file generation. Don't convert these to crlf line-ends. 9 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1300: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unittest 5 | llist 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | none 14 | 15 | 16 | unittest 17 | 18 | 19 | llist unit tests 20 | 21 | 22 | unit1300 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/Symbian/group/curl.iby: -------------------------------------------------------------------------------- 1 | // 2 | // curl file transfer utility command-line utility 3 | // 4 | // Use this file with buildrom to add curl to a device ROM 5 | // 6 | 7 | #ifndef CURL_IBY 8 | #define CURL_IBY 9 | 10 | #include 11 | #include 12 | 13 | file=ABI_DIR\BUILD_DIR\curl.exe \sys\bin\curl.exe 14 | 15 | #endif // CURL_IBY 16 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1301: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unittest 5 | curl_strequal 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | none 14 | 15 | 16 | unittest 17 | 18 | 19 | curl_strequal unit tests 20 | 21 | 22 | unit1301 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1302: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unittest 5 | base64 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | none 14 | 15 | 16 | unittest 17 | 18 | 19 | base64 encode/decode unit tests 20 | 21 | 22 | unit1302 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1303: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unittest 5 | Curl_timeleft 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | none 14 | 15 | 16 | unittest 17 | 18 | 19 | Curl_timeleft unit tests 20 | 21 | 22 | unit1303 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /source_code_20121105/Injection/Utility.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | class CUtility 3 | { 4 | public: 5 | static CString ComputeMd5HashForModule(HMODULE hModule); 6 | 7 | static BOOL GetFileVersion(LPWSTR lpszFile, VS_FIXEDFILEINFO * pFixedFileInfo); 8 | 9 | static CString GetFileName(LPCTSTR lpszFilePath); 10 | 11 | static CString GetCurrentDirectory(void); 12 | 13 | static HMODULE GetCurrentModule(void); 14 | }; 15 | 16 | -------------------------------------------------------------------------------- /source_20140807/Injection/PEFileParser.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | CStringA GetVirtualAddresses(LPSTR szDllFile, LPSTR lpszMethods []); 4 | 5 | std::map GetAddresses(HMODULE hModule, LPSTR lpszMethods []); 6 | 7 | VOID GetPdbFileInfo(LPCSTR lpszFilePath 8 | , LPSTR szPdbFileName 9 | , DWORD dwPdbFileNameCch 10 | , LPSTR szPdbGuid 11 | , DWORD dwPdbGuidCch 12 | , LPSTR szChecksum 13 | , DWORD dwChecksumCch 14 | ); -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1132: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | memory-includes 5 | 6 | 7 | 8 | # 9 | # Client-side 10 | 11 | 12 | none 13 | 14 | 15 | 16 | Verify memory #include files in libcurl's C source files 17 | 18 | 19 | 20 | %SRCDIR/mem-include-scan.pl %SRCDIR/../lib 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1396: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unittest 5 | curl_easy_escape 6 | curl_easy_unescape 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | none 15 | 16 | 17 | unittest 18 | 19 | 20 | curl_easy_escape and curl_easy_unescape 21 | 22 | 23 | unit1396 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/libtest/notexists.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | # Check that given arguments do not exist on filesystem. 3 | my $code = 0; 4 | if ($#ARGV < 0) { 5 | print "Usage: $0 file1 [fileN]\n"; 6 | exit 2; 7 | } 8 | while (@ARGV) { 9 | my $fname = shift @ARGV; 10 | if (-e $fname) { 11 | print "Found '$fname' when not supposed to exist.\n"; 12 | $code = 1; 13 | } 14 | } 15 | exit $code; 16 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1119: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | symbols-in-versions 5 | 6 | 7 | 8 | # 9 | # Client-side 10 | 11 | 12 | none 13 | 14 | 15 | 16 | Verify that symbols-in-versions and headers are in sync 17 | 18 | 19 | 20 | %SRCDIR/symbol-scan.pl %SRCDIR/.. ../include/curl 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1307: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unittest 6 | wildcardmatch 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | none 15 | 16 | 17 | unittest 18 | 19 | 20 | internal Curl_fnmatch() testing 21 | 22 | 23 | unit1307 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/srp-verifier-db: -------------------------------------------------------------------------------- 1 | jsmith:34fPk7u.w3R/M1k2sQ9F.04GZqLKAsqDn44CHGu7ML0M8VWwu1p79OLxi6jRhSNdSM46Kx9GRVyJLXz7eok53..A6X5p3NdnMSYX8WwYrDmuseHDr.eua7gjd04S4EoY4ZuKix2.WGAsMTwk86AmTvcqyzqsH7GDhGOHEhjP5zs:lTjBBoK04K9vTKiL10rI/:1 2 | alice:3IIP1g1HDTN6VEUr8DUkMleocoC1cpuFZnmunDaGhMyIsw8LAwCc7ZapWaC66gZSyis4ezSuCqvhsJdwdc.0es2UrH6PBkBQflcQDuC.dEpjhWgAcH2Dw.2qU.E0ApQzLkcKOjXMQ2R6jMBL14kEUPjjHS3aa16yB.Afj3bNPdf:1JxU4GkweUEii6.b0grkzU:1 3 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/CMake/FindZLIB.cmake: -------------------------------------------------------------------------------- 1 | # Locate zlib 2 | include("${CMAKE_ROOT}/Modules/FindZLIB.cmake") 3 | 4 | # starting 2.8 it is better to use standard modules 5 | if(CMAKE_MAJOR_VERSION EQUAL "2" AND CMAKE_MINOR_VERSION LESS "8") 6 | find_library(ZLIB_LIBRARY_DEBUG NAMES zd zlibd zdlld zlib1d ) 7 | if(ZLIB_FOUND AND ZLIB_LIBRARY_DEBUG) 8 | set( ZLIB_LIBRARIES optimized "${ZLIB_LIBRARY}" debug ${ZLIB_LIBRARY_DEBUG}) 9 | endif() 10 | endif() 11 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1394: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unittest 5 | 6 | 7 | 8 | # 9 | # Client-side 10 | 11 | 12 | none 13 | 14 | 15 | unittest 16 | 17 | 18 | unit test for parse_cert_parameter() 19 | 20 | 21 | unit1394 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1305: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unittest 6 | hash 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | none 15 | 16 | 17 | unittest 18 | 19 | 20 | internal hash create/destroy testing 21 | 22 | 23 | unit1305 24 | 25 | 26 | 1305 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1306: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | unittest 6 | hash 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | none 15 | 16 | 17 | unittest 18 | 19 | 20 | internal hash create/add/destroy testing 21 | 22 | 23 | unit1305 24 | 25 | 26 | 1306 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /source_20140807/Injection/Utility.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | class CUtility 3 | { 4 | public: 5 | static BOOL GetFileVersion(LPWSTR lpszFile, VS_FIXEDFILEINFO * pFixedFileInfo); 6 | 7 | static CString GetFileName(LPCTSTR lpszFilePath); 8 | 9 | static CString GetCurrentDirectory(void); 10 | 11 | static CStringA GetResourceContent(LPCSTR lpszResName); 12 | 13 | static void WriteCache(LPCSTR lpszID, LPCSTR lpszContent); 14 | 15 | static CStringA ReadCache(LPCSTR lpszID); 16 | 17 | }; 18 | 19 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test829: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IMAP 5 | CRLF-in-URL 6 | 7 | 8 | 9 | # Client-side 10 | 11 | 12 | imap 13 | 14 | 15 | IMAP with URL-encoded CR LF in the URL 16 | 17 | 18 | imap://%HOSTIP:%IMAPPORT/%0d%0a/829 19 | 20 | 21 | 22 | # 23 | 24 | # 3 - CURLE_URL_MALFORMAT 25 | 26 | 3 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test875: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | POP3 5 | CRLF-in-URL 6 | 7 | 8 | 9 | # Client-side 10 | 11 | 12 | pop3 13 | 14 | 15 | POP3 with URL-encoded CR LF in the URL 16 | 17 | 18 | pop3://%HOSTIP:%POP3PORT/%0d%0a/875 19 | 20 | 21 | 22 | # 23 | 24 | # 3 - CURLE_URL_MALFORMAT 25 | 26 | 3 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test931: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SMTP 5 | CRLF-in-URL 6 | 7 | 8 | 9 | # Client-side 10 | 11 | 12 | smtp 13 | 14 | 15 | SMTP with URL-encoded CR LF in the URL 16 | 17 | 18 | smtp://%HOSTIP:%SMTPPORT/%0d%0a/931 19 | 20 | 21 | 22 | # 23 | 24 | # 3 - CURLE_URL_MALFORMAT 25 | 26 | 3 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/libtest/test307.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | # Determine if the given curl executable supports the 'openssl' SSL engine 3 | if ( $#ARGV != 0 ) 4 | { 5 | print "Usage: $0 curl-executable\n"; 6 | exit 3; 7 | } 8 | if (!open(CURL, "@ARGV[0] -s --engine list|")) 9 | { 10 | print "Can't get SSL engine list\n"; 11 | exit 2; 12 | } 13 | while( ) 14 | { 15 | exit 0 if ( /openssl/ ); 16 | } 17 | close CURL; 18 | print "openssl engine not supported\n"; 19 | exit 1; 20 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1409: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | cmdline 5 | FAILURE 6 | 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | none 15 | 16 | 17 | Pass in string to -C 18 | 19 | 20 | http://%HOSTIP:%HTTPPORT/1409 -C wrong 21 | 22 | 23 | 24 | # 25 | # Verify data after the test has been "shot" 26 | 27 | 28 | 2 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test226: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | FAILURE 6 | 7 | 8 | 9 | # Client-side 10 | 11 | 12 | ftp 13 | 14 | 15 | FTP %0d-code in URL's CWD part 16 | 17 | 18 | ftp://%HOSTIP:%FTPPORT/226%0d 19 | 20 | 21 | 22 | # Verify data after the test has been "shot" 23 | 24 | # 3 == CURLE_URL_MALFORMAT 25 | 26 | 3 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1308: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unittest 5 | curl_formadd 6 | curl_formget 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | none 15 | 16 | 17 | unittest 18 | http 19 | 20 | 21 | formpost unit tests 22 | 23 | 24 | unit1308 25 | 26 | 27 | Piece of the file that is to uploaded as a formpost 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/lib/makefile.amiga: -------------------------------------------------------------------------------- 1 | # 2 | # libcurl Makefile for AmigaOS ... 3 | # 4 | 5 | # change the follow to where you have the AmiTCP SDK v4.3 includes: 6 | 7 | ATCPSDKI= /GG/netinclude 8 | 9 | 10 | CC = m68k-amigaos-gcc 11 | CFLAGS = -I$(ATCPSDKI) -m68020-60 -O2 -msoft-float -noixemul -g -I. -I../include -W -Wall 12 | 13 | include Makefile.inc 14 | OBJS = $(CSOURCES:.c=.o) 15 | 16 | all: $(OBJS) 17 | ar cru libcurl.a $(OBJS) 18 | ranlib libcurl.a 19 | 20 | install: 21 | $(INSTALL) -c ./libcurl.a /lib/libcurl.a 22 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1410: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | cmdline 5 | FAILURE 6 | 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | none 15 | 16 | 17 | Pass in negative number to --max-time 18 | 19 | 20 | http://%HOSTIP:%HTTPPORT/1410 --max-time -4 21 | 22 | 23 | 24 | # 25 | # Verify data after the test has been "shot" 26 | 27 | 28 | 2 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test225: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | FAILURE 6 | 7 | 8 | # Client-side 9 | 10 | 11 | ftp 12 | 13 | 14 | FTP %0a-code in URL's name part 15 | 16 | 17 | ftp://bad%0auser:passwd@%HOSTIP:%FTPPORT/225%0a 18 | 19 | 20 | 21 | # Verify data after the test has been "shot" 22 | 23 | # 3 == CURLE_URL_MALFORMAT 24 | 25 | 3 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1304: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unittest 5 | netrc 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | none 14 | 15 | 16 | unittest 17 | 18 | 19 | netrc parsing unit tests 20 | 21 | 22 | unit1304 23 | 24 | 25 | machine example.com login admin password passwd 26 | machine curl.example.com login none password none 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/EPM/README: -------------------------------------------------------------------------------- 1 | EPM is a free UNIX software/file packaging program that generates distribution 2 | archives from a list of files. EPM Can: 3 | 4 | * Generate portable script-based distribution packages complete with 5 | installation and removal scripts. 6 | * Generate vendor distributions in AIX, BSD, Compaq Tru64, Debian, HP-UX, 7 | IRIX, Red Hat, and Solaris formats. 8 | * Provide a complete, cross-platform software distribution solution for your 9 | applications. 10 | 11 | http://www.easysw.com/epm/ 12 | 13 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/packages/DOS/README: -------------------------------------------------------------------------------- 1 | Gisle Vanem made curl build fine on DOS (and MingW) with djgpp, OpenSSL and his 2 | Watt-32 stack. 3 | 4 | 'make djgpp' in the root curl dir should build it fine. 5 | 6 | Note 1: djgpp 2.04 beta has a sscanf() bug so the URL parsing isn't 7 | done proberly. Use djgpp 2.03 until they fix it. 8 | 9 | Note 2: Compile Watt-32 (and OpenSSL) with the same version of djgpp. 10 | Otherwise things go wrong because things like FS-extensions and 11 | errnos have been changed between releases. 12 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test404: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTPS 5 | FAILURE 6 | 7 | 8 | 9 | # Client-side 10 | 11 | 12 | SSL 13 | 14 | 15 | ftps 16 | 17 | 18 | FTPS with invalid cacert 19 | 20 | 21 | --ftp-ssl-control --cacert moooo ftps://%HOSTIP:%FTPSPORT/ 22 | 23 | 24 | 25 | # Verify data after the test has been "shot" 26 | 27 | 28 | 77 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1329: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP proxy 5 | 6 | 7 | 8 | # 9 | # Client-side 10 | 11 | 12 | http 13 | 14 | 15 | /-prefixed proxy name 16 | 17 | 18 | http://%HOSTIP:%HTTPPORT/we/want/that/page/1329 -x "/server" 19 | 20 | 21 | 22 | # 23 | # Verify data after the test has been "shot" 24 | 25 | # 5 == CURLE_COULDNT_RESOLVE_PROXY 26 | 27 | 5 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test289: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | STOR 6 | Resume 7 | FAILURE 8 | 9 | 10 | 11 | # Client-side 12 | 13 | 14 | ftp 15 | 16 | 17 | FTP resume upload but denied access to local file 18 | 19 | 20 | ftp://%HOSTIP:%FTPPORT/289 -T log/illegal-nonexistent-file -C - 21 | 22 | 23 | 24 | # Verify data after the test has been "shot" 25 | 26 | 27 | 26 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test41: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | HTTP FORMPOST 6 | FAILURE 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 13 | # Client-side 14 | 15 | 16 | http 17 | 18 | 19 | HTTP formpost with missing file 20 | 21 | 22 | http://%HOSTIP:%HTTPPORT/want/41 -F moo=@boo 23 | 24 | 25 | 26 | # Verify data after the test has been "shot" 27 | 28 | 29 | 26 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /source_20140807/Demo/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace HelloWorld_V4 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 Form1()); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1508: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | multi 6 | 7 | 8 | 9 | # Client-side 10 | 11 | 12 | none 13 | 14 | 15 | lib1508 16 | 17 | 18 | Close a multi handle without using it 19 | 20 | 21 | http://%HOSTIP:%HTTPPORT/path/1508 22 | 23 | 24 | 25 | # Verify data after the test has been "shot" 26 | 27 | 28 | We are done 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test201: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | FAILURE 6 | 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | file 19 | 20 | 21 | missing file:// file 22 | 23 | 24 | file://localhost/%PWD/log/non-existant-file.txt 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | 37 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test23: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unsupported protocol 5 | FAILURE 6 | 7 | 8 | # Server-side 9 | 10 | 11 | 12 | 13 | 14 | # Client-side 15 | 16 | 17 | http 18 | 19 | 20 | unsupported protocol:// URL 21 | 22 | 23 | htfp://%HOSTIP:%HTTPPORT/none.htfml 24 | 25 | 26 | 27 | # Verify data after the test has been "shot" 28 | 29 | 30 | 1 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_code_20121105/Demo/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Windows.Forms; 4 | 5 | namespace HelloWorld_V4 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 Form1()); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /source_20140807/Injection/res/5182A0CFB60D40DB90EEF44DEC7ACB932: -------------------------------------------------------------------------------- 1 | LoadedMethodDescIterator::Current=3630907 2 | LoadedMethodDescIterator::LoadedMethodDescIterator=3162877 3 | LoadedMethodDescIterator::Next=3630034 4 | MethodDesc::ContainsGenericVariables=84212 5 | MethodDesc::GetDomain=159875 6 | MethodDesc::GetLoaderModule=42222 7 | MethodDesc::GetNumGenericMethodArgs=84080 8 | MethodDesc::GetWrappedMethodDesc=94080 9 | MethodDesc::HasClassOrMethodInstantiation=75987 10 | MethodDesc::IsGenericMethodDefinition=78150 11 | MethodDesc::Reset=1462697 12 | MethodDesc::StripMethodInstantiation=206454 13 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1234: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {} list 5 | FAILURE 6 | 7 | 8 | # Server-side 9 | 10 | 11 | 12 | # Client-side 13 | 14 | 15 | none 16 | 17 | 18 | abusing {}-globbing 19 | 20 | 21 | "%HOSTIP:%HTTPPORT/1234[0-1]{" "%HOSTIP:%HTTPPORT/{}{}{}{" 22 | 23 | 24 | 25 | # Verify data after the test has been "shot" 26 | 27 | # 3 == CURLE_URL_MALFORMAT 28 | 29 | 3 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test21: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FAILURE 5 | multiple HTTP requests 6 | 7 | 8 | # Server-side 9 | 10 | 11 | 12 | 13 | 14 | # Client-side 15 | 16 | 17 | http 18 | 19 | 20 | use curl with multiple request methods 21 | 22 | 23 | -I -d FOOO -F moo=moo localhost 24 | 25 | 26 | 27 | # Verify data after the test has been "shot" 28 | 29 | 30 | 2 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test597: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | CONNECT_ONLY 6 | 7 | 8 | 9 | # Client-side 10 | 11 | 12 | ftp 13 | 14 | 15 | lib597 16 | 17 | 18 | FTP connect only option 19 | 20 | 21 | 22 | ftp://%HOSTIP:%FTPPORT 23 | 24 | 25 | 26 | 27 | # 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | USER anonymous 32 | PASS ftp@example.com 33 | PWD 34 | QUIT 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test929: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SMTP 5 | NOOP 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | smtp 20 | 21 | 22 | SMTP NOOP (CUSTOMREQUEST) 23 | 24 | 25 | smtp://%HOSTIP:%SMTPPORT/929 -X NOOP -I 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | EHLO 929 34 | NOOP 35 | QUIT 36 | 37 | 38 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet35/bin/x64/Release/Test_x86_DotNet35_Release.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source_20140807/Demo/DotNet40/bin/x64/Release/Test_x86_DotNet40_Release.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test604: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SFTP 5 | FAILURE 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | sftp 14 | 15 | 16 | SFTP retrieval of nonexistent file 17 | 18 | 19 | --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/not-a-valid-file-moooo --insecure 20 | 21 | 22 | 23 | # 24 | # Verify data after the test has been "shot" 25 | 26 | 27 | 78 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test402: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTPS 5 | FAILURE 6 | 7 | 8 | 9 | # Client-side 10 | 11 | 12 | SSL 13 | 14 | 15 | ftp 16 | 17 | 18 | FTP SSL required on non-SSL server 19 | 20 | 21 | -k --ftp-ssl-reqd ftp://%HOSTIP:%FTPPORT/402 22 | 23 | 24 | 25 | # Verify data after the test has been "shot" 26 | 27 | 28 | 64 29 | 30 | 31 | AUTH SSL 32 | AUTH TLS 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test629: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SCP 5 | FAILURE 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | scp 14 | 15 | 16 | SCP invalid user login (password authentication) 17 | 18 | 19 | -u not-a-valid-user: scp://%HOSTIP:%SSHPORT%PWD/irrelevant-file --insecure 20 | 21 | 22 | 23 | # 24 | # Verify data after the test has been "shot" 25 | 26 | 27 | 67 28 | 29 | 30 | disable 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test930: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SMTP 5 | RSET 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | smtp 20 | 21 | 22 | SMTP RSET (CUSTOMREQUEST) 23 | 24 | 25 | smtp://%HOSTIP:%SMTPPORT/930 -X RSET -I 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | EHLO 930 34 | RSET 35 | QUIT 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1220: -------------------------------------------------------------------------------- 1 | 2 | # Server-side 3 | 4 | 5 | 6 | 7 | 8 | # Client-side 9 | 10 | 11 | file 12 | 13 | 14 | file:// URLs with query string 15 | 16 | 17 | file://localhost/%PWD/log/test1220.txt?a_query=foobar#afragment 18 | 19 | 20 | contents in a single file 21 | 22 | 23 | 24 | # Verify data after the test has been "shot" 25 | 26 | 27 | contents in a single file 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test628: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SFTP 5 | FAILURE 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | sftp 14 | 15 | 16 | SFTP invalid user login (password authentication) 17 | 18 | 19 | -u not-a-valid-user: sftp://%HOSTIP:%SSHPORT%PWD/irrelevant-file --insecure 20 | 21 | 22 | 23 | # 24 | # Verify data after the test has been "shot" 25 | 26 | 27 | 67 28 | 29 | 30 | disable 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test305: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTPS 5 | HTTP GET 6 | FAILURE 7 | 8 | 9 | 10 | # Client-side 11 | 12 | 13 | SSL 14 | 15 | 16 | https 17 | 18 | 19 | insecure HTTPS without permission 20 | 21 | 22 | https://%HOSTIP:%HTTPSPORT/want/305 --cacert moooo 23 | 24 | 25 | 26 | # Verify data after the test has been "shot" 27 | 28 | 29 | ^User-Agent:.* 30 | 31 | 32 | 77 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test308: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTPS 5 | HTTP GET 6 | FAILURE 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | OpenSSL 15 | 16 | 17 | https 18 | 19 | 20 | simple HTTPS GET with invalid crypto engine 21 | 22 | 23 | --engine invalid-crypto-engine-xyzzy -k https://%HOSTIP:%HTTPSPORT/308 24 | 25 | 26 | 27 | # 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | 53 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test19: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | connect to non-listen 6 | FAILURE 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | none 19 | 20 | 21 | http 22 | 23 | 24 | attempt connect to non-listening socket 25 | 26 | 27 | %HOSTIP:60000 28 | 29 | 30 | 31 | # Verify data after the test has been "shot" 32 | 33 | 34 | 7 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test322: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTPS 5 | TLS-SRP 6 | FAILURE 7 | 8 | 9 | 10 | # Client-side 11 | 12 | 13 | httptls+srp 14 | 15 | 16 | TLS-SRP 17 | 18 | 19 | TLS-SRP with bad password 20 | 21 | 22 | --insecure --tlsauthtype SRP --tlsuser jsmith --tlspassword badpass https://%HOSTIP:%HTTPTLSSRPPORT 23 | 24 | 25 | 26 | # Verify data after the test has been "shot" 27 | 28 | 29 | 35 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test323: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTPS 5 | TLS-SRP 6 | FAILURE 7 | 8 | 9 | 10 | # Client-side 11 | 12 | 13 | https 14 | 15 | 16 | TLS-SRP 17 | 18 | 19 | TLS-SRP to non-TLS-SRP server 20 | 21 | 22 | --insecure --tlsauthtype SRP --tlsuser jsmith --tlspassword badpass https://%HOSTIP:%HTTPSPORT/want/323 23 | 24 | 25 | 26 | # Verify data after the test has been "shot" 27 | 28 | 29 | 35 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test507: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | multi 6 | FAILURE 7 | non-existing host 8 | 9 | 10 | 11 | # Server-side 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | http 19 | 20 | 21 | multi interface get with non-existing host name 22 | 23 | 24 | lib507 25 | 26 | 27 | http://non-existing-host.haxx.se/ 28 | 29 | 30 | 31 | # Verify data after the test has been "shot" 32 | 33 | 34 | 6 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /source_20140807/Injection/res/7D30549D4DD444F3B5C8D20C9F0066442: -------------------------------------------------------------------------------- 1 | LoadedMethodDescIterator::Current=5127548 2 | LoadedMethodDescIterator::LoadedMethodDescIterator=4647020 3 | LoadedMethodDescIterator::Next=5127716 4 | LoadedMethodDescIterator::Start=5128828 5 | MethodDesc::ContainsGenericVariables=94900 6 | MethodDesc::GetDomain=252364 7 | MethodDesc::GetLoaderModule=13528 8 | MethodDesc::GetNumGenericMethodArgs=104260 9 | MethodDesc::GetWrappedMethodDesc=104308 10 | MethodDesc::HasClassOrMethodInstantiation=144696 11 | MethodDesc::IsGenericMethodDefinition=92712 12 | MethodDesc::Reset=1847472 13 | MethodDesc::StripMethodInstantiation=144816 14 | -------------------------------------------------------------------------------- /source_20140807/Injection/res/B6ECECB98D124A09AE3895D7F0F2F5BC2: -------------------------------------------------------------------------------- 1 | LoadedMethodDescIterator::Current=4941625 2 | LoadedMethodDescIterator::LoadedMethodDescIterator=4792930 3 | LoadedMethodDescIterator::Next=4941721 4 | LoadedMethodDescIterator::Start=4941590 5 | MethodDesc::ContainsGenericVariables=149097 6 | MethodDesc::GetDomain=54454 7 | MethodDesc::GetLoaderModule=746989 8 | MethodDesc::GetNumGenericMethodArgs=59404 9 | MethodDesc::GetWrappedMethodDesc=167439 10 | MethodDesc::HasClassOrMethodInstantiation=59782 11 | MethodDesc::IsGenericMethodDefinition=54181 12 | MethodDesc::Reset=2617645 13 | MethodDesc::StripMethodInstantiation=390622 14 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1069: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | HTTP PUT 6 | HTTP/1.0 7 | 8 | 9 | 10 | # Server-side 11 | 12 | 13 | 14 | # Client-side 15 | 16 | 17 | http 18 | 19 | 20 | HTTP 1.0 PUT from stdin with no content length 21 | 22 | 23 | http://%HOSTIP:%HTTPPORT/bzz/1069 -T - -0 24 | 25 | 26 | this data can't be sent 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | 25 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test20: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | FAILURE 6 | non-existing host 7 | 8 | 9 | 10 | # Server-side 11 | 12 | 13 | 14 | 15 | 16 | # Client-side 17 | 18 | 19 | none 20 | 21 | 22 | http 23 | 24 | 25 | attempt connect to non-existing host name 26 | 27 | 28 | non-existing-host.haxx.se. 29 | 30 | 31 | 32 | # Verify data after the test has been "shot" 33 | 34 | 35 | 6 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test200: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | 6 | 7 | 8 | 9 | 10 | foo 11 | bar 12 | bar 13 | foo 14 | moo 15 | 16 | 17 | 18 | # Client-side 19 | 20 | 21 | file 22 | 23 | 24 | basic file:// file 25 | 26 | 27 | file://localhost/%PWD/log/test200.txt 28 | 29 | 30 | foo 31 | bar 32 | bar 33 | foo 34 | moo 35 | 36 | 37 | 38 | # Verify data after the test has been "shot" 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test321: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTPS 5 | TLS-SRP 6 | FAILURE 7 | 8 | 9 | 10 | # Client-side 11 | 12 | 13 | httptls+srp 14 | 15 | 16 | TLS-SRP 17 | 18 | 19 | TLS-SRP with bad username and password 20 | 21 | 22 | --insecure --tlsauthtype SRP --tlsuser baduser --tlspassword badpass https://%HOSTIP:%HTTPTLSSRPPORT 23 | 24 | 25 | 26 | # Verify data after the test has been "shot" 27 | 28 | 29 | 35 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test324: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTPS 5 | TLS-SRP 6 | FAILURE 7 | 8 | 9 | 10 | # Client-side 11 | 12 | 13 | httptls+srp 14 | 15 | 16 | TLS-SRP 17 | 18 | 19 | TLS-SRP with server cert checking 20 | 21 | # no --insecure 22 | --tlsauthtype SRP --tlsuser jsmith --tlspassword abc https://%HOSTIP:%HTTPTLSSRPPORT/want/323 23 | 24 | 25 | 26 | # Verify data after the test has been "shot" 27 | 28 | 29 | 51 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test605: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SCP 5 | FAILURE 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | scp 14 | 15 | 16 | SCP retrieval of nonexistent file 17 | 18 | 19 | --key curl_client_key --pubkey curl_client_key.pub -u %USER: scp://%HOSTIP:%SSHPORT%PWD/not-a-valid-file-moooo --insecure 20 | 21 | 22 | 23 | # 24 | # Verify data after the test has been "shot" 25 | 26 | 27 | 79 28 | 29 | 30 | disable 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test607: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SCP 5 | FAILURE 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | scp 14 | 15 | 16 | SCP invalid user login 17 | 18 | 19 | --key curl_client_key --pubkey curl_client_key.pub -u not-a-valid-user: scp://%HOSTIP:%SSHPORT%PWD/not-a-valid-file-moooo --insecure 20 | 21 | 22 | 23 | # 24 | # Verify data after the test has been "shot" 25 | 26 | 27 | 67 28 | 29 | 30 | disable 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/Injection/res/0292B49A03B44A7B98D880CA92221D2F1: -------------------------------------------------------------------------------- 1 | LoadedMethodDescIterator::Current=6202256 2 | LoadedMethodDescIterator::LoadedMethodDescIterator=5397856 3 | LoadedMethodDescIterator::Next=6203392 4 | LoadedMethodDescIterator::Start=5210512 5 | MethodDesc::ContainsGenericVariables=1255440 6 | MethodDesc::GetDomain=1238624 7 | MethodDesc::GetLoaderModule=1648176 8 | MethodDesc::GetNumGenericMethodArgs=1806316 9 | MethodDesc::GetWrappedMethodDesc=2001520 10 | MethodDesc::HasClassOrMethodInstantiation=997048 11 | MethodDesc::IsGenericMethodDefinition=1547232 12 | MethodDesc::Reset=6065472 13 | MethodDesc::StripMethodInstantiation=2572416 14 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test606: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SFTP 5 | FAILURE 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | sftp 14 | 15 | 16 | SFTP invalid user login 17 | 18 | 19 | --key curl_client_key --pubkey curl_client_key.pub -u not-a-valid-user: sftp://%HOSTIP:%SSHPORT%PWD/not-a-valid-file-moooo --insecure 20 | 21 | 22 | 23 | # 24 | # Verify data after the test has been "shot" 25 | 26 | 27 | 67 28 | 29 | 30 | disable 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test859: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | POP3 5 | STAT 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | pop3 20 | 21 | 22 | POP3 STAT (CUSTOMREQUEST) 23 | 24 | 25 | pop3://%HOSTIP:%POP3PORT -u user:secret -X STAT -I 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | CAPA 34 | USER user 35 | PASS secret 36 | STAT 37 | QUIT 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test860: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | POP3 5 | NOOP 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | pop3 20 | 21 | 22 | POP3 NOOP (CUSTOMREQUEST) 23 | 24 | 25 | pop3://%HOSTIP:%POP3PORT -u user:secret -X NOOP -I 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | CAPA 34 | USER user 35 | PASS secret 36 | NOOP 37 | QUIT 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test863: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | POP3 5 | RSET 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | pop3 20 | 21 | 22 | POP3 RSET (CUSTOMREQUEST) 23 | 24 | 25 | pop3://%HOSTIP:%POP3PORT -u user:secret -X RSET -I 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | CAPA 34 | USER user 35 | PASS secret 36 | RSET 37 | QUIT 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1200: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GOPHER 5 | INDEX 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | iMenu results error.host 1 14 | 0Selector /bar bar.foo.invalid 70 15 | . 16 | 17 | 18 | 19 | # Client-side 20 | 21 | 22 | gopher 23 | 24 | 25 | Gopher index 26 | 27 | 28 | gopher://%HOSTIP:%GOPHERPORT/1/1200 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | /1200 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test704: -------------------------------------------------------------------------------- 1 | 2 | #based off 19 3 | 4 | 5 | HTTP 6 | SOCKS4 7 | connect to non-listen 8 | FAILURE 9 | 10 | 11 | # Server-side 12 | 13 | 14 | 15 | 16 | 17 | # Client-side 18 | 19 | 20 | http 21 | 22 | 23 | Attempt connect to non-listening SOCKS4 proxy 24 | 25 | 26 | --socks4 %HOSTIP:60000 http://%HOSTIP:%HTTPPORT/704 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | 7 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test705: -------------------------------------------------------------------------------- 1 | 2 | #based off 19 3 | 4 | 5 | HTTP 6 | SOCKS5 7 | connect to non-listen 8 | FAILURE 9 | 10 | 11 | # Server-side 12 | 13 | 14 | 15 | 16 | 17 | # Client-side 18 | 19 | 20 | http 21 | 22 | 23 | Attempt connect to non-listening SOCKS5 proxy 24 | 25 | 26 | --socks5 %HOSTIP:60000 http://%HOSTIP:%HTTPPORT/705 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | 7 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test923: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SMTP 5 | VRFY 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | 250 14 | 15 | 16 | 17 | # 18 | # Client-side 19 | 20 | 21 | smtp 22 | 23 | 24 | SMTP VRFY 25 | 26 | 27 | smtp://%HOSTIP:%SMTPPORT/923 --mail-rcpt recipient 28 | 29 | 30 | 31 | # 32 | # Verify data after the test has been "shot" 33 | 34 | 35 | EHLO 923 36 | VRFY recipient 37 | QUIT 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1023: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | curl-config 5 | 6 | 7 | 8 | # 9 | # Server-side 10 | 11 | 12 | 13 | # 14 | # Client-side 15 | 16 | 17 | none 18 | 19 | 20 | Compare curl --version with curl-config --vernum 21 | 22 | 23 | --version 24 | 25 | 26 | %SRCDIR/libtest/test1022.pl ../curl-config log/stdout1023 vernum 27 | 28 | 29 | 30 | # 31 | # Verify data after the test has been "shot" 32 | 33 | 34 | 0 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test203: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | 6 | 7 | 8 | # Server-side 9 | 10 | 11 | foo 12 | bar 13 | bar 14 | foo 15 | moo 16 | 17 | 18 | 19 | # Client-side 20 | 21 | 22 | file 23 | 24 | 25 | file:/path URL with a single slash 26 | 27 | 28 | file:%PWD/log/test203.txt 29 | 30 | 31 | foo 32 | bar 33 | bar 34 | foo 35 | moo 36 | 37 | 38 | 39 | # Verify data after the test has been "shot" 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test283: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TFTP 5 | TFTP RRQ 6 | FAILURE 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | tftp 15 | 16 | 17 | TFTP retrieve on invalid file 18 | 19 | 20 | tftp://%HOSTIP:%TFTPPORT//invalid-file --trace-ascii log/traceit 21 | 22 | 23 | 24 | # 25 | # Verify pseudo protocol after the test has been "shot" 26 | 27 | 28 | 69 29 | 30 | 31 | opcode: 1 32 | filename: /invalid-file 33 | mode: octet 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /source_code_20121105/Injection/SymbolAddressCache.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | class CSymbolAddressCache 4 | { 5 | public: 6 | static BOOL TryCache(void); 7 | 8 | static void GenerateJitCache(void); 9 | static void GenerateClrCache(void); 10 | 11 | private: 12 | static CString s_strJitModuleMd5Hash; 13 | static CString s_strClrModuleMd5Hash; 14 | 15 | static std::map LoadCache(LPCTSTR lpszMd5Hash); 16 | static BOOL TryLoadPredefinedCache(LPCTSTR lpszMd5Hash, std::map & mpOffset); 17 | static BOOL CSymbolAddressCache::ParseContent(CString strContent, std::map & mpOffset); 18 | }; 19 | 20 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1013: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | curl-config 5 | 6 | 7 | 8 | # 9 | # Server-side 10 | 11 | 12 | 13 | # 14 | # Client-side 15 | 16 | 17 | none 18 | 19 | 20 | Compare curl --version with curl-config --protocols 21 | 22 | 23 | --version 24 | 25 | 26 | %SRCDIR/libtest/test1013.pl ../curl-config log/stdout1013 protocols 27 | 28 | 29 | 30 | # 31 | # Verify data after the test has been "shot" 32 | 33 | 34 | 0 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1014: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | curl-config 5 | 6 | 7 | 8 | # 9 | # Server-side 10 | 11 | 12 | 13 | # 14 | # Client-side 15 | 16 | 17 | none 18 | 19 | 20 | Compare curl --version with curl-config --features 21 | 22 | 23 | --version 24 | 25 | 26 | %SRCDIR/libtest/test1013.pl ../curl-config log/stdout1014 features 27 | 28 | 29 | 30 | # 31 | # Verify data after the test has been "shot" 32 | 33 | 34 | 0 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1022: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | curl-config 5 | 6 | 7 | 8 | # 9 | # Server-side 10 | 11 | 12 | 13 | # 14 | # Client-side 15 | 16 | 17 | none 18 | 19 | 20 | Compare curl --version with curl-config --version 21 | 22 | 23 | --version 24 | 25 | 26 | %SRCDIR/libtest/test1022.pl ../curl-config log/stdout1022 version 27 | 28 | 29 | 30 | # 31 | # Verify data after the test has been "shot" 32 | 33 | 34 | 0 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test509: -------------------------------------------------------------------------------- 1 | 2 | # 3 | # Server-side 4 | 5 | 6 | 7 | # Client-side 8 | 9 | 10 | none 11 | 12 | # tool is what to use instead of 'curl' 13 | 14 | lib509 15 | 16 | 17 | 18 | initialization with memory callbacks and actual usage 19 | 20 | 21 | nothing 22 | 23 | 24 | 25 | # 26 | # Verify data after the test has been "shot" 27 | 28 | 29 | seen custom_calloc() 30 | seen custom_malloc() 31 | seen custom_realloc() 32 | seen custom_free() 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test858: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | POP3 5 | DELE 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | pop3 20 | 21 | 22 | POP3 DELE message (CUSTOMREQUEST) 23 | 24 | 25 | pop3://%HOSTIP:%POP3PORT/858 -u user:secret -X DELE -I 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | CAPA 34 | USER user 35 | PASS secret 36 | DELE 858 37 | QUIT 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test113: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | FAILURE 6 | 7 | 8 | # Server-side 9 | 10 | 11 | REPLY USER 314 bluah you fewl! 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | ftp 19 | 20 | 21 | FTP download, failed login: USER not valid 22 | 23 | 24 | ftp://%HOSTIP:%FTPPORT/113 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | 67 32 | 33 | 34 | USER anonymous 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test76: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FAILURE 5 | 6 | 7 | # 8 | # Server-side 9 | 10 | 11 | 12 | # 13 | # Client-side 14 | 15 | 16 | none 17 | 18 | 19 | http 20 | 21 | 22 | HTTP, -O with no file name part in the URL 23 | 24 | 25 | http://%HOSTIP:%HTTPPORT/76/ -O 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | ^User-Agent:.* 34 | 35 | 36 | 23 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test928: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SMTP 5 | HELP 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | 214-This server supports the following commands: 14 | 214 HELO EHLO RCPT DATA RSET MAIL VRFY EXPN QUIT HELP 15 | 16 | 17 | 18 | # 19 | # Client-side 20 | 21 | 22 | smtp 23 | 24 | 25 | SMTP HELP 26 | 27 | 28 | smtp://%HOSTIP:%SMTPPORT/928 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | EHLO 928 37 | HELP 38 | QUIT 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1000: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | PASV 6 | LIST 7 | NOBODY 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | 16 | 17 | # 18 | # Client-side 19 | 20 | 21 | ftp 22 | 23 | 24 | FTP dir list PASV with -I 25 | 26 | 27 | ftp://%HOSTIP:%FTPPORT/1000/ -I 28 | 29 | 30 | 31 | # 32 | # Verify data after the test has been "shot" 33 | 34 | 35 | USER anonymous 36 | PASS ftp@example.com 37 | PWD 38 | CWD 1000 39 | QUIT 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test231: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | 6 | 7 | 8 | # Server-side 9 | 10 | # 16 bytes to check 11 | 12 | B01234567 13 | C01234567 14 | 15 | 16 | 17 | # Client-side 18 | 19 | 20 | file 21 | 22 | 23 | file:// with resume 24 | 25 | 26 | file://localhost/%PWD/log/test231.txt -C 10 27 | 28 | 29 | A01234567 30 | B01234567 31 | C01234567 32 | 33 | 34 | 35 | # Verify data after the test has been "shot" 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test136: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | EPSV 6 | RETR 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 0123456789abcdef 13 | 14 | 15 | 16 | # Client-side 17 | 18 | 19 | ftp 20 | 21 | 22 | FTP with user and no password 23 | 24 | 25 | -u user: ftp://%HOSTIP:%FTPPORT/136 26 | 27 | 28 | 29 | # Verify data after the test has been "shot" 30 | 31 | 32 | USER user 33 | PASS 34 | PWD 35 | EPSV 36 | TYPE I 37 | SIZE 136 38 | RETR 136 39 | QUIT 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test204: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | 6 | 7 | 8 | # no Server-side 9 | 10 | # Client-side 11 | 12 | 13 | file 14 | 15 | 16 | "upload" with file:// 17 | 18 | 19 | file://localhost/%PWD/log/result204.txt -T log/upload204.txt 20 | 21 | 22 | data 23 | in 24 | file 25 | to 26 | write 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | data 34 | in 35 | file 36 | to 37 | write 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test205: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | FAILURE 6 | 7 | 8 | 9 | # no Server-side 10 | 11 | # Client-side 12 | 13 | 14 | file 15 | 16 | 17 | "upload" with file:// 18 | 19 | 20 | file://localhost/%PWD/log/nonexisting/result205.txt -T log/upload205.txt 21 | 22 | 23 | data 24 | in 25 | file 26 | to 27 | write 28 | 29 | 30 | 31 | # Verify data after the test has been "shot" 32 | 33 | # 23 => CURLE_WRITE_ERROR 34 | 35 | 23 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test543: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | curl_easy_escape 5 | 6 | 7 | # Server-side 8 | 9 | # Client-side 10 | 11 | 12 | none 13 | 14 | 15 | lib543 16 | 17 | 18 | curl_easy_escape 19 | 20 | 21 | - 22 | 23 | 24 | 25 | 26 | # Verify data after the test has been "shot" 27 | # 28 | # There's no MTDM in the protocol here since this code doesn't ask for the 29 | # time/date of the file 30 | 31 | 32 | %9C%26K%3DI%04%A1%01%E0%D8%7C%20%B7%EFS%29%FA%1DW%E1 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test632: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SFTP 5 | FAILURE 6 | server key check 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | none 15 | 16 | 17 | sftp 18 | 19 | 20 | SFTP syntactically invalid host key 21 | 22 | 23 | --hostpubmd5 00 --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/log/irrelevant-file --insecure 24 | 25 | 26 | 27 | # 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | 2 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1236: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | globbing 5 | FAILURE 6 | 7 | 8 | # Server-side 9 | 10 | 11 | 12 | # Client-side 13 | 14 | 15 | none 16 | 17 | 18 | [] globbing overflowing the range counter 19 | 20 | # 2^62 == 4611686018427387904 21 | 22 | "%HOSTIP:%HTTPPORT/1234[0-1]{" "%HOSTIP:%HTTPPORT/[1-4611686018427387904][1-4611686018427387904]" 23 | 24 | 25 | 26 | # Verify data after the test has been "shot" 27 | 28 | # 3 == CURLE_URL_MALFORMAT 29 | 30 | 3 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1016: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | Range 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | # Client-side 15 | 16 | 17 | none 18 | 19 | 20 | file 21 | 22 | 23 | X-Y range on a file:// URL to stdout 24 | 25 | 26 | -r 1-4 file://localhost/%PWD/log/test1016.txt 27 | 28 | 29 | 1234567890 30 | 31 | 32 | 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | 2345 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1018: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | Range 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | # Client-side 15 | 16 | 17 | none 18 | 19 | 20 | file 21 | 22 | 23 | X-X range on a file:// URL to stdout 24 | 25 | 26 | -r 4-4 file://localhost/%PWD/log/test1018.txt 27 | 28 | 29 | 1234567890 30 | 31 | 32 | 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | 5 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test811: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IMAP 5 | CREATE 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | imap 20 | 21 | 22 | IMAP CREATE mailbox (CUSTOMREQUEST) 23 | 24 | 25 | imap://%HOSTIP:%IMAPPORT -u user:secret -X 'CREATE 811' 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | A001 CAPABILITY 34 | A002 LOGIN user secret 35 | A003 CREATE 811 36 | A004 LOGOUT 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test812: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IMAP 5 | DELETE 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | imap 20 | 21 | 22 | IMAP DELETE mailbox (CUSTOMREQUEST) 23 | 24 | 25 | imap://%HOSTIP:%IMAPPORT -u user:secret -X 'DELETE 812' 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | A001 CAPABILITY 34 | A002 LOGIN user secret 35 | A003 DELETE 812 36 | A004 LOGOUT 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test925: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SMTP 5 | VRFY 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | 252 Send some mail and I'll try my best 14 | 15 | 16 | 17 | # 18 | # Client-side 19 | 20 | 21 | smtp 22 | 23 | 24 | SMTP external VRFY 25 | 26 | 27 | smtp://%HOSTIP:%SMTPPORT/925 --mail-rcpt user@example.net 28 | 29 | 30 | 31 | # 32 | # Verify data after the test has been "shot" 33 | 34 | 35 | EHLO 925 36 | VRFY user@example.net 37 | QUIT 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/vs/vc6/lib/vc6libcurl.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "libcurl"=".\vc6libcurl.dsp" - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test114: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | FAILURE 6 | 7 | 8 | # Server-side 9 | 10 | 11 | REPLY PASS 314 bluah you f00l! 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | ftp 19 | 20 | 21 | FTP download, failed login: PASS not valid 22 | 23 | 24 | ftp://%HOSTIP:%FTPPORT/114 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | 67 32 | 33 | 34 | USER anonymous 35 | PASS ftp@example.com 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test182: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | 6 | 7 | 8 | # Server-side 9 | 10 | 11 | 12 | 13 | 0 14 | 15 | 16 | 17 | # Client-side 18 | 19 | 20 | ftp 21 | 22 | 23 | FTP download an empty file 24 | 25 | 26 | ftp://%HOSTIP:%FTPPORT/182 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | USER anonymous 34 | PASS ftp@example.com 35 | PWD 36 | EPSV 37 | TYPE I 38 | SIZE 182 39 | RETR 182 40 | QUIT 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test405: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTPS 5 | FAILURE 6 | 7 | 8 | 9 | # Client-side 10 | 11 | 12 | SSL 13 | 14 | 15 | ftp 16 | 17 | 18 | FTPS operation to FTP port 19 | 20 | 21 | -m 5 -k ftps://%HOSTIP:%FTPPORT/path/to/file/405 22 | 23 | 24 | 25 | # Verify data after the test has been "shot" 26 | 27 | # error code 35 is CURLE_SSL_CONNECT_ERROR 28 | # GnuTLS seems to not fail on its handshake but instead times out which gives 29 | # error 28 30 | 31 | 35,28 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/vs/vc6/src/vc6curltool.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "curltool"=".\vc6curltool.dsp" - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test501: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | missing URL 5 | 6 | 7 | # 8 | # Server-side 9 | 10 | 11 | 12 | # Client-side 13 | 14 | 15 | none 16 | 17 | 18 | http 19 | 20 | # tool is what to use instead of 'curl' 21 | 22 | lib501 23 | 24 | 25 | 26 | simple libcurl attempt operation without URL set 27 | 28 | 29 | http://%HOSTIP:%HTTPPORT/501 30 | 31 | 32 | 33 | # 34 | # Verify data after the test has been "shot" 35 | 36 | 37 | 3 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test630: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SFTP 5 | FAILURE 6 | server key check 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | sftp 15 | 16 | 17 | SFTP incorrect host key 18 | 19 | 20 | --hostpubmd5 00000000000000000000000000000000 --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/log/irrelevant-file --insecure 21 | 22 | 23 | 24 | # 25 | # Verify data after the test has been "shot" 26 | 27 | 28 | 51 29 | 30 | 31 | disable 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test631: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SCP 5 | FAILURE 6 | server key check 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | scp 15 | 16 | 17 | SCP incorrect host key 18 | 19 | 20 | --hostpubmd5 00000000000000000000000000000000 --key curl_client_key --pubkey curl_client_key.pub -u %USER: scp://%HOSTIP:%SSHPORT%PWD/log/irrelevant-file --insecure 21 | 22 | 23 | 24 | # 25 | # Verify data after the test has been "shot" 26 | 27 | 28 | 51 29 | 30 | 31 | disable 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test813: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IMAP 5 | RENAME 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | imap 20 | 21 | 22 | IMAP RENAME mailbox (CUSTOMREQUEST) 23 | 24 | 25 | imap://%HOSTIP:%IMAPPORT -u user:secret -X 'RENAME 666 813' 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | A001 CAPABILITY 34 | A002 LOGIN user secret 35 | A003 RENAME 666 813 36 | A004 LOGOUT 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test817: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IMAP 5 | COPY 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | imap 20 | 21 | 22 | IMAP COPY message to mailbox (CUSTOMREQUEST) 23 | 24 | 25 | imap://%HOSTIP:%IMAPPORT -u user:secret -X 'COPY 123 817' 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | A001 CAPABILITY 34 | A002 LOGIN user secret 35 | A003 COPY 123 817 36 | A004 LOGOUT 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1084: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | HTTP GET 6 | --interface 7 | FAILURE 8 | non-existing host 9 | 10 | 11 | 12 | # 13 | # Server-side 14 | 15 | 16 | 17 | # 18 | # Client-side 19 | 20 | 21 | http 22 | 23 | 24 | none 25 | 26 | 27 | HTTP GET with invalid --interface 28 | 29 | 30 | http://%HOSTIP:%HTTPPORT/1084 --interface non-existing-host.haxx.se. 31 | 32 | 33 | 34 | # 35 | # Verify data after the test has been "shot" 36 | 37 | 38 | 45 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test191: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | 6 | 7 | 8 | # Server-side 9 | 10 | 11 | data in file 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | ftp 19 | 20 | 21 | FTP URL with ?-letters in username and password 22 | 23 | 24 | "ftp://use%3fr:pass%3fword@%HOSTIP:%FTPPORT/191" 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | USER use?r 32 | PASS pass?word 33 | PWD 34 | EPSV 35 | TYPE I 36 | SIZE 191 37 | RETR 191 38 | QUIT 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test814: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IMAP 5 | CHECK 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | 15 | # 16 | # Client-side 17 | 18 | 19 | imap 20 | 21 | 22 | IMAP CHECK mailbox (CUSTOMREQUEST) 23 | 24 | 25 | imap://%HOSTIP:%IMAPPORT/814 -u user:secret -X 'CHECK' 26 | 27 | 28 | 29 | # 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | A001 CAPABILITY 34 | A002 LOGIN user secret 35 | A003 SELECT 814 36 | A004 CHECK 37 | A005 LOGOUT 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1017: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | Range 6 | 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | none 19 | 20 | 21 | file 22 | 23 | 24 | 0-Y range on a file:// URL to stdout 25 | 26 | 27 | -r 0-3 file://localhost/%PWD/log/test1017.txt 28 | 29 | 30 | 1234567890 31 | 32 | 33 | 34 | # Verify data after the test has been "shot" 35 | 36 | 37 | 1234 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test104: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | NOBODY 6 | 7 | 8 | # Server-side 9 | 10 | 11 | 51 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | ftp 19 | 20 | 21 | FTP --head to get file size only 22 | 23 | 24 | ftp://%HOSTIP:%FTPPORT/a/path/104 --head 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | USER anonymous 32 | PASS ftp@example.com 33 | PWD 34 | CWD a 35 | CWD path 36 | MDTM 104 37 | TYPE I 38 | SIZE 104 39 | REST 0 40 | QUIT 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test271: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TFTP 5 | TFTP RRQ 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | a chunk of 14 | data 15 | returned 16 | to client 17 | 18 | 19 | 20 | # 21 | # Client-side 22 | 23 | 24 | tftp 25 | 26 | 27 | TFTP retrieve 28 | 29 | 30 | tftp://%HOSTIP:%TFTPPORT//271 --trace-ascii log/traceit 31 | 32 | 33 | 34 | # 35 | # Verify pseudo protocol after the test has been "shot" 36 | 37 | 38 | opcode: 1 39 | filename: /271 40 | mode: octet 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1201: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GOPHER 5 | SELECTOR 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | iMenu results error.host 1 14 | 0Selector /selector/SELECTOR /bar bar.foo.invalid 70 15 | . 16 | 17 | 18 | 19 | # Client-side 20 | 21 | 22 | gopher 23 | 24 | 25 | Gopher selector 26 | 27 | 28 | gopher://%HOSTIP:%GOPHERPORT/1/selector/SELECTOR/1201 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | /selector/SELECTOR/1201 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test195: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | 6 | 7 | 8 | # Server-side 9 | 10 | 11 | REPLY PASS 530 temporarily not available 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | ftp 19 | 20 | 21 | FTP response 530 after PASS, temporarily not allowed access 22 | 23 | 24 | ftp://%HOSTIP:%FTPPORT/195 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | 67 32 | 33 | 34 | USER anonymous 35 | PASS ftp@example.com 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test66: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | HTTP GET 6 | 7 | 8 | # Server-side 9 | 10 | 11 | no headers swsclose 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | http 19 | 20 | 21 | HTTP GET without headers in the response 22 | 23 | 24 | http://%HOSTIP:%HTTPPORT/66 25 | 26 | 27 | 28 | # 29 | # Verify data after the test has been "shot" 30 | 31 | 32 | ^User-Agent:.* 33 | 34 | 35 | GET /66 HTTP/1.1 36 | Host: %HOSTIP:%HTTPPORT 37 | Accept: */* 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test702: -------------------------------------------------------------------------------- 1 | 2 | #based off 19 3 | 4 | 5 | HTTP 6 | SOCKS4 7 | connect to non-listen 8 | FAILURE 9 | 10 | 11 | # Server-side 12 | 13 | 14 | 15 | 16 | 17 | # Client-side 18 | 19 | 20 | socks4 21 | 22 | 23 | http 24 | 25 | 26 | Attempt connect to non-listening HTTP server via SOCKS4 proxy 27 | 28 | 29 | --socks4 %HOSTIP:%SOCKSPORT http://%HOSTIP:60000 30 | 31 | 32 | 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | 7 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test703: -------------------------------------------------------------------------------- 1 | 2 | #based off 19 3 | 4 | 5 | HTTP 6 | SOCKS5 7 | connect to non-listen 8 | FAILURE 9 | 10 | 11 | # Server-side 12 | 13 | 14 | 15 | 16 | 17 | # Client-side 18 | 19 | 20 | socks5 21 | 22 | 23 | http 24 | 25 | 26 | Attempt connect to non-listening HTTP server via SOCKS5 proxy 27 | 28 | 29 | --socks5 %HOSTIP:%SOCKSPORT http://%HOSTIP:60000 30 | 31 | 32 | 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | 7 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost-sv.csr: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBkzCB/QIBADBUMQswCQYDVQQGEwJOTjExMC8GA1UECgwoRWRlbCBDdXJsIEFy 3 | Y3RpYyBJbGx1ZGl1bSBSZXNlYXJjaCBDbG91ZDESMBAGA1UEAwwJbG9jYWxob3N0 4 | MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwJ3kmLLnk0YEKCdJ2/prhBWgB 5 | s3J3lzjkYBxxnZn3JnshtW2qnxR2B2ykKi197vZviljEk97+oSUP/1dJwNmU2Qd5 6 | v4xt+vEYgmegP9cxA4LsuTlpB+zskxdbGnKRk7JrmGZj/mEp562GDgS6v4tVV2Gl 7 | SvbK58bRuGVCq2dkFwIDAQABoAAwDQYJKoZIhvcNAQELBQADgYEAlIivGkhU8iph 8 | eZQAaiwakIwPx1TPA3+Dl4tbStTr3Ludd8rjZMGPRXKU+wjvfhCmDlyk90yOun2C 9 | lPIT8W/ibXNgRF1vz+eFofjM0hZtNPOX4G18wwD5y0OTr7obyqJPKAZsJZh6L3YE 10 | aARr27RCoFv92hFwVr181wAU+bVCekA= 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1020: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | Range 6 | 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | none 19 | 20 | 21 | file 22 | 23 | 24 | -Y range on a file:// URL to stdout 25 | 26 | 27 | -r -9 file://localhost/%PWD/log/test1020.txt 28 | 29 | 30 | 1234567890 31 | 1234567890 32 | 33 | 34 | 35 | # Verify data after the test has been "shot" 36 | 37 | 38 | 34567890 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test125: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | FAILURE 6 | 7 | 8 | # Server-side 9 | 10 | 11 | REPLY CWD 314 bluah you f00l! 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | ftp 19 | 20 | 21 | FTP download, failed CWD 22 | 23 | 24 | ftp://%HOSTIP:%FTPPORT/path/to/file/125 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | 9 32 | 33 | 34 | USER anonymous 35 | PASS ftp@example.com 36 | PWD 37 | CWD path 38 | QUIT 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test272: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | PASV 6 | RETR 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 213 20040101121212 13 | 14 | 15 | 16 | # Client-side 17 | 18 | 19 | ftp 20 | 21 | 22 | FTP timed conditioned get file with identical time stamp 23 | 24 | 25 | ftp://%HOSTIP:%FTPPORT/272 -z "2004 jan 1 12:12:12 UTC" 26 | 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | USER anonymous 34 | PASS ftp@example.com 35 | PWD 36 | MDTM 272 37 | QUIT 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/Injection/Injection_VS2010.vcxproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(SolutionDir)bin\Test_x86_DotNet40_Release.exe 5 | WindowsLocalDebugger 6 | 7 | 8 | L:\HookDotNet\bin\Test_x64_DotNet20_Release.exe 9 | WindowsLocalDebugger 10 | 11 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Index to Curl documentation 5 | 6 | 7 | 8 |

Index to Curl documentation

9 | 10 |

Programs

11 | curl-config 12 |
curl 13 | 14 |

Tutorial

15 | The Art Of Scripting HTTP Requests Using Curl (plain text) 16 | 17 |

libcurl

18 | See the libcurl section 19 | 20 | 21 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost0h-sv.csr: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBkzCB/QIBADBUMQswCQYDVQQGEwJOTjExMC8GA1UECgwoRWRlbCBDdXJsIEFy 3 | Y3RpYyBJbGx1ZGl1bSBSZXNlYXJjaCBDbG91ZDESMBAGA1UEAwwJbG9jYWxob3N0 4 | MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDMqZErIuiQK+VM3K5t2kzzMsyl 5 | aGdaO7mGo5WIPuhjw+0AYBkDK11bVoraIV5xXNHj3lEYwRcUsTOQAFya5XMLqIic 6 | 0AtUvOo6Od32ZYFLKZlMcdP3aX+A6OhtYUGDh+usLL0P6xv9ojeXbTFWuktR3bEB 7 | 64n4Jd5bo+WyP0x3UwIDAQABoAAwDQYJKoZIhvcNAQELBQADgYEAPor+2apn3kPJ 8 | ZdjyyT/iXETRTrN87PuBaujcV+oVeVSWW+YgGUzDHi+RkEKTxWdz3leW2goE41X9 9 | 2D/n66ASQGs1x8wXwIMIX83MjkWtjqdfcrJVi1l6T7NjzZt6EyJdvreRntCUu8zc 10 | J5tK3rl/tIeudKUE2COc0Ngu9JUB1j8= 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1019: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | Range 6 | 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | none 19 | 20 | 21 | file 22 | 23 | 24 | X- range on a file:// URL to stdout 25 | 26 | 27 | -r 7- file://localhost/%PWD/log/test1019.txt 28 | 29 | 30 | 1234567890 31 | 1234567890 32 | 33 | 34 | 35 | # Verify data after the test has been "shot" 36 | 37 | 38 | 890 39 | 1234567890 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test143: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | RETR 6 | type= 7 | 8 | 9 | # Server-side 10 | 11 | 12 | bla bla bla 13 | 14 | 15 | 16 | # Client-side 17 | 18 | 19 | ftp 20 | 21 | 22 | FTP URL with type=a 23 | 24 | 25 | "ftp://%HOSTIP:%FTPPORT/%2ftmp/moo/143;type=a" 26 | 27 | 28 | 29 | # Verify data after the test has been "shot" 30 | 31 | 32 | USER anonymous 33 | PASS ftp@example.com 34 | PWD 35 | CWD /tmp 36 | CWD moo 37 | EPSV 38 | TYPE A 39 | SIZE 143 40 | RETR 143 41 | QUIT 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test202: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | 6 | 7 | 8 | # Server-side 9 | 10 | 11 | 12 | 13 | 14 | # Client-side 15 | 16 | 17 | file 18 | 19 | 20 | two file:// URLs to stdout 21 | 22 | 23 | file://localhost/%PWD/log/test202.txt FILE://localhost/%PWD/log/test202.txt 24 | 25 | 26 | contents in a single file 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | contents in a single file 34 | contents in a single file 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/Server-localhost.nn-sv.csr: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE REQUEST----- 2 | MIIBlzCCAQACAQAwVzELMAkGA1UEBhMCTk4xMTAvBgNVBAoMKEVkZWwgQ3VybCBB 3 | cmN0aWMgSWxsdWRpdW0gUmVzZWFyY2ggQ2xvdWQxFTATBgNVBAMMDGxvY2FsaG9z 4 | dC5ubjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA09RO22NcPzo6XjgJlOZN 5 | cJ0Nr0nmgl0Ht/XNoN+vcfHPv9Wava98eF1VPxS9uywOc53WgprV5vYhXQiSonFf 6 | gF9czvDCNzd5D0091PKAbUc2RdHSi3ouEnFLR4b1jJmv5w7PtclNenX3snQMQeOr 7 | uyydb1QIE1o673wn9z8LC3ECAwEAAaAAMA0GCSqGSIb3DQEBCwUAA4GBAM5PenDC 8 | AtDhzdVKrX6DcJINWck5XFEnvWQksSYU7iDeiQVycQxR+LYKGZiy04u+9C+MN7eq 9 | JmHAIi+88r7/ZaGJLujqSUOJn8ocZ+vwhJOwh2XBhhLaCjIW/H05g0aNlk80Ye6m 10 | OA9DCIZUINF0lDQaJCpKXxwNVcz4Rifp5/9T 11 | -----END CERTIFICATE REQUEST----- 12 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test290: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | --max-filesize 6 | 7 | 8 | # Server-side 9 | 10 | 11 | 85 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | ftp 19 | 20 | 21 | FTP download maximum filesize exceeded 22 | 23 | 24 | ftp://%HOSTIP:%FTPPORT/290 --max-filesize 30 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | 63 32 | 33 | 34 | USER anonymous 35 | PASS ftp@example.com 36 | PWD 37 | EPSV 38 | TYPE I 39 | SIZE 290 40 | QUIT 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /source_code_20121105/Injection/Injection_VS2010.vcxproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(SolutionDir)bin\Test_x86_DotNet40_Release.exe 5 | WindowsLocalDebugger 6 | 7 | 8 | L:\HookDotNet\bin\Test_x64_DotNet20_Release.exe 9 | WindowsLocalDebugger 10 | 11 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/certs/EdelCurlRoot-ca.prm: -------------------------------------------------------------------------------- 1 | extensions = x509v3 2 | [ req ] 3 | default_bits = 2048 4 | distinguished_name = req_DN 5 | default_md = sha256 6 | string_mask = utf8only 7 | [ req_DN ] 8 | countryName = "Country Name" 9 | countryName_value = NN 10 | organizationName = "Organization Name" 11 | organizationName_value = Edel Curl Arctic Illudium Research Cloud 12 | commonName = "Common Name" 13 | commonName_value = Nothern Nowhere Trust Anchor 14 | [ x509v3 ] 15 | basicConstraints = critical,CA:true 16 | keyUsage = critical,keyCertSign,cRLSign 17 | subjectKeyIdentifier = hash 18 | 19 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test111: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | EPSV 6 | Resume 7 | FAILURE 8 | 9 | 10 | # Server-side 11 | 12 | 13 | 85 14 | 15 | 16 | 17 | # Client-side 18 | 19 | 20 | ftp 21 | 22 | 23 | FTP download resume beyond file size 24 | 25 | 26 | ftp://%HOSTIP:%FTPPORT/111 -C 2000 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | 36 34 | 35 | 36 | USER anonymous 37 | PASS ftp@example.com 38 | PWD 39 | EPSV 40 | TYPE I 41 | SIZE 111 42 | QUIT 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1203: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GOPHER-ipv6 5 | IPv6 6 | INDEX 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | iMenu results error.host 1 15 | 0Selector /bar bar.foo.invalid 70 16 | . 17 | 18 | 19 | 20 | # Client-side 21 | 22 | 23 | ipv6 24 | 25 | 26 | gopher-ipv6 27 | 28 | 29 | Gopher IPv6 index 30 | 31 | 32 | -g gopher://%HOST6IP:%GOPHER6PORT/1/moo/1203 33 | 34 | 35 | 36 | # 37 | # Verify data after the test has been "shot" 38 | 39 | 40 | /moo/1203 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test854: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | POP3 5 | LIST 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | REPLY LIST +OK but no messages\r\n. 14 | 15 | 16 | 17 | 18 | 19 | # 20 | # Client-side 21 | 22 | 23 | pop3 24 | 25 | 26 | POP3 LIST no messages available 27 | 28 | 29 | pop3://%HOSTIP:%POP3PORT/ -u user:secret 30 | 31 | 32 | 33 | # 34 | # Verify data after the test has been "shot" 35 | 36 | 37 | CAPA 38 | USER user 39 | PASS secret 40 | LIST 41 | QUIT 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test30: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | HTTP GET 6 | FAILURE 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | http 19 | 20 | 21 | HTTP with no data in server reply 22 | 23 | 24 | http://%HOSTIP:%HTTPPORT/want/30 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | 31 | ^User-Agent:.* 32 | 33 | 34 | GET /want/30 HTTP/1.1 35 | Host: %HOSTIP:%HTTPPORT 36 | Accept: */* 37 | 38 | 39 | 40 | 52 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test617: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SCP 5 | zero-length 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | 14 | 15 | 16 | # 17 | # Client-side 18 | 19 | 20 | scp 21 | 22 | 23 | SCP retrieval of empty file 24 | 25 | 26 | --key curl_client_key --pubkey curl_client_key.pub -u %USER: scp://%HOSTIP:%SSHPORT%PWD/log/file617.txt --insecure 27 | 28 | 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | disable 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test850: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | POP3 5 | RETR 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | From: me@somewhere 14 | To: fake@nowhere 15 | 16 | body 17 | 18 | -- 19 | yours sincerely 20 | 21 | 22 | 23 | # 24 | # Client-side 25 | 26 | 27 | pop3 28 | 29 | 30 | POP3 RETR message 31 | 32 | 33 | pop3://%HOSTIP:%POP3PORT/850 -u user:secret 34 | 35 | 36 | 37 | # 38 | # Verify data after the test has been "shot" 39 | 40 | 41 | CAPA 42 | USER user 43 | PASS secret 44 | RETR 850 45 | QUIT 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1009: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TFTP 5 | TFTP RRQ 6 | --local-port 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | a chunk of 15 | data 16 | returned 17 | to client 18 | 19 | 20 | 21 | # 22 | # Client-side 23 | 24 | 25 | tftp 26 | 27 | 28 | TFTP retrieve with --local-port 29 | 30 | 31 | tftp://%HOSTIP:%TFTPPORT//1009 --local-port 44444-45444 32 | 33 | 34 | 35 | # 36 | # Verify pseudo protocol after the test has been "shot" 37 | 38 | 39 | opcode: 1 40 | filename: /1009 41 | mode: octet 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test616: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SFTP 5 | zero-length 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | 14 | 15 | 16 | # 17 | # Client-side 18 | 19 | 20 | sftp 21 | 22 | 23 | SFTP retrieval of empty file 24 | 25 | 26 | --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/log/file616.txt --insecure 27 | 28 | 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | disable 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test140: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | -z 6 | --data-binary 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 13 | 14 | 213 20030409102659 15 | 16 | 17 | 18 | # Client-side 19 | 20 | 21 | ftp 22 | 23 | 24 | FTP download file with -z, expected to not transfer 25 | 26 | 27 | ftp://%HOSTIP:%FTPPORT/blalbla/140 -z "1 jan 2004" 28 | 29 | 30 | 31 | # Verify data after the test has been "shot" 32 | 33 | 34 | USER anonymous 35 | PASS ftp@example.com 36 | PWD 37 | CWD blalbla 38 | MDTM 140 39 | QUIT 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test282: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | HTTP GET 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | HTTP/1.1 200 OK swsclose 14 | 15 | 16 | 17 | 18 | # 19 | # Client-side 20 | 21 | 22 | http 23 | 24 | 25 | HTTP GET with no response body or headers 26 | 27 | 28 | http://%HOSTIP:%HTTPPORT/282 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | ^User-Agent:.* 37 | 38 | 39 | GET /282 HTTP/1.1 40 | Host: %HOSTIP:%HTTPPORT 41 | Accept: */* 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test926: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SMTP 5 | VRFY 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | REPLY VRFY 550 Unknown user 14 | 15 | 16 | 17 | # 18 | # Client-side 19 | 20 | 21 | smtp 22 | 23 | 24 | SMTP unknown user VRFY 25 | 26 | 27 | smtp://%HOSTIP:%SMTPPORT/926 --mail-rcpt recipient 28 | 29 | 30 | 31 | # 32 | # Verify data after the test has been "shot" 33 | 34 | # 56 - CURLE_RECV_ERROR 35 | 36 | 56 37 | 38 | 39 | EHLO 926 40 | VRFY recipient 41 | QUIT 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1093: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TFTP 5 | TFTP RRQ 6 | mode= 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | a chunk of 15 | data 16 | returned 17 | to client 18 | 19 | 20 | 21 | # 22 | # Client-side 23 | 24 | 25 | tftp 26 | 27 | 28 | TFTP retrieve with mode=i 29 | 30 | 31 | "tftp://%HOSTIP:%TFTPPORT//1093;mode=i" --use-ascii --trace-ascii log/traceit 32 | 33 | 34 | 35 | # 36 | # Verify pseudo protocol after the test has been "shot" 37 | 38 | 39 | opcode: 1 40 | filename: /1093 41 | mode: octet 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test852: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | POP3 5 | LIST 6 | FAILURE 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | REPLY LIST -ERR no such message 15 | 16 | 17 | 18 | # 19 | # Client-side 20 | 21 | 22 | pop3 23 | 24 | 25 | POP3 LIST invalid message 26 | 27 | 28 | pop3://%HOSTIP:%POP3PORT/852 -l -u user:secret 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | 56 37 | 38 | 39 | CAPA 40 | USER user 41 | PASS secret 42 | LIST 852 43 | QUIT 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test855: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | POP3 5 | RETR 6 | FAILURE 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | REPLY RETR -ERR no such message 15 | 16 | 17 | 18 | # 19 | # Client-side 20 | 21 | 22 | pop3 23 | 24 | 25 | POP3 RETR invalid message 26 | 27 | 28 | pop3://%HOSTIP:%POP3PORT/855 -u user:secret 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | 56 37 | 38 | 39 | CAPA 40 | USER user 41 | PASS secret 42 | RETR 855 43 | QUIT 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test115: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | PASV 6 | FAILURE 7 | 8 | 9 | # Server-side 10 | 11 | 12 | REPLY PASV 314 bluah you f00l! 13 | REPLY EPSV 314 bluah you f00l! 14 | 15 | 16 | 17 | # Client-side 18 | 19 | 20 | ftp 21 | 22 | 23 | FTP download, failed PASV 24 | 25 | 26 | ftp://%HOSTIP:%FTPPORT/115 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | 13 34 | 35 | 36 | USER anonymous 37 | PASS ftp@example.com 38 | PWD 39 | EPSV 40 | PASV 41 | QUIT 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test127: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | PASV 6 | RETR 7 | --disable-epsv 8 | 9 | 10 | # Server-side 11 | 12 | 13 | moooooooo 14 | 15 | 16 | 17 | # Client-side 18 | 19 | 20 | ftp 21 | 22 | 23 | FTP --disable-epsv 24 | 25 | 26 | ftp://%HOSTIP:%FTPPORT/path/to/file/127 --disable-epsv 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | USER anonymous 34 | PASS ftp@example.com 35 | PWD 36 | CWD path 37 | CWD to 38 | CWD file 39 | PASV 40 | TYPE I 41 | SIZE 127 42 | RETR 127 43 | QUIT 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1326: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TELNET 5 | UPLOAD 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | HTTP/1.1 200 swsclose 14 | 15 | moo 16 | 17 | 18 | 19 | # 20 | # Client-side 21 | 22 | 23 | http 24 | 25 | 26 | telnet 27 | 28 | 29 | TELNET to HTTP server 30 | 31 | 32 | GET /we/want/1326 HTTP/1.0 33 | 34 | 35 | 36 | telnet://%HOSTIP:%HTTPPORT 37 | 38 | 39 | 40 | # 41 | # Verify data after the test has been "shot" 42 | 43 | 44 | GET /we/want/1326 HTTP/1.0 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test601: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SCP 5 | 6 | 7 | 8 | # 9 | # Server-side 10 | 11 | 12 | Test data 13 | for ssh test 14 | 15 | 16 | 17 | # 18 | # Client-side 19 | 20 | 21 | scp 22 | 23 | 24 | SCP retrieval 25 | 26 | 27 | --key curl_client_key --pubkey curl_client_key.pub -u %USER: scp://%HOSTIP:%SSHPORT%PWD/log/file601.txt --insecure 28 | 29 | 30 | Test data 31 | for ssh test 32 | 33 | 34 | 35 | # 36 | # Verify data after the test has been "shot" 37 | 38 | 39 | disable 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test117: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | FAILURE 6 | 7 | 8 | # Server-side 9 | 10 | 11 | REPLY EPSV 314 bluah you f00l! 12 | REPLY TYPE 314 bluah you f00l! 13 | 14 | 15 | 16 | # Client-side 17 | 18 | 19 | ftp 20 | 21 | 22 | FTP download, failed TYPE 23 | 24 | 25 | ftp://%HOSTIP:%FTPPORT/117 26 | 27 | 28 | 29 | # Verify data after the test has been "shot" 30 | 31 | 32 | 17 33 | 34 | 35 | USER anonymous 36 | PASS ftp@example.com 37 | PWD 38 | EPSV 39 | PASV 40 | TYPE I 41 | QUIT 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test123: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | EPSV 6 | Resume 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 13 | # Client-side 14 | 15 | 16 | ftp 17 | 18 | 19 | FTP upload resume with whole file already downloaded 20 | 21 | 22 | ftp://%HOSTIP:%FTPPORT/123 -T log/upload123 -C 51 23 | 24 | 25 | -------------------------------------------------- 26 | 27 | 28 | 29 | # Verify data after the test has been "shot" 30 | 31 | 32 | USER anonymous 33 | PASS ftp@example.com 34 | PWD 35 | EPSV 36 | TYPE I 37 | QUIT 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test37: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | HTTP GET 6 | FAILURE 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | 14 | 15 | 16 | # 17 | # Client-side 18 | 19 | 20 | http 21 | 22 | 23 | HTTP GET with nothing returned from server 24 | 25 | 26 | http://%HOSTIP:%HTTPPORT/37 27 | 28 | 29 | 30 | # 31 | # Verify data after the test has been "shot" 32 | 33 | 34 | 52 35 | 36 | 37 | ^User-Agent:.* 38 | 39 | 40 | GET /37 HTTP/1.1 41 | Host: %HOSTIP:%HTTPPORT 42 | Accept: */* 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test524: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | UPLOAD 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | 14 | # 15 | # Client-side 16 | 17 | 18 | ftp 19 | 20 | 21 | lib524 22 | 23 | 24 | FTP upload with target URL ending with slash 25 | 26 | # first URL then proxy 27 | 28 | ftp://%HOSTIP:%FTPPORT/path/to/ 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | USER anonymous 37 | PASS ftp@example.com 38 | PWD 39 | 40 | 41 | # 3 is CURLE_URL_MALFORMAT 42 | 43 | 3 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test600: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SFTP 5 | 6 | 7 | 8 | # 9 | # Server-side 10 | 11 | 12 | Test data 13 | for ssh test 14 | 15 | 16 | 17 | # 18 | # Client-side 19 | 20 | 21 | sftp 22 | 23 | 24 | SFTP retrieval 25 | 26 | 27 | --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/log/file600.txt --insecure 28 | 29 | 30 | Test data 31 | for ssh test 32 | 33 | 34 | 35 | # 36 | # Verify data after the test has been "shot" 37 | 38 | 39 | disable 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test851: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | POP3 5 | LIST 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | # include the '.\r\n' 3-byte trailer to end the transfer poperly! 14 | REPLY LIST +OK 851 100\r\n. 15 | 16 | 17 | 18 | # 19 | # Client-side 20 | 21 | 22 | pop3 23 | 24 | 25 | POP3 LIST one message 26 | 27 | 28 | pop3://%HOSTIP:%POP3PORT/851 -l -u user:secret 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | CAPA 37 | USER user 38 | PASS secret 39 | LIST 851 40 | QUIT 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1091: -------------------------------------------------------------------------------- 1 | 2 | # based on test 143 3 | 4 | 5 | FTP 6 | RETR 7 | type= 8 | 9 | 10 | 11 | # Server-side 12 | 13 | 14 | bla bla bla 15 | 16 | 17 | 18 | # Client-side 19 | 20 | 21 | ftp 22 | 23 | 24 | FTP URL with type=i 25 | 26 | 27 | "ftp://%HOSTIP:%FTPPORT/%2ftmp/moo/1091;type=i" --use-ascii 28 | 29 | 30 | 31 | # Verify data after the test has been "shot" 32 | 33 | 34 | USER anonymous 35 | PASS ftp@example.com 36 | PWD 37 | CWD /tmp 38 | CWD moo 39 | EPSV 40 | TYPE I 41 | SIZE 1091 42 | RETR 1091 43 | QUIT 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1500: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HTTP 5 | HTTP GET 6 | multi 7 | 8 | 9 | 10 | # Server-side 11 | 12 | 13 | HTTP/1.1 200 all good! 14 | Date: Thu, 09 Nov 2010 14:49:00 GMT 15 | Server: test-server/fake 16 | Content-Type: text/html 17 | Content-Length: 12 18 | Connection: close 19 | 20 | Hello World 21 | 22 | 23 | 24 | # Client-side 25 | 26 | 27 | http 28 | 29 | 30 | http 31 | 32 | # tool is what to use instead of 'curl' 33 | 34 | lib1500 35 | 36 | 37 | 38 | curl_multi_wait 39 | 40 | 41 | http://%HOSTIP:%HTTPPORT/1500 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test229: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | ACCT 6 | FAILURE 7 | 8 | 9 | # Server-side 10 | 11 | 12 | REPLY PASS 332 please provide account name 13 | REPLY ACCT 532 bluah! 14 | 15 | 16 | 17 | # Client-side 18 | 19 | 20 | ftp 21 | 22 | 23 | FTP RETR with bad ACCT 24 | 25 | 26 | ftp://%HOSTIP:%FTPPORT/229 --ftp-account "one count" 27 | 28 | 29 | 30 | # Verify data after the test has been "shot" 31 | 32 | 33 | USER anonymous 34 | PASS ftp@example.com 35 | ACCT one count 36 | 37 | 38 | 11 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test238: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | 6 | 7 | 8 | # Server-side 9 | 10 | 11 | REPLY EPSV 229 Entering Passiv Mode (|||1000000|) 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | ftp 19 | 20 | 21 | FTP getting bad port in response to EPSV 22 | 23 | 24 | ftp://%HOSTIP:%FTPPORT/238 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | # 13 = CURLE_FTP_WEIRD_PASV_REPLY 31 | 32 | 13 33 | 34 | 35 | USER anonymous 36 | PASS ftp@example.com 37 | PWD 38 | EPSV 39 | QUIT 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test285: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TFTP 5 | TFTP WRQ 6 | 7 | 8 | 9 | # 10 | # Client-side 11 | 12 | 13 | tftp 14 | 15 | 16 | TFTP send 17 | 18 | 19 | -T log/test285.txt tftp://%HOSTIP:%TFTPPORT// --trace-ascii log/traceit 20 | 21 | 22 | a chunk of 23 | data 24 | sent 25 | to server 26 | 27 | 28 | 29 | # 30 | # Verify pseudo protocol after the test has been "shot" 31 | 32 | 33 | a chunk of 34 | data 35 | sent 36 | to server 37 | 38 | 39 | opcode: 2 40 | filename: /test285.txt 41 | mode: octet 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test806: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IMAP 5 | LIST 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | * LIST () "/" /806/blurdybloop 14 | * LIST (\Noselect) "/" /806/foo 15 | * LIST () "/" /806/foo/bar 16 | 17 | 18 | 19 | # 20 | # Client-side 21 | 22 | 23 | imap 24 | 25 | 26 | IMAP LIST mailbox 27 | 28 | 29 | imap://%HOSTIP:%IMAPPORT/806 -u user:secret 30 | 31 | 32 | 33 | # 34 | # Verify data after the test has been "shot" 35 | 36 | 37 | A001 CAPABILITY 38 | A002 LOGIN user secret 39 | A003 LIST "806" * 40 | A004 LOGOUT 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1007: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TFTP 5 | TFTP WRQ 6 | FAILURE 7 | 8 | 9 | 10 | # 11 | # Client-side 12 | 13 | 14 | tftp 15 | 16 | 17 | TFTP send with invalid permission on server 18 | 19 | 20 | -T log/test1007.txt tftp://%HOSTIP:%TFTPPORT//invalid-file --trace-ascii log/traceit 21 | 22 | 23 | This data will not be sent 24 | 25 | 26 | 27 | # 28 | # Verify pseudo protocol after the test has been "shot" 29 | 30 | 31 | 69 32 | 33 | 34 | opcode: 2 35 | filename: /invalid-file 36 | mode: octet 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1049: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TFTP 5 | TFTP RRQ 6 | --interface 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | a chunk of 15 | data 16 | returned 17 | to client 18 | 19 | 20 | 21 | # 22 | # Client-side 23 | 24 | 25 | tftp 26 | 27 | 28 | TFTP retrieve with localhost --interface 29 | 30 | 31 | tftp://%HOSTIP:%TFTPPORT//1049 --trace-ascii log/traceit --interface %CLIENTIP 32 | 33 | 34 | 35 | # 36 | # Verify pseudo protocol after the test has been "shot" 37 | 38 | 39 | opcode: 1 40 | filename: /1049 41 | mode: octet 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test122: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | PASV 6 | Resume 7 | 8 | 9 | # Server-side 10 | 11 | 12 | 5 13 | 14 | 15 | REPLY EPSV 500 no such command 16 | 17 | 18 | 19 | # Client-side 20 | 21 | 22 | ftp 23 | 24 | 25 | FTP download resume with whole file already downloaded 26 | 27 | 28 | ftp://%HOSTIP:%FTPPORT/122 -C 5 29 | 30 | 31 | 32 | # Verify data after the test has been "shot" 33 | 34 | 35 | USER anonymous 36 | PASS ftp@example.com 37 | PWD 38 | EPSV 39 | PASV 40 | TYPE I 41 | SIZE 122 42 | QUIT 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test502: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FILE 5 | 6 | 7 | # 8 | # Server-side 9 | 10 | 11 | foo 12 | bar swsclose 13 | bar 14 | foo 15 | moo 16 | 17 | 18 | 19 | # Client-side 20 | 21 | 22 | file 23 | 24 | # tool is what to use instead of 'curl' 25 | 26 | lib502 27 | 28 | 29 | 30 | simple multi file:// get 31 | 32 | 33 | file://%PWD/log/test502.txt 34 | 35 | 36 | foo 37 | bar swsclose 38 | bar 39 | foo 40 | moo 41 | 42 | 43 | 44 | # Verify data after the test has been "shot" 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test633: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SFTP 5 | Range 6 | 7 | 8 | 9 | # 10 | # Server-side 11 | 12 | 13 | data 14 | 15 | 16 | 17 | # 18 | # Client-side 19 | 20 | 21 | sftp 22 | 23 | 24 | SFTP retrieval with byte range 25 | 26 | 27 | --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/log/file633.txt -r 5-9 --insecure 28 | 29 | 30 | Test data 31 | for ssh test 32 | 33 | 34 | 35 | # 36 | # Verify data after the test has been "shot" 37 | 38 | 39 | disable 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test810: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IMAP 5 | SEARCH 6 | CUSTOMREQUEST 7 | 8 | 9 | 10 | # 11 | # Server-side 12 | 13 | 14 | * SEARCH 1 123 456 810 15 | 16 | 17 | 18 | # 19 | # Client-side 20 | 21 | 22 | imap 23 | 24 | 25 | IMAP SEARCH for NEW messages (CUSTOMREQUEST) 26 | 27 | 28 | imap://%HOSTIP:%IMAPPORT/810 -u user:secret -X 'SEARCH NEW' 29 | 30 | 31 | 32 | # 33 | # Verify data after the test has been "shot" 34 | 35 | 36 | A001 CAPABILITY 37 | A002 LOGIN user secret 38 | A003 SELECT 810 39 | A004 SEARCH NEW 40 | A005 LOGOUT 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test1224: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | PASV 6 | RETR 7 | 8 | 9 | # Server-side 10 | 11 | 12 | data 13 | to 14 | see 15 | that FTP 16 | works 17 | so does it? 18 | 19 | 20 | 21 | # Client-side 22 | 23 | 24 | ftp 25 | 26 | 27 | FTP fetch a file from the root directory 28 | 29 | 30 | ftp://%HOSTIP:%FTPPORT//1224 31 | 32 | 33 | 34 | 35 | # Verify data after the test has been "shot" 36 | 37 | 38 | USER anonymous 39 | PASS ftp@example.com 40 | PWD 41 | CWD / 42 | EPSV 43 | TYPE I 44 | SIZE 1224 45 | RETR 1224 46 | QUIT 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test196: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | 6 | 7 | 8 | # Server-side 9 | 10 | 11 | REPLY PASS 430 temporarily not available 12 | 13 | 14 | 15 | # Client-side 16 | 17 | 18 | ftp 19 | 20 | 21 | FTP transient error, retry request once 22 | 23 | 24 | ftp://%HOSTIP:%FTPPORT/196 --retry 1 25 | 26 | 27 | 28 | # Verify data after the test has been "shot" 29 | 30 | # 67 is CURLE_LOGIN_DENIED 31 | 32 | 67 33 | 34 | 35 | USER anonymous 36 | PASS ftp@example.com 37 | USER anonymous 38 | PASS ftp@example.com 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /source_20140807/curl-7.34.0/tests/data/test295: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FTP 5 | PASV 6 | LIST 7 | ACCT 8 | FAILURE 9 | 10 | 11 | # 12 | # Server-side 13 | 14 | 15 | REPLY PASS 332 Give me an ACCT now 16 | REPLY PWD 530 No ACCT, go away 17 | 18 | 19 | 20 | # 21 | # Client-side 22 | 23 | 24 | ftp 25 | 26 | 27 | FTP ACCT request without --ftp-account 28 | 29 | 30 | ftp://%HOSTIP:%FTPPORT/295/ 31 | 32 | 33 | 34 | # 35 | # Verify data after the test has been "shot" 36 | 37 | 38 | 67 39 | 40 | 41 | USER anonymous 42 | PASS ftp@example.com 43 | 44 | 45 | 46 | --------------------------------------------------------------------------------