Result for 0F7D358F31885E2EE80CBFECB8F1FB819F4E5077

Query result

Key Value
CRC3284E82B41
FileNamesnap-hashlookup-import/vendor/bundle/jruby/1.9/gems/puma-2.16.0-java/COPYING
FileSize2369
MD55BBFD09F874D6A057E64852F873B599C
OpSystemCode{'MfgCode': '1006', 'OpSystemCode': '362', 'OpSystemName': 'TBD', 'OpSystemVersion': 'none'}
ProductCode{'ApplicationType': 'Multilanguage', 'Language': '924', 'MfgCode': '599', 'OpSystemCode': ' 2017', 'ProductCode': '183719', 'ProductName': 'SUSE Enterprise Storage 4 x86_64- ', 'ProductVersion': 'dl.Aug.30'}
SHA-10F7D358F31885E2EE80CBFECB8F1FB819F4E5077
SHA-25610DA311C9FBBD72436C41674BE1D754148CCA2A044D5080F85890763915DCD61
SHA-512C0A7F49E95A9F0B6C7D565819D97BBC1F5B706B00324C0E00A06CA4AB856E23159E4728F24B60661AC9F924FCC4102B340F5D9B19ECC13F6DCD36899A3A00428
SSDEEP48:GN9poLgqp1ptqdFCMCN5PEpRJGCZRLoliaTG4:GNU00cFCn5PEPJpZRs1/
SpecialCode
TLSHT12141A53BB72453F012D30BB6AA4A65C7F657203E72168494384DD0643B2BF2F82B12D8
dbnsrl_modern_rds
insert-timestamp1659223312.8912332
mimetypetext/plain
sourcesnap:inHPJz1Odiq9ZuHPMxZSeXIfjS9Y1M7X_33
tar:gnamebin
tar:unameroot
hashlookup:parent-total174
hashlookup:trust100

Network graph view

Parents (Total: 174)

The searched file hash is included in 174 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
FileNamehttps://ftp.lysator.liu.se/pub/OpenBSD//4.3//packages//hppa//ruby-mongrel-1.1.3.tgz
MD50B4AE28852FE98E9EC3A58C3DF1C088B
SHA-1007EA32E02369488C64FFDA799F6B506431D8775
SHA-256981503902E1853BD39E05265CC59521034F9A5A216D52B0CC59E9B36CC643507
SSDEEP6144:RYPLb0aoJmFXXU95dqnzFGGwK0egEr7sbllzGFs0bqhDffNSRiSy/j/uwEVxLU9Z:RYv0xmFnOdCwK0eN7KlzGFXqhzfoRiSy
TLSHT11C74237B0D285BE5513ED197BC396F945FE67D7080EA2820286DB672188F9FC7838432
Key Value
FileNamehttps://ftp.lysator.liu.se/pub/OpenBSD//4.4//packages//i386//ruby-mongrel-1.1.4p0.tgz
MD5D17028C4C5770EBE5F65531EEF6C0E41
SHA-1016A2E343657D0743094583DC5AE79DDACDC9677
SHA-256F7A673A5F286A4B377277C0C37B879686A242E171E6FDD68F9DE0F5775224484
SSDEEP6144:0ZlNgvUM9/0fAjOkRSodSA/izV2GEJH4VFGqOCRwyYJY4kcZxQT63jK5Yvz:slNgv99/0f4TSAZdQw1Y4kcZg6uM
TLSHT15D7423E1930864AD0477AD152E1ACE28BD670D1F26585E8B16EF7CEA65DFDBF84E000C
Key Value
MD56A3B816B9413916C97149D97011AB57D
PackageArchx86_64
PackageDescriptionFix an exploitable bug in CGI multipart parsing which affects Ruby <= 1.8.5 when multipart boundary attribute contains a non-halting regular expression string. This package normally is _not_ needed on SuSE as we fixed the bug. But sadly the mongrel gem depends on it. Authors: -------- Evan Weaver <evan@cloudbur.st>
PackageNamerubygem-cgi_multipart_eof_fix
PackageReleaselp151.2.1
PackageVersion2.5.0
SHA-102061D92DD77353E8E43026776CB83918CC3076A
SHA-2567FE9FC53211D76471C2C3B38D24E44DFDFE52BE4B5D5BC8AD89588AE20DC25C2
Key Value
FileNamehttps://ftp.lysator.liu.se/pub/OpenBSD/5.8/packages//alpha//ruby22-puma-2.12.1.tgz
MD50C9D4BC3EA6E01DB1B147928C75F4E64
SHA-10242E785F65C8425ADDEEAE59E9E30DA13111A67
SHA-256D8DABDC2F9B75F83384D97ADC9B59AB4F362E0C121110D0BEC2FAD3918E58746
SSDEEP3072:A7KwUzgl8gt363CH6LqloLjFb26zY3OY25AZRPP8lP8fg+u7xrZxHxKTpNpBq:ilUzgrqSH6Lql8l269o8lMgr7N7HxmNS
TLSHT1B3042352F8B8FA8BBC40DC77D04AB1EE868F1F47173339AA11782F91A171AA7161C571
Key Value
MD5768D163FA79990FDD1326B3FC8E4FC22
PackageArchx86_64
PackageDescriptionPuma is a simple, fast, and highly concurrent HTTP 1.1 server for Ruby web applications. It can be used with any application that supports Rack, and is considered the replacement for Webrick and Mongrel. It was designed to be the go-to server for [Rubinius](http://rubini.us), but also works well with JRuby and MRI. Puma is intended for use in both development and production environments. Under the hood, Puma processes requests using a C-optimized Ragel extension (inherited from Mongrel) that provides fast, accurate HTTP 1.1 protocol parsing in a portable way. Puma then serves the request in a thread from an internal thread pool (which you can control). This allows Puma to provide real concurrency for your web application! With Rubinius 2.0, Puma will utilize all cores on your CPU with real threads, meaning you won't have to spawn multiple processes to increase throughput. You can expect to see a similar benefit from JRuby. On MRI, there is a Global Interpreter Lock (GIL) that ensures only one thread can be run at a time. But if you're doing a lot of blocking IO (such as HTTP calls to external APIs like Twitter), Puma still improves MRI's throughput by allowing blocking IO to be run concurrently (EventMachine-based servers such as Thin turn off this ability, requiring you to use special libraries). Your mileage may vary. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like [Rubinius](http://rubini.us) or [JRuby](http://jruby.org).
PackageNameruby2.6-rubygem-puma-1_6
PackageRelease3.36
PackageVersion1.6.3
SHA-10423BF61E2BEE582CEF203F5A7E6145E19D812EC
SHA-2568815FA04611B2DC8B0563863C119B2BA363E85A80EF79C77DE86D8BA803B5380
Key Value
FileNamehttps://ftp.lysator.liu.se/pub/OpenBSD/5.6/packages//hppa//ruby-mongrel-1.1.5p6.tgz
MD58A906B1A150F881DCEA80DE6217BD168
SHA-1046EB2BA3F5049E1F4B434E458ED1D8459B4AA2C
SHA-25601632DE48C9EED59D1C7E1BC724FFEDC95B188BD87C9A8A6105F10CB416A967D
SSDEEP6144:nrnHbgjcZii/4ymtmwozyC9KLfgTT7xenQZ3rUX:r77f4ymkVr95THYnW8
TLSHT1DE3422E590120190882D7336E6CB6C489EE37C89297BDDE97981C3D9C391F9C65C2F8E
Key Value
FileNamehttps://ftp.lysator.liu.se/pub/OpenBSD/5.8/packages//alpha//ruby21-puma-2.12.1.tgz
MD58A29373082F6A4BB7983B281C59C7BD1
SHA-106B764D74D69423E66992942C1D520070A13B026
SHA-256D3A15D010BD8ED5D90FECAC137F418B5AF45DF8D8AC4C9BD292E80EA8D64BAED
SSDEEP3072:AzSPD8mSEkCaRv6LqloLjFb26zY37Y25AnE2Iz22PAPPriYxsvDZf4p2HZ:AW7nkCiv6Lql8l26gCEZJAHrPsvVq2HZ
TLSHT1660413868834B091BA90A8DEFD6BA3C787DC09479F3B584047916C305EA8FAE750F492
Key Value
FileNamehttps://ftp.lysator.liu.se/pub/OpenBSD/5.9/packages//amd64//ruby22-puma-2.12.1.tgz
MD5B100CDAEE1C16BA60D2EFA351E0784B7
SHA-109135118A354456E44318D041239812524681D88
SHA-2567006558E216A7717BBF5E0A7755D6CBC6645504673BCBEF18587CAF05B6C72A0
SSDEEP3072:5BuHCVSOXmx26LqloLjFb26zY3wzf0G9VZixLwlP8fg+u7Oxya0NOywzRLkpNpBu:5BuXOWx26Lql8l2650G/hlMgr7Own+Rv
TLSHT1C0041367B93F5D33AC5C81DE819F56C38B3E0D838F521D882181659682E2ABDF21C6F5
Key Value
MD58E4E6D2A50D0043464B139EECA3D86E6
PackageArchx86_64
PackageDescriptionMerb. Pocket rocket web framework.
PackageNameruby2.6-rubygem-merb-core
PackageRelease6.49
PackageVersion1.1.3
SHA-1099DCC17797BB4CB0D85A2ADD3243F7F108B911D
SHA-2563E226BC6FF6E59CD7889099374D953146F78388B383519A14B02DDC219DD7833
Key Value
FileNamehttps://ftp.lysator.liu.se/pub/OpenBSD//4.4//packages//alpha//ruby-mongrel-1.1.4p0.tgz
MD5BDB3EC7B92FC54A85C4D8407238E2C67
SHA-10C00D711B98C7E0246190819D5C14068CFDF6F57
SHA-256581A42F317ED1F5096863A376FA34B01AE49D9A336B073F30C88760F56D1C62C
SSDEEP6144:WXMpOls4t+ZXARNxKjOGgXm5swFy5DYAP7Gk9+6lFfuekqKDw3x58badQog:NlTZX4IS7EsK27F46lF26K8fJda
TLSHT17974239BA8E5C908065ED7730D83CF1C2702B5AA615F87C566BFD8810D239DD0AFB84D