Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
4
112
repo_url
stringlengths
33
141
action
stringclasses
3 values
title
stringlengths
1
1.02k
labels
stringlengths
4
1.54k
body
stringlengths
1
262k
index
stringclasses
17 values
text_combine
stringlengths
95
262k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
184,667
14,289,809,730
IssuesEvent
2020-11-23 19:51:47
github-vet/rangeclosure-findings
https://api.github.com/repos/github-vet/rangeclosure-findings
closed
mackerelio/mackerel-container-agent: platform/ecs/ecs_test.go; 30 LoC
fresh small test
Found a possible issue in [mackerelio/mackerel-container-agent](https://www.github.com/mackerelio/mackerel-container-agent) at [platform/ecs/ecs_test.go](https://github.com/mackerelio/mackerel-container-agent/blob/e1a219caeae6ba34d8eb30f605f9d200d986d895/platform/ecs/ecs_test.go#L191-L220) The below snippet of Go code triggered static analysis which searches for goroutines and/or defer statements which capture loop variables. [Click here to see the code in its original context.](https://github.com/mackerelio/mackerel-container-agent/blob/e1a219caeae6ba34d8eb30f605f9d200d986d895/platform/ecs/ecs_test.go#L191-L220) <details> <summary>Click here to show the 30 line(s) of Go which triggered the analyzer.</summary> ```go for _, tc := range tests { var callCount int mock := internal.NewMockTaskMetadataGetter( internal.MockGetTaskMetadata( func(ctx context.Context) (*ecsTypes.TaskResponse, error) { callCount++ return nil, errors.New("/task api error") }, ), ) go func() { time.Sleep(tc.after) mock.ApplyOption(tc.callback) }() _, err := getTaskMetadata(ctx, mock, interval) if callCount != tc.expectCallCount { t.Errorf("GetTaskMetadata() expected calls %d times, but calls %d times", tc.expectCallCount, callCount) } if (err != nil) != tc.expectRaiseError { var not string if !tc.expectRaiseError { not = " not" } t.Errorf("GetTaskMetadata() should%s raise error: %v", not, err) } } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: e1a219caeae6ba34d8eb30f605f9d200d986d895
1.0
mackerelio/mackerel-container-agent: platform/ecs/ecs_test.go; 30 LoC - Found a possible issue in [mackerelio/mackerel-container-agent](https://www.github.com/mackerelio/mackerel-container-agent) at [platform/ecs/ecs_test.go](https://github.com/mackerelio/mackerel-container-agent/blob/e1a219caeae6ba34d8eb30f605f9d200d986d895/platform/ecs/ecs_test.go#L191-L220) The below snippet of Go code triggered static analysis which searches for goroutines and/or defer statements which capture loop variables. [Click here to see the code in its original context.](https://github.com/mackerelio/mackerel-container-agent/blob/e1a219caeae6ba34d8eb30f605f9d200d986d895/platform/ecs/ecs_test.go#L191-L220) <details> <summary>Click here to show the 30 line(s) of Go which triggered the analyzer.</summary> ```go for _, tc := range tests { var callCount int mock := internal.NewMockTaskMetadataGetter( internal.MockGetTaskMetadata( func(ctx context.Context) (*ecsTypes.TaskResponse, error) { callCount++ return nil, errors.New("/task api error") }, ), ) go func() { time.Sleep(tc.after) mock.ApplyOption(tc.callback) }() _, err := getTaskMetadata(ctx, mock, interval) if callCount != tc.expectCallCount { t.Errorf("GetTaskMetadata() expected calls %d times, but calls %d times", tc.expectCallCount, callCount) } if (err != nil) != tc.expectRaiseError { var not string if !tc.expectRaiseError { not = " not" } t.Errorf("GetTaskMetadata() should%s raise error: %v", not, err) } } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: e1a219caeae6ba34d8eb30f605f9d200d986d895
test
mackerelio mackerel container agent platform ecs ecs test go loc found a possible issue in at the below snippet of go code triggered static analysis which searches for goroutines and or defer statements which capture loop variables click here to show the line s of go which triggered the analyzer go for tc range tests var callcount int mock internal newmocktaskmetadatagetter internal mockgettaskmetadata func ctx context context ecstypes taskresponse error callcount return nil errors new task api error go func time sleep tc after mock applyoption tc callback err gettaskmetadata ctx mock interval if callcount tc expectcallcount t errorf gettaskmetadata expected calls d times but calls d times tc expectcallcount callcount if err nil tc expectraiseerror var not string if tc expectraiseerror not not t errorf gettaskmetadata should s raise error v not err leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
1
184,702
14,289,809,850
IssuesEvent
2020-11-23 19:51:47
github-vet/rangeclosure-findings
https://api.github.com/repos/github-vet/rangeclosure-findings
closed
blugelabs/bluge: search/searcher/search_disjunction_test.go; 34 LoC
fresh small test
Found a possible issue in [blugelabs/bluge](https://www.github.com/blugelabs/bluge) at [search/searcher/search_disjunction_test.go](https://github.com/blugelabs/bluge/blob/c304a6733af6b14a0e57acb8085f7e88bae98560/search/searcher/search_disjunction_test.go#L98-L131) The below snippet of Go code triggered static analysis which searches for goroutines and/or defer statements which capture loop variables. [Click here to see the code in its original context.](https://github.com/blugelabs/bluge/blob/c304a6733af6b14a0e57acb8085f7e88bae98560/search/searcher/search_disjunction_test.go#L98-L131) <details> <summary>Click here to show the 34 line(s) of Go which triggered the analyzer.</summary> ```go for testIndex, test := range tests { defer func() { err := test.searcher.Close() if err != nil { t.Fatal(err) } }() ctx := &search.Context{ DocumentMatchPool: search.NewDocumentMatchPool(test.searcher.DocumentMatchPoolSize(), 0), } next, err := test.searcher.Next(ctx) i := 0 for err == nil && next != nil { if i < len(test.results) { if next.Number != test.results[i].Number { t.Errorf("expected result %d to have number %d got %d for test %d", i, test.results[i].Number, next.Number, testIndex) } if !scoresCloseEnough(next.Score, test.results[i].Score) { t.Errorf("expected result %d to have score %v got %v for test %d", i, test.results[i].Score, next.Score, testIndex) t.Logf("scoring explanation: %s", next.Explanation) } } ctx.DocumentMatchPool.Put(next) next, err = test.searcher.Next(ctx) i++ } if err != nil { t.Fatalf("error iterating searcher: %v for test %d", err, testIndex) } if len(test.results) != i { t.Errorf("expected %d results got %d for test %d", len(test.results), i, testIndex) } } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: c304a6733af6b14a0e57acb8085f7e88bae98560
1.0
blugelabs/bluge: search/searcher/search_disjunction_test.go; 34 LoC - Found a possible issue in [blugelabs/bluge](https://www.github.com/blugelabs/bluge) at [search/searcher/search_disjunction_test.go](https://github.com/blugelabs/bluge/blob/c304a6733af6b14a0e57acb8085f7e88bae98560/search/searcher/search_disjunction_test.go#L98-L131) The below snippet of Go code triggered static analysis which searches for goroutines and/or defer statements which capture loop variables. [Click here to see the code in its original context.](https://github.com/blugelabs/bluge/blob/c304a6733af6b14a0e57acb8085f7e88bae98560/search/searcher/search_disjunction_test.go#L98-L131) <details> <summary>Click here to show the 34 line(s) of Go which triggered the analyzer.</summary> ```go for testIndex, test := range tests { defer func() { err := test.searcher.Close() if err != nil { t.Fatal(err) } }() ctx := &search.Context{ DocumentMatchPool: search.NewDocumentMatchPool(test.searcher.DocumentMatchPoolSize(), 0), } next, err := test.searcher.Next(ctx) i := 0 for err == nil && next != nil { if i < len(test.results) { if next.Number != test.results[i].Number { t.Errorf("expected result %d to have number %d got %d for test %d", i, test.results[i].Number, next.Number, testIndex) } if !scoresCloseEnough(next.Score, test.results[i].Score) { t.Errorf("expected result %d to have score %v got %v for test %d", i, test.results[i].Score, next.Score, testIndex) t.Logf("scoring explanation: %s", next.Explanation) } } ctx.DocumentMatchPool.Put(next) next, err = test.searcher.Next(ctx) i++ } if err != nil { t.Fatalf("error iterating searcher: %v for test %d", err, testIndex) } if len(test.results) != i { t.Errorf("expected %d results got %d for test %d", len(test.results), i, testIndex) } } ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: c304a6733af6b14a0e57acb8085f7e88bae98560
test
blugelabs bluge search searcher search disjunction test go loc found a possible issue in at the below snippet of go code triggered static analysis which searches for goroutines and or defer statements which capture loop variables click here to show the line s of go which triggered the analyzer go for testindex test range tests defer func err test searcher close if err nil t fatal err ctx search context documentmatchpool search newdocumentmatchpool test searcher documentmatchpoolsize next err test searcher next ctx i for err nil next nil if i len test results if next number test results number t errorf expected result d to have number d got d for test d i test results number next number testindex if scorescloseenough next score test results score t errorf expected result d to have score v got v for test d i test results score next score testindex t logf scoring explanation s next explanation ctx documentmatchpool put next next err test searcher next ctx i if err nil t fatalf error iterating searcher v for test d err testindex if len test results i t errorf expected d results got d for test d len test results i testindex leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
1
416,020
28,063,840,824
IssuesEvent
2023-03-29 14:12:59
redhat-beyond/HighTeach
https://api.github.com/repos/redhat-beyond/HighTeach
opened
Organize the "resources" folder
documentation
Organize the "resources" folder: change inner folders names: 1. (documents[Demos, Team meeting], 2. logos 3. videos 4. misc upload meeting summaries and demo1 [Presentation]
1.0
Organize the "resources" folder - Organize the "resources" folder: change inner folders names: 1. (documents[Demos, Team meeting], 2. logos 3. videos 4. misc upload meeting summaries and demo1 [Presentation]
non_test
organize the resources folder organize the resources folder change inner folders names documents logos videos misc upload meeting summaries and
0
1,596
6,443,947,182
IssuesEvent
2017-08-12 03:06:14
postmarketOS/pmbootstrap
https://api.github.com/repos/postmarketOS/pmbootstrap
closed
[mozilla-flame] Append `dtb` file to `boot.img` (qcdt)
architecture device
From what @yuvadm told us in the channel, the `flame` comes with its own version of `fastboot`/`mkbootimg`, which appends the `dtb` file at the end of the `boot.img` (and not at the end of the kernel, as it is with all other Android devices). The kernel is part of the `boot.img` file though. I'm not sure what the best way would be to handle this right now (suggestions welcome!) - @yuvadm, could you point us to the source code of these mozilla specific forks?
1.0
[mozilla-flame] Append `dtb` file to `boot.img` (qcdt) - From what @yuvadm told us in the channel, the `flame` comes with its own version of `fastboot`/`mkbootimg`, which appends the `dtb` file at the end of the `boot.img` (and not at the end of the kernel, as it is with all other Android devices). The kernel is part of the `boot.img` file though. I'm not sure what the best way would be to handle this right now (suggestions welcome!) - @yuvadm, could you point us to the source code of these mozilla specific forks?
non_test
append dtb file to boot img qcdt from what yuvadm told us in the channel the flame comes with its own version of fastboot mkbootimg which appends the dtb file at the end of the boot img and not at the end of the kernel as it is with all other android devices the kernel is part of the boot img file though i m not sure what the best way would be to handle this right now suggestions welcome yuvadm could you point us to the source code of these mozilla specific forks
0
172,607
13,325,233,730
IssuesEvent
2020-08-27 09:39:04
dotnet/runtime
https://api.github.com/repos/dotnet/runtime
closed
Test failure: System.Net.Http.Functional.Tests.SocketsHttpHandler_HttpClientHandler_ServerCertificates_Test.UseCallback_BadCertificate_ExpectedPolicyErrors
area-System.Net.Http test bug untriaged
Failed in #39313 https://dev.azure.com/dnceng/public/_build/results?buildId=788156&view=logs&j=a2c324d3-d1dd-5b5e-9bd2-d56324c8f9e8&t=7a9ad864-1ecc-5f5a-4be6-1a6eb30653af&s=b15d9194-8f26-5328-b47f-5968c76b37e7 Configuration: `net5.0-OSX-Debug-x64-CoreCLR_release-OSX.1014.Amd64.Open` And also failed in other places (46 times starting from 2020-08-01 [Link to query](https://dataexplorer.azure.com/clusters/engsrvprod/databases/engineeringdata?query=H4sIAAAAAAAAA21PTUvDUBC8+yuWXqqQQtqTlwi2tpCC4kfFY9m8XZttkvfKvg1a8Mf7UqVePO0sM7Mzu+Fozxz71iJcfME+iIdGPBXiPSu8BW1K4y5C8OelpP+k61CdVGmWlPiPmpVhJV5izQQ3BRAam3R8Octn+SS/nuTTK0BPcM9WB4KigNFr5AW2bYWu2c6RFqwm7+KSc7v8PLAzpsfQijsuVYPG0cn/88DgH69Q2nFKD0qpU3X8K0Ac3dD7oGGf7pyJ7Dc+g1vd9R17ixm8WCqwUXQ80DHiLoGnnnt+wC7BuaJ3dQZ3vaJJ8N+Z+rQNRwEAAA==)) Stacktrace: <details> ``` System.Net.Http.Functional.Tests.SocketsHttpHandler_HttpClientHandler_ServerCertificates_Test.UseCallback_BadCertificate_ExpectedPolicyErrors(url: "https://self-signed.badssl.com/", expectedErrors: RemoteCertificateChainErrors) [FAIL] System.Net.Http.HttpRequestException : The SSL connection could not be established, see inner exception. ---- Assert.Equal() Failure Expected: RemoteCertificateChainErrors Actual: RemoteCertificateNameMismatch | RemoteCertificateChainErrors Stack Trace: /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/ConnectHelper.cs(140,0): at System.Net.Http.ConnectHelper.EstablishSslConnectionAsyncCore(Boolean async, Stream stream, SslClientAuthenticationOptions sslOptions, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionPool.cs(1282,0): at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionPool.cs(1327,0): at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionPool.cs(536,0): at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionPool.cs(869,0): at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/RedirectHandler.cs(30,0): at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/HttpClient.cs(565,0): at System.Net.Http.HttpClient.FinishSendAsync(ValueTask`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts, Boolean buffered, Boolean async, CancellationToken callerToken, Int64 timeoutTime) /_/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.ServerCertificates.cs(334,0): at System.Net.Http.Functional.Tests.HttpClientHandler_ServerCertificates_Test.UseCallback_BadCertificate_ExpectedPolicyErrors_Helper(String url, String useHttp2String, SslPolicyErrors expectedErrors) /_/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.ServerCertificates.cs(357,0): at System.Net.Http.Functional.Tests.HttpClientHandler_ServerCertificates_Test.UseCallback_BadCertificate_ExpectedPolicyErrors(String url, SslPolicyErrors expectedErrors) --- End of stack trace from previous location --- ----- Inner Stack Trace ----- /_/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.ServerCertificates.cs(330,0): at System.Net.Http.Functional.Tests.HttpClientHandler_ServerCertificates_Test.<>c__DisplayClass18_1.<UseCallback_BadCertificate_ExpectedPolicyErrors_Helper>b__0(HttpRequestMessage request, X509Certificate2 cert, X509Chain chain, SslPolicyErrors errors) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/ConnectHelper.cs(98,0): at System.Net.Http.ConnectHelper.<>c__DisplayClass3_0.<EstablishSslConnectionAsync>b__0(Object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) /_/src/libraries/System.Net.Security/src/System/Net/Security/SecureChannel.cs(989,0): at System.Net.Security.SecureChannel.VerifyRemoteCertificate(RemoteCertificateValidationCallback remoteCertValidationCallback, ProtocolToken& alertToken, SslPolicyErrors& sslPolicyErrors, X509ChainStatusFlags& chainStatus) /_/src/libraries/System.Net.Security/src/System/Net/Security/SslStream.Implementation.cs(612,0): at System.Net.Security.SslStream.CompleteHandshake(ProtocolToken& alertToken, SslPolicyErrors& sslPolicyErrors, X509ChainStatusFlags& chainStatus) /_/src/libraries/System.Net.Security/src/System/Net/Security/SslStream.Implementation.cs(411,0): at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/ConnectHelper.cs(116,0): at System.Net.Http.ConnectHelper.EstablishSslConnectionAsyncCore(Boolean async, Stream stream, SslClientAuthenticationOptions sslOptions, CancellationToken cancellationToken) ``` </details>
1.0
Test failure: System.Net.Http.Functional.Tests.SocketsHttpHandler_HttpClientHandler_ServerCertificates_Test.UseCallback_BadCertificate_ExpectedPolicyErrors - Failed in #39313 https://dev.azure.com/dnceng/public/_build/results?buildId=788156&view=logs&j=a2c324d3-d1dd-5b5e-9bd2-d56324c8f9e8&t=7a9ad864-1ecc-5f5a-4be6-1a6eb30653af&s=b15d9194-8f26-5328-b47f-5968c76b37e7 Configuration: `net5.0-OSX-Debug-x64-CoreCLR_release-OSX.1014.Amd64.Open` And also failed in other places (46 times starting from 2020-08-01 [Link to query](https://dataexplorer.azure.com/clusters/engsrvprod/databases/engineeringdata?query=H4sIAAAAAAAAA21PTUvDUBC8+yuWXqqQQtqTlwi2tpCC4kfFY9m8XZttkvfKvg1a8Mf7UqVePO0sM7Mzu+Fozxz71iJcfME+iIdGPBXiPSu8BW1K4y5C8OelpP+k61CdVGmWlPiPmpVhJV5izQQ3BRAam3R8Octn+SS/nuTTK0BPcM9WB4KigNFr5AW2bYWu2c6RFqwm7+KSc7v8PLAzpsfQijsuVYPG0cn/88DgH69Q2nFKD0qpU3X8K0Ac3dD7oGGf7pyJ7Dc+g1vd9R17ixm8WCqwUXQ80DHiLoGnnnt+wC7BuaJ3dQZ3vaJJ8N+Z+rQNRwEAAA==)) Stacktrace: <details> ``` System.Net.Http.Functional.Tests.SocketsHttpHandler_HttpClientHandler_ServerCertificates_Test.UseCallback_BadCertificate_ExpectedPolicyErrors(url: "https://self-signed.badssl.com/", expectedErrors: RemoteCertificateChainErrors) [FAIL] System.Net.Http.HttpRequestException : The SSL connection could not be established, see inner exception. ---- Assert.Equal() Failure Expected: RemoteCertificateChainErrors Actual: RemoteCertificateNameMismatch | RemoteCertificateChainErrors Stack Trace: /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/ConnectHelper.cs(140,0): at System.Net.Http.ConnectHelper.EstablishSslConnectionAsyncCore(Boolean async, Stream stream, SslClientAuthenticationOptions sslOptions, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionPool.cs(1282,0): at System.Net.Http.HttpConnectionPool.ConnectAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionPool.cs(1327,0): at System.Net.Http.HttpConnectionPool.CreateHttp11ConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionPool.cs(536,0): at System.Net.Http.HttpConnectionPool.GetHttpConnectionAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/HttpConnectionPool.cs(869,0): at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/RedirectHandler.cs(30,0): at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) /_/src/libraries/System.Net.Http/src/System/Net/Http/HttpClient.cs(565,0): at System.Net.Http.HttpClient.FinishSendAsync(ValueTask`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts, Boolean buffered, Boolean async, CancellationToken callerToken, Int64 timeoutTime) /_/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.ServerCertificates.cs(334,0): at System.Net.Http.Functional.Tests.HttpClientHandler_ServerCertificates_Test.UseCallback_BadCertificate_ExpectedPolicyErrors_Helper(String url, String useHttp2String, SslPolicyErrors expectedErrors) /_/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.ServerCertificates.cs(357,0): at System.Net.Http.Functional.Tests.HttpClientHandler_ServerCertificates_Test.UseCallback_BadCertificate_ExpectedPolicyErrors(String url, SslPolicyErrors expectedErrors) --- End of stack trace from previous location --- ----- Inner Stack Trace ----- /_/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.ServerCertificates.cs(330,0): at System.Net.Http.Functional.Tests.HttpClientHandler_ServerCertificates_Test.<>c__DisplayClass18_1.<UseCallback_BadCertificate_ExpectedPolicyErrors_Helper>b__0(HttpRequestMessage request, X509Certificate2 cert, X509Chain chain, SslPolicyErrors errors) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/ConnectHelper.cs(98,0): at System.Net.Http.ConnectHelper.<>c__DisplayClass3_0.<EstablishSslConnectionAsync>b__0(Object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) /_/src/libraries/System.Net.Security/src/System/Net/Security/SecureChannel.cs(989,0): at System.Net.Security.SecureChannel.VerifyRemoteCertificate(RemoteCertificateValidationCallback remoteCertValidationCallback, ProtocolToken& alertToken, SslPolicyErrors& sslPolicyErrors, X509ChainStatusFlags& chainStatus) /_/src/libraries/System.Net.Security/src/System/Net/Security/SslStream.Implementation.cs(612,0): at System.Net.Security.SslStream.CompleteHandshake(ProtocolToken& alertToken, SslPolicyErrors& sslPolicyErrors, X509ChainStatusFlags& chainStatus) /_/src/libraries/System.Net.Security/src/System/Net/Security/SslStream.Implementation.cs(411,0): at System.Net.Security.SslStream.ForceAuthenticationAsync[TIOAdapter](TIOAdapter adapter, Boolean receiveFirst, Byte[] reAuthenticationData, Boolean isApm) /_/src/libraries/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/ConnectHelper.cs(116,0): at System.Net.Http.ConnectHelper.EstablishSslConnectionAsyncCore(Boolean async, Stream stream, SslClientAuthenticationOptions sslOptions, CancellationToken cancellationToken) ``` </details>
test
test failure system net http functional tests socketshttphandler httpclienthandler servercertificates test usecallback badcertificate expectedpolicyerrors failed in configuration osx debug coreclr release osx open and also failed in other places times starting from stacktrace system net http functional tests socketshttphandler httpclienthandler servercertificates test usecallback badcertificate expectedpolicyerrors url expectederrors remotecertificatechainerrors system net http httprequestexception the ssl connection could not be established see inner exception assert equal failure expected remotecertificatechainerrors actual remotecertificatenamemismatch remotecertificatechainerrors stack trace src libraries system net http src system net http socketshttphandler connecthelper cs at system net http connecthelper establishsslconnectionasynccore boolean async stream stream sslclientauthenticationoptions ssloptions cancellationtoken cancellationtoken src libraries system net http src system net http socketshttphandler httpconnectionpool cs at system net http httpconnectionpool connectasync httprequestmessage request boolean async cancellationtoken cancellationtoken src libraries system net http src system net http socketshttphandler httpconnectionpool cs at system net http httpconnectionpool httprequestmessage request boolean async cancellationtoken cancellationtoken src libraries system net http src system net http socketshttphandler httpconnectionpool cs at system net http httpconnectionpool gethttpconnectionasync httprequestmessage request boolean async cancellationtoken cancellationtoken src libraries system net http src system net http socketshttphandler httpconnectionpool cs at system net http httpconnectionpool sendwithretryasync httprequestmessage request boolean async boolean dorequestauth cancellationtoken cancellationtoken src libraries system net http src system net http socketshttphandler redirecthandler cs at system net http redirecthandler sendasync httprequestmessage request boolean async cancellationtoken cancellationtoken src libraries system net http src system net http httpclient cs at system net http httpclient finishsendasync valuetask sendtask httprequestmessage request cancellationtokensource cts boolean disposects boolean buffered boolean async cancellationtoken callertoken timeouttime src libraries common tests system net http httpclienthandlertest servercertificates cs at system net http functional tests httpclienthandler servercertificates test usecallback badcertificate expectedpolicyerrors helper string url string sslpolicyerrors expectederrors src libraries common tests system net http httpclienthandlertest servercertificates cs at system net http functional tests httpclienthandler servercertificates test usecallback badcertificate expectedpolicyerrors string url sslpolicyerrors expectederrors end of stack trace from previous location inner stack trace src libraries common tests system net http httpclienthandlertest servercertificates cs at system net http functional tests httpclienthandler servercertificates test c b httprequestmessage request cert chain sslpolicyerrors errors src libraries system net http src system net http socketshttphandler connecthelper cs at system net http connecthelper c b object sender certificate chain sslpolicyerrors sslpolicyerrors src libraries system net security src system net security securechannel cs at system net security securechannel verifyremotecertificate remotecertificatevalidationcallback remotecertvalidationcallback protocoltoken alerttoken sslpolicyerrors sslpolicyerrors chainstatus src libraries system net security src system net security sslstream implementation cs at system net security sslstream completehandshake protocoltoken alerttoken sslpolicyerrors sslpolicyerrors chainstatus src libraries system net security src system net security sslstream implementation cs at system net security sslstream forceauthenticationasync tioadapter adapter boolean receivefirst byte reauthenticationdata boolean isapm src libraries system net http src system net http socketshttphandler connecthelper cs at system net http connecthelper establishsslconnectionasynccore boolean async stream stream sslclientauthenticationoptions ssloptions cancellationtoken cancellationtoken
1
28,922
4,446,232,158
IssuesEvent
2016-08-20 15:00:59
venusdrogon/feilong-core
https://api.github.com/repos/venusdrogon/feilong-core
closed
新建 com.feilong.core.lang.objectutiltest package
test
新建 com.feilong.core.lang.objectutiltest package
1.0
新建 com.feilong.core.lang.objectutiltest package - 新建 com.feilong.core.lang.objectutiltest package
test
新建 com feilong core lang objectutiltest package 新建 com feilong core lang objectutiltest package
1
26,578
4,009,129,169
IssuesEvent
2016-05-13 01:29:02
angular/angular.io
https://api.github.com/repos/angular/angular.io
closed
design and implement a badge for labeling risky APIs
design love
@ericjim @amitafr could you adapt the Stability badge to a new badge (not a state, but a badge that appears next to the Stability one) that has the text "Security Risk" and is attention-getting? We would use this on APIs that require extra care to ensure safety. label in the API docs should be @security cc @petebacondarwin
1.0
design and implement a badge for labeling risky APIs - @ericjim @amitafr could you adapt the Stability badge to a new badge (not a state, but a badge that appears next to the Stability one) that has the text "Security Risk" and is attention-getting? We would use this on APIs that require extra care to ensure safety. label in the API docs should be @security cc @petebacondarwin
non_test
design and implement a badge for labeling risky apis ericjim amitafr could you adapt the stability badge to a new badge not a state but a badge that appears next to the stability one that has the text security risk and is attention getting we would use this on apis that require extra care to ensure safety label in the api docs should be security cc petebacondarwin
0
831,358
32,046,521,512
IssuesEvent
2023-09-23 03:51:24
eastbaydsa/website
https://api.github.com/repos/eastbaydsa/website
closed
CODE : Links : opening in new tabs inconsistently
medium priority
URLs: https://www.eastbaydsa.org https://www.eastbaydsa.org/about https://www.eastbaydsa.org/resources https://www.eastbaydsa.org/donate https://www.eastbaydsa.org/join I'm outlining the inconsistent treatment of links opening in new tabs below. My suggestion would be to have all internal links open in the same tab, perhaps with the exception of PDFs; and for links to other sites to open in new tabs. On the homepage, links for Single Payer and Learn More open in new tabs, while other links on the page (events / top navigation) open in the existing tab. It seems all the links on the homepage are internal. On the About page, links in copy open in a new tab, while links in the colored pages open in the existing tab. On the Resources page, all links are part of copy, and they all open in a new tab. On the Donate page, buttons open new tabs, though I think this makes sense as it's a different page. On the Join page, the button for National DSA opens in the existing tab. Facebook and Twitter in the bottom nav open in the existing tab. This is small, but would be great to have a consistent treatment at some point. @dominic @wesholing @kyleschmolze @llkats ![screen shot 2018-07-07 at 9 25 01 pm](https://user-images.githubusercontent.com/13740788/42416836-0d71515e-822e-11e8-853a-a50b61376a9d.png)
1.0
CODE : Links : opening in new tabs inconsistently - URLs: https://www.eastbaydsa.org https://www.eastbaydsa.org/about https://www.eastbaydsa.org/resources https://www.eastbaydsa.org/donate https://www.eastbaydsa.org/join I'm outlining the inconsistent treatment of links opening in new tabs below. My suggestion would be to have all internal links open in the same tab, perhaps with the exception of PDFs; and for links to other sites to open in new tabs. On the homepage, links for Single Payer and Learn More open in new tabs, while other links on the page (events / top navigation) open in the existing tab. It seems all the links on the homepage are internal. On the About page, links in copy open in a new tab, while links in the colored pages open in the existing tab. On the Resources page, all links are part of copy, and they all open in a new tab. On the Donate page, buttons open new tabs, though I think this makes sense as it's a different page. On the Join page, the button for National DSA opens in the existing tab. Facebook and Twitter in the bottom nav open in the existing tab. This is small, but would be great to have a consistent treatment at some point. @dominic @wesholing @kyleschmolze @llkats ![screen shot 2018-07-07 at 9 25 01 pm](https://user-images.githubusercontent.com/13740788/42416836-0d71515e-822e-11e8-853a-a50b61376a9d.png)
non_test
code links opening in new tabs inconsistently urls i m outlining the inconsistent treatment of links opening in new tabs below my suggestion would be to have all internal links open in the same tab perhaps with the exception of pdfs and for links to other sites to open in new tabs on the homepage links for single payer and learn more open in new tabs while other links on the page events top navigation open in the existing tab it seems all the links on the homepage are internal on the about page links in copy open in a new tab while links in the colored pages open in the existing tab on the resources page all links are part of copy and they all open in a new tab on the donate page buttons open new tabs though i think this makes sense as it s a different page on the join page the button for national dsa opens in the existing tab facebook and twitter in the bottom nav open in the existing tab this is small but would be great to have a consistent treatment at some point dominic wesholing kyleschmolze llkats
0
24,032
10,964,286,447
IssuesEvent
2019-11-27 22:06:13
Tbaut/hasura-auth
https://api.github.com/repos/Tbaut/hasura-auth
closed
Use asymetric encryption for JWT tokens
i-1-security needs front-end sync s-auth-server s-hasura
We currently use symmetric encryption, meaning that if the secret leaks on hasura server, JWT can be forged. Using asymmetric encryption solves this.
True
Use asymetric encryption for JWT tokens - We currently use symmetric encryption, meaning that if the secret leaks on hasura server, JWT can be forged. Using asymmetric encryption solves this.
non_test
use asymetric encryption for jwt tokens we currently use symmetric encryption meaning that if the secret leaks on hasura server jwt can be forged using asymmetric encryption solves this
0
286,254
24,734,029,852
IssuesEvent
2022-10-20 20:11:21
aws/aws-lambda-dotnet
https://api.github.com/repos/aws/aws-lambda-dotnet
closed
Possibility to host locally a Lambda function via the new Mock Tool
duplicate feature-request Lambda-Test-Tool module/lambda-test-tool A
Hi! I was thinking about playing around with the Lambda Mock tool. Specifically I'd like to have the possibility to "host" the function like we do here: https://github.com/emgdev/lambda-local-runner I imagine the user experience to be something like 1. developer develop a lambda function via the template 2. developer hits F5 3. browser starts with possibility to start an execution with given data 4. developer selects another tab ("hosting") 5. developer selects port number 6. developer hits "start hosting" button 7. an http server accepting request on the loopback interface on the selected port number is started 8. developer fires requests from another service towards the local endpoint
2.0
Possibility to host locally a Lambda function via the new Mock Tool - Hi! I was thinking about playing around with the Lambda Mock tool. Specifically I'd like to have the possibility to "host" the function like we do here: https://github.com/emgdev/lambda-local-runner I imagine the user experience to be something like 1. developer develop a lambda function via the template 2. developer hits F5 3. browser starts with possibility to start an execution with given data 4. developer selects another tab ("hosting") 5. developer selects port number 6. developer hits "start hosting" button 7. an http server accepting request on the loopback interface on the selected port number is started 8. developer fires requests from another service towards the local endpoint
test
possibility to host locally a lambda function via the new mock tool hi i was thinking about playing around with the lambda mock tool specifically i d like to have the possibility to host the function like we do here i imagine the user experience to be something like developer develop a lambda function via the template developer hits browser starts with possibility to start an execution with given data developer selects another tab hosting developer selects port number developer hits start hosting button an http server accepting request on the loopback interface on the selected port number is started developer fires requests from another service towards the local endpoint
1
104,949
9,013,105,493
IssuesEvent
2019-02-05 18:36:42
mgcrea/angular-strap
https://api.github.com/repos/mgcrea/angular-strap
closed
Typeahead onKeyDown fires twice in some case
directive-typeahead needs-investigation needs-test-case possible-bug question stale
Good time of day! I'd like to know about implementing of this [part of typeahead](https://github.com/mgcrea/angular-strap/blob/master/src/typeahead/typeahead.js#L151), why is there doesn't exist some checks on some sort of multiple attachments of handler to element? In some cases i got two or more handlers of keyDown event on same element, thus i have ruined logic of selecting by keys... I will be very grateful! Thank you! PS Big apologies for my english ^_^'
1.0
Typeahead onKeyDown fires twice in some case - Good time of day! I'd like to know about implementing of this [part of typeahead](https://github.com/mgcrea/angular-strap/blob/master/src/typeahead/typeahead.js#L151), why is there doesn't exist some checks on some sort of multiple attachments of handler to element? In some cases i got two or more handlers of keyDown event on same element, thus i have ruined logic of selecting by keys... I will be very grateful! Thank you! PS Big apologies for my english ^_^'
test
typeahead onkeydown fires twice in some case good time of day i d like to know about implementing of this why is there doesn t exist some checks on some sort of multiple attachments of handler to element in some cases i got two or more handlers of keydown event on same element thus i have ruined logic of selecting by keys i will be very grateful thank you ps big apologies for my english
1
302,265
26,135,827,000
IssuesEvent
2022-12-29 11:59:55
wazuh/wazuh
https://api.github.com/repos/wazuh/wazuh
closed
Release 4.4.0 - Alpha 2 - E2E UX tests - Demo environment
type/test/manual team/qa subteam/qa-rainbow release test/4.4.0 role/qa-binary-beats
The following issue aims to run the specified test for the current release candidate, report the results, and open new issues for any encountered errors. ## Test information | | | |-------------------------|--------------------------------------------| | **Test name** |Demo environment| | **Category** |Wazuh App| | **Deployment option** |Demo environment| | **Main release issue** | https://github.com/wazuh/wazuh/issues/15746 | | **Main E2E UX test issue** | https://github.com/wazuh/wazuh/issues/15749 | | **Release candidate #** | Alpha 2 | ## Test description <!-- Indicate through a list of checkboxes the suggested checks to be carried out by the QA tester --> - [x] (**T1**): - No errors or warnings found in logs - [x] (**T2**): - The daemons are running with the correct user - [x] (**T3**): - The status of the Wazuh Indexer clusters is as expected. - [x] (**T4**): - No errors in the browser's developer console when browsing the App - [x] (**T5**): - Alerts are being generated for each of the modules configured for this purpose - [x] (**T6**): - No warning symbols in Discover when expanding a document - [x] (**T7**): - Alert generated ## Test report procedure All test results must have one of the following statuses: | | | |---------------------------------|--------------------------------------------| | :green_circle: | All checks passed. | | :red_circle: | There is at least one failed result. | | :yellow_circle: | There is at least one expected failure or skipped test and no failures. | ## Conclusions | **Status** | **Test** | **Failure type** | **Raised Issues** | **Notes** | |----------------|-------------|---------------------|----------------|-------------| | :red_circle: | No errors or warnings found in logs | API/Dashboard/Manager | - | https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365356124 | | :green_circle: | The daemons are running with the correct user | - | - |https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365403808 | | :green_circle: | The status of the Wazuh Indexer clusters is as expected | - | - | https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365408819 | | :red_circle: | No errors in the browser's developer console when browsing the App | API/Dashboard | [`#5043`](https://github.com/wazuh/wazuh-kibana-app/issues/5043) [`#1390`](https://github.com/wazuh/wazuh-splunk/issues/1390) [`#1389`](https://github.com/wazuh/wazuh-splunk/issues/1389) [`#1388`](https://github.com/wazuh/wazuh-splunk/issues/1388 )| https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365403808 | | :green_circle: | Alerts are being generated for each of the modules configured for this purpose | - | - | https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365879556 | | :green_circle: | No warning symbols in Discover when expanding a document | - | - | https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365910894| | :green_circle: | Generate an alert and check it in the web UI | - | - | https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365920045 | ## Auditors' validation The definition of done for this one is the validation of the conclusions and the test results from all auditors. All checks from below must be accepted in order to close this issue. - [x] @alberpilot - [x] @davidjiglesias
2.0
Release 4.4.0 - Alpha 2 - E2E UX tests - Demo environment - The following issue aims to run the specified test for the current release candidate, report the results, and open new issues for any encountered errors. ## Test information | | | |-------------------------|--------------------------------------------| | **Test name** |Demo environment| | **Category** |Wazuh App| | **Deployment option** |Demo environment| | **Main release issue** | https://github.com/wazuh/wazuh/issues/15746 | | **Main E2E UX test issue** | https://github.com/wazuh/wazuh/issues/15749 | | **Release candidate #** | Alpha 2 | ## Test description <!-- Indicate through a list of checkboxes the suggested checks to be carried out by the QA tester --> - [x] (**T1**): - No errors or warnings found in logs - [x] (**T2**): - The daemons are running with the correct user - [x] (**T3**): - The status of the Wazuh Indexer clusters is as expected. - [x] (**T4**): - No errors in the browser's developer console when browsing the App - [x] (**T5**): - Alerts are being generated for each of the modules configured for this purpose - [x] (**T6**): - No warning symbols in Discover when expanding a document - [x] (**T7**): - Alert generated ## Test report procedure All test results must have one of the following statuses: | | | |---------------------------------|--------------------------------------------| | :green_circle: | All checks passed. | | :red_circle: | There is at least one failed result. | | :yellow_circle: | There is at least one expected failure or skipped test and no failures. | ## Conclusions | **Status** | **Test** | **Failure type** | **Raised Issues** | **Notes** | |----------------|-------------|---------------------|----------------|-------------| | :red_circle: | No errors or warnings found in logs | API/Dashboard/Manager | - | https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365356124 | | :green_circle: | The daemons are running with the correct user | - | - |https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365403808 | | :green_circle: | The status of the Wazuh Indexer clusters is as expected | - | - | https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365408819 | | :red_circle: | No errors in the browser's developer console when browsing the App | API/Dashboard | [`#5043`](https://github.com/wazuh/wazuh-kibana-app/issues/5043) [`#1390`](https://github.com/wazuh/wazuh-splunk/issues/1390) [`#1389`](https://github.com/wazuh/wazuh-splunk/issues/1389) [`#1388`](https://github.com/wazuh/wazuh-splunk/issues/1388 )| https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365403808 | | :green_circle: | Alerts are being generated for each of the modules configured for this purpose | - | - | https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365879556 | | :green_circle: | No warning symbols in Discover when expanding a document | - | - | https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365910894| | :green_circle: | Generate an alert and check it in the web UI | - | - | https://github.com/wazuh/wazuh/issues/15795#issuecomment-1365920045 | ## Auditors' validation The definition of done for this one is the validation of the conclusions and the test results from all auditors. All checks from below must be accepted in order to close this issue. - [x] @alberpilot - [x] @davidjiglesias
test
release alpha ux tests demo environment the following issue aims to run the specified test for the current release candidate report the results and open new issues for any encountered errors test information test name demo environment category wazuh app deployment option demo environment main release issue main ux test issue release candidate alpha test description no errors or warnings found in logs the daemons are running with the correct user the status of the wazuh indexer clusters is as expected no errors in the browser s developer console when browsing the app alerts are being generated for each of the modules configured for this purpose no warning symbols in discover when expanding a document alert generated test report procedure all test results must have one of the following statuses green circle all checks passed red circle there is at least one failed result yellow circle there is at least one expected failure or skipped test and no failures conclusions status test failure type raised issues notes red circle no errors or warnings found in logs api dashboard manager green circle the daemons are running with the correct user green circle the status of the wazuh indexer clusters is as expected red circle no errors in the browser s developer console when browsing the app api dashboard green circle alerts are being generated for each of the modules configured for this purpose green circle no warning symbols in discover when expanding a document green circle generate an alert and check it in the web ui auditors validation the definition of done for this one is the validation of the conclusions and the test results from all auditors all checks from below must be accepted in order to close this issue alberpilot davidjiglesias
1
160,548
12,517,042,443
IssuesEvent
2020-06-03 10:25:16
aliasrobotics/RVD
https://api.github.com/repos/aliasrobotics/RVD
closed
RVD#2369: Starting a process with a shell, possible injection detected, security i..., /opt/ros_melodic_ws/src/stage/tests/worldfile/test.py:20
bandit bug duplicate invalid static analysis testing triage
```yaml { "id": 2369, "title": "RVD#2369: Starting a process with a shell, possible injection detected, security i..., /opt/ros_melodic_ws/src/stage/tests/worldfile/test.py:20", "type": "bug", "description": "HIGH confidence of HIGH severity bug. Starting a process with a shell, possible injection detected, security issue. at /opt/ros_melodic_ws/src/stage/tests/worldfile/test.py:20 See links for more info on the bug.", "cwe": "None", "cve": "None", "keywords": [ "bandit", "bug", "static analysis", "testing", "triage", "bug" ], "system": "", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": [ "https://github.com/aliasrobotics/RVD/issues/2369", "https://bandit.readthedocs.io/en/latest/plugins/b605_start_process_with_a_shell.html" ], "flaw": { "phase": "testing", "specificity": "subject-specific", "architectural-location": "application-specific", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-06-02 (11:55)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-06-02 (11:55)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "https://github.com/aliasrobotics/RVD/issues/2369", "reproducibility": "always", "trace": "/opt/ros_melodic_ws/src/stage/tests/worldfile/test.py:20", "reproduction": "See artifacts below (if available)", "reproduction-image": "" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
1.0
RVD#2369: Starting a process with a shell, possible injection detected, security i..., /opt/ros_melodic_ws/src/stage/tests/worldfile/test.py:20 - ```yaml { "id": 2369, "title": "RVD#2369: Starting a process with a shell, possible injection detected, security i..., /opt/ros_melodic_ws/src/stage/tests/worldfile/test.py:20", "type": "bug", "description": "HIGH confidence of HIGH severity bug. Starting a process with a shell, possible injection detected, security issue. at /opt/ros_melodic_ws/src/stage/tests/worldfile/test.py:20 See links for more info on the bug.", "cwe": "None", "cve": "None", "keywords": [ "bandit", "bug", "static analysis", "testing", "triage", "bug" ], "system": "", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": [ "https://github.com/aliasrobotics/RVD/issues/2369", "https://bandit.readthedocs.io/en/latest/plugins/b605_start_process_with_a_shell.html" ], "flaw": { "phase": "testing", "specificity": "subject-specific", "architectural-location": "application-specific", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-06-02 (11:55)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-06-02 (11:55)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "https://github.com/aliasrobotics/RVD/issues/2369", "reproducibility": "always", "trace": "/opt/ros_melodic_ws/src/stage/tests/worldfile/test.py:20", "reproduction": "See artifacts below (if available)", "reproduction-image": "" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
test
rvd starting a process with a shell possible injection detected security i opt ros melodic ws src stage tests worldfile test py yaml id title rvd starting a process with a shell possible injection detected security i opt ros melodic ws src stage tests worldfile test py type bug description high confidence of high severity bug starting a process with a shell possible injection detected security issue at opt ros melodic ws src stage tests worldfile test py see links for more info on the bug cwe none cve none keywords bandit bug static analysis testing triage bug system vendor null severity rvss score rvss vector severity description cvss score cvss vector links flaw phase testing specificity subject specific architectural location application specific application n a subsystem n a package n a languages none date detected detected by alias robotics detected by method testing static date reported reported by alias robotics reported by relationship automatic issue reproducibility always trace opt ros melodic ws src stage tests worldfile test py reproduction see artifacts below if available reproduction image exploitation description exploitation image exploitation vector mitigation description pull request date mitigation
1
21,819
6,223,405,707
IssuesEvent
2017-07-10 11:50:16
overturetool/overture-fmu
https://api.github.com/repos/overturetool/overture-fmu
opened
Source code exports prints lots of stuff with log TRACE but the log4j.properties only states Error
bug C Source Code
There is someting wrong with the log4j configuration in the exporter when used on the command line with option `-export source` it prints lots of stuff like: ``` 2017-07-10T13:47:39.489 DEBUG [org.overture.codegen.vdm2c.VTableGenerator] - VTable: -------------- VTable for BoolPort------------- _Z8BoolPortEB: BoolPort -> BoolPort _Z8setValueEB: BoolPort -> setValue _Z8getValueEV: BoolPort -> getValue _Z8BoolPortEV: BoolPort -> BoolPort ---------- VTable override for Port--------- _Z8getValueEV: Port -> getValue overriden by BoolPort -> getValue ``` but it should not print anything when set to `Error`
1.0
Source code exports prints lots of stuff with log TRACE but the log4j.properties only states Error - There is someting wrong with the log4j configuration in the exporter when used on the command line with option `-export source` it prints lots of stuff like: ``` 2017-07-10T13:47:39.489 DEBUG [org.overture.codegen.vdm2c.VTableGenerator] - VTable: -------------- VTable for BoolPort------------- _Z8BoolPortEB: BoolPort -> BoolPort _Z8setValueEB: BoolPort -> setValue _Z8getValueEV: BoolPort -> getValue _Z8BoolPortEV: BoolPort -> BoolPort ---------- VTable override for Port--------- _Z8getValueEV: Port -> getValue overriden by BoolPort -> getValue ``` but it should not print anything when set to `Error`
non_test
source code exports prints lots of stuff with log trace but the properties only states error there is someting wrong with the configuration in the exporter when used on the command line with option export source it prints lots of stuff like debug vtable vtable for boolport boolport boolport boolport setvalue boolport getvalue boolport boolport vtable override for port port getvalue overriden by boolport getvalue but it should not print anything when set to error
0
157,047
12,344,282,235
IssuesEvent
2020-05-15 06:36:57
mozilla-mobile/fenix
https://api.github.com/repos/mozilla-mobile/fenix
closed
[Bug] Fix intermittent UI test failure - createBookmarkFolderTest
eng:automation intermittent-test needs:triage 🐞 bug
``` 02-26 04:38:57.495: E/TestRunner(7854): ----- begin exception ----- 02-26 04:38:57.593: I/GceGrallocRegionRegistry(1407): Mapped gralloc-1407.68 hnd=0xa6f9c180 fd=49 base=0xa0dee000 format=RGBA_8888(0x1) width=1440 height=2560 02-26 04:38:57.639: E/TestRunner(7854): androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: with id: org.mozilla.fenix.debug:id/title 02-26 04:38:57.639: E/TestRunner(7854): View Hierarchy: 02-26 04:38:57.639: E/TestRunner(7854): +>DecorView{id=-1, visibility=VISIBLE, width=1440, height=2560, has-focus=true, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=WM.LayoutParams{(0,0)(fillxfill) sim=#10 ty=1 fl=#81010100 pfl=0x20000 wanim=0x7f130300 vsysui=0x2000 needsMenuKey=2}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} ``` https://console.firebase.google.com/u/0/project/moz-fenix/testlab/histories/bh.66b7091e15d53d45/matrices/8255769918756530997/executions/bs.c8afcc8803588cfd/testcases/1
1.0
[Bug] Fix intermittent UI test failure - createBookmarkFolderTest - ``` 02-26 04:38:57.495: E/TestRunner(7854): ----- begin exception ----- 02-26 04:38:57.593: I/GceGrallocRegionRegistry(1407): Mapped gralloc-1407.68 hnd=0xa6f9c180 fd=49 base=0xa0dee000 format=RGBA_8888(0x1) width=1440 height=2560 02-26 04:38:57.639: E/TestRunner(7854): androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: with id: org.mozilla.fenix.debug:id/title 02-26 04:38:57.639: E/TestRunner(7854): View Hierarchy: 02-26 04:38:57.639: E/TestRunner(7854): +>DecorView{id=-1, visibility=VISIBLE, width=1440, height=2560, has-focus=true, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=WM.LayoutParams{(0,0)(fillxfill) sim=#10 ty=1 fl=#81010100 pfl=0x20000 wanim=0x7f130300 vsysui=0x2000 needsMenuKey=2}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2} ``` https://console.firebase.google.com/u/0/project/moz-fenix/testlab/histories/bh.66b7091e15d53d45/matrices/8255769918756530997/executions/bs.c8afcc8803588cfd/testcases/1
test
fix intermittent ui test failure createbookmarkfoldertest e testrunner begin exception i gcegrallocregionregistry mapped gralloc hnd fd base format rgba width height e testrunner androidx test espresso nomatchingviewexception no views in hierarchy found matching with id org mozilla fenix debug id title e testrunner view hierarchy e testrunner decorview id visibility visible width height has focus true has focusable true has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params wm layoutparams fillxfill sim ty fl pfl wanim vsysui needsmenukey tag null root is layout requested false has input connection false x y child count
1
78,988
22,581,318,401
IssuesEvent
2022-06-28 11:55:02
keyboardio/Kaleidoscope
https://api.github.com/repos/keyboardio/Kaleidoscope
opened
qmk-cli-like helper
enhancement build-system
I've recently worked a little with QMK, and their `qmk` utility is very, very handy. We should have something similar for Kaleidoscope too. A tool that helps us set up the environment (installs arduino, checks out the repos, sets things up, that kinda stuff), helps us compile sketches (dispatching most of it to arduino-cli, mind you), flash (again, dispatching to arduino for most of it), upgrade the repos, and so on and so forth. It could also do the eeprom save & restore dance around flashing, something which is considerably harder to do on the arduino side. Or perhaps we could do both! Offer save / restore functionality, and `boards.txt` could use this tool to do the save / restore dance. For this to work, the utility needs to be something that can be easily shipped, preferably as a single, statically compiled executable of reasonable size.
1.0
qmk-cli-like helper - I've recently worked a little with QMK, and their `qmk` utility is very, very handy. We should have something similar for Kaleidoscope too. A tool that helps us set up the environment (installs arduino, checks out the repos, sets things up, that kinda stuff), helps us compile sketches (dispatching most of it to arduino-cli, mind you), flash (again, dispatching to arduino for most of it), upgrade the repos, and so on and so forth. It could also do the eeprom save & restore dance around flashing, something which is considerably harder to do on the arduino side. Or perhaps we could do both! Offer save / restore functionality, and `boards.txt` could use this tool to do the save / restore dance. For this to work, the utility needs to be something that can be easily shipped, preferably as a single, statically compiled executable of reasonable size.
non_test
qmk cli like helper i ve recently worked a little with qmk and their qmk utility is very very handy we should have something similar for kaleidoscope too a tool that helps us set up the environment installs arduino checks out the repos sets things up that kinda stuff helps us compile sketches dispatching most of it to arduino cli mind you flash again dispatching to arduino for most of it upgrade the repos and so on and so forth it could also do the eeprom save restore dance around flashing something which is considerably harder to do on the arduino side or perhaps we could do both offer save restore functionality and boards txt could use this tool to do the save restore dance for this to work the utility needs to be something that can be easily shipped preferably as a single statically compiled executable of reasonable size
0
77,423
9,565,076,341
IssuesEvent
2019-05-05 09:32:34
gitthermal/thermal
https://api.github.com/repos/gitthermal/thermal
opened
Commit related information to repository settings
Design Front end Git discussion 💡 Feature
## Description Add commit related information to the repository settings. #### For example - General - Last open - Last commit - User description - Working copy - Current Branch - Status
1.0
Commit related information to repository settings - ## Description Add commit related information to the repository settings. #### For example - General - Last open - Last commit - User description - Working copy - Current Branch - Status
non_test
commit related information to repository settings description add commit related information to the repository settings for example general last open last commit user description working copy current branch status
0
646,493
21,049,746,737
IssuesEvent
2022-03-31 19:27:37
trufflesuite/truffle
https://api.github.com/repos/trufflesuite/truffle
closed
Can't get value from deployed contract
needs investigated priority2 ⚠️
- [x] I've asked for help in the [Truffle Gitter](http://gitter.im/Consensys/truffle) before filing this issue. --------------------------- ## Issue I'm trying to use truffle on Quorum, so I followed tutorial - [Building dapps for Quorum: Private Enterprise Blockchains](https://www.trufflesuite.com/tutorials/building-dapps-for-quorum-private-enterprise-blockchains) ## Steps to Reproduce 1. unlike tutorial using vagrant, I use docker to build 4 nodes, but I also port forward them to 22000~22003 2. truffle init 3. edit `truffle-config.js` ```javascript networks: { development: { host: "127.0.0.1", // Localhost (default: none) port: 22000, network_id: "*", // Any network (default: none) gasPrice: 0, gas: 4500000, type: "quorum" }, } ``` 4. create `contract/SimpleStorage.sol` and change required solc to `^0.5.16`, then command `truffle compile` 5. create `migrations/2_deploye_simplestorage.js` and modify `privateFor` parameter ```javascript var SimpleStorage = artifacts.require("SimpleStorage"); module.exports = function(deployer) { // Pass 42 to the contract as the first constructor parameter deployer.deploy(SimpleStorage, 42, {privateFor: ["QE/RfPZh4yom6qPZOk8gfFLMeePGE+F+uG4532VinUs="]}) }; ``` 6. unlock account: `geth attach --exec "personal.unlockAccount(eth.accounts[0], '', 60)" http://127.0.0.1:22000` 7. deploy contract: `truffle migrate` ## Expected Behavior According to tutorial, I should be able to get value from contract once my `truffle migrate` done ```javascript truffle console truffle(development)> SimpleStorage.deployed().then(function(instance) { return instance.get(); }) { [String: '42'] s: 1, e: 1, c: [ 42 ] } ``` ## Actual Results ```javascript truffle console truffle(development)> SimpleStorage.deployed().then(function(instance) { return instance.get(); }) BN { negative: 0, words: [ 0, <1 empty item> ], length: 1, red: null } ``` ## Environment * Operating System: Ubuntu 16.04.6 LTS * Ethereum client: 1.8.27-stable ( host ) / 1.8.18-stable + Quorum 2.4.0 ( container ) * Truffle version (`truffle version`): v5.1.9 * node version (`node --version`): v13.6.0 * npm version (`npm --version`): 6.13.4
1.0
Can't get value from deployed contract - - [x] I've asked for help in the [Truffle Gitter](http://gitter.im/Consensys/truffle) before filing this issue. --------------------------- ## Issue I'm trying to use truffle on Quorum, so I followed tutorial - [Building dapps for Quorum: Private Enterprise Blockchains](https://www.trufflesuite.com/tutorials/building-dapps-for-quorum-private-enterprise-blockchains) ## Steps to Reproduce 1. unlike tutorial using vagrant, I use docker to build 4 nodes, but I also port forward them to 22000~22003 2. truffle init 3. edit `truffle-config.js` ```javascript networks: { development: { host: "127.0.0.1", // Localhost (default: none) port: 22000, network_id: "*", // Any network (default: none) gasPrice: 0, gas: 4500000, type: "quorum" }, } ``` 4. create `contract/SimpleStorage.sol` and change required solc to `^0.5.16`, then command `truffle compile` 5. create `migrations/2_deploye_simplestorage.js` and modify `privateFor` parameter ```javascript var SimpleStorage = artifacts.require("SimpleStorage"); module.exports = function(deployer) { // Pass 42 to the contract as the first constructor parameter deployer.deploy(SimpleStorage, 42, {privateFor: ["QE/RfPZh4yom6qPZOk8gfFLMeePGE+F+uG4532VinUs="]}) }; ``` 6. unlock account: `geth attach --exec "personal.unlockAccount(eth.accounts[0], '', 60)" http://127.0.0.1:22000` 7. deploy contract: `truffle migrate` ## Expected Behavior According to tutorial, I should be able to get value from contract once my `truffle migrate` done ```javascript truffle console truffle(development)> SimpleStorage.deployed().then(function(instance) { return instance.get(); }) { [String: '42'] s: 1, e: 1, c: [ 42 ] } ``` ## Actual Results ```javascript truffle console truffle(development)> SimpleStorage.deployed().then(function(instance) { return instance.get(); }) BN { negative: 0, words: [ 0, <1 empty item> ], length: 1, red: null } ``` ## Environment * Operating System: Ubuntu 16.04.6 LTS * Ethereum client: 1.8.27-stable ( host ) / 1.8.18-stable + Quorum 2.4.0 ( container ) * Truffle version (`truffle version`): v5.1.9 * node version (`node --version`): v13.6.0 * npm version (`npm --version`): 6.13.4
non_test
can t get value from deployed contract i ve asked for help in the before filing this issue issue i m trying to use truffle on quorum so i followed tutorial steps to reproduce unlike tutorial using vagrant i use docker to build nodes but i also port forward them to truffle init edit truffle config js javascript networks development host localhost default none port network id any network default none gasprice gas type quorum create contract simplestorage sol and change required solc to then command truffle compile create migrations deploye simplestorage js and modify privatefor parameter javascript var simplestorage artifacts require simplestorage module exports function deployer pass to the contract as the first constructor parameter deployer deploy simplestorage privatefor unlock account geth attach exec personal unlockaccount eth accounts deploy contract truffle migrate expected behavior according to tutorial i should be able to get value from contract once my truffle migrate done javascript truffle console truffle development simplestorage deployed then function instance return instance get s e c actual results javascript truffle console truffle development simplestorage deployed then function instance return instance get bn negative words length red null environment operating system ubuntu lts ethereum client stable host stable quorum container truffle version truffle version node version node version npm version npm version
0
263,291
8,287,542,089
IssuesEvent
2018-09-19 09:10:35
opencollective/opencollective
https://api.github.com/repos/opencollective/opencollective
closed
Need Help: svg is not update to date
Bug Fix Fridays bug priority support
<!-- Thank you for taking the time to report an issue 🙏 The easier it is for us to reproduce it, the faster we can solve it. So please try to be as complete as possible when filing your issue. --> URL: https://opencollective.com/nuxtjs/contributors.svg Expected result: Contributors and their avatars can be same as [GitHub](ttps://github.com/nuxt/nuxt.js/graphs/contributors) Browser: Chrome 70 <!-- Bonus point if you can add a screenshot :-) --> So is there any way to sync contributors list or avatars from GitHub in OpenCollective ? <!-- Thank you and have a wonderful day/evening! (and sorry for inconvenience! We'll do our best to solve this ASAP) -->
1.0
Need Help: svg is not update to date - <!-- Thank you for taking the time to report an issue 🙏 The easier it is for us to reproduce it, the faster we can solve it. So please try to be as complete as possible when filing your issue. --> URL: https://opencollective.com/nuxtjs/contributors.svg Expected result: Contributors and their avatars can be same as [GitHub](ttps://github.com/nuxt/nuxt.js/graphs/contributors) Browser: Chrome 70 <!-- Bonus point if you can add a screenshot :-) --> So is there any way to sync contributors list or avatars from GitHub in OpenCollective ? <!-- Thank you and have a wonderful day/evening! (and sorry for inconvenience! We'll do our best to solve this ASAP) -->
non_test
need help svg is not update to date thank you for taking the time to report an issue 🙏 the easier it is for us to reproduce it the faster we can solve it so please try to be as complete as possible when filing your issue url expected result contributors and their avatars can be same as ttps github com nuxt nuxt js graphs contributors browser chrome so is there any way to sync contributors list or avatars from github in opencollective thank you and have a wonderful day evening and sorry for inconvenience we ll do our best to solve this asap
0
594,467
18,046,305,909
IssuesEvent
2021-09-19 00:21:25
antrea-io/antrea
https://api.github.com/repos/antrea-io/antrea
closed
Pod-to-Service UDP bandwidth is relatively low
kind/bug lifecycle/stale priority/important-longterm
**Describe the bug** According to Alexis Ducastel's benchmark result: [Benchmark results of Kubernetes network plugins (CNI) over 10Gbit/s network (Updated: August 2020)](https://itnext.io/benchmark-results-of-kubernetes-network-plugins-cni-over-10gbit-s-network-updated-august-2020-6e1b757b9e49), Antrea performs well in the following metrics: - Pod-to-Pod TCP bandwidth (9826 Mbps) - Pod-to-Pod UDP bandwidth (9796 Mbps) - Pod-to-Service TCP bandwidth (9798 Mbps) but not **Pod-to-Service UDP** bandwidth, which is 8618 Mbps. **To Reproduce** Run the benchmark on your own cluster with the release of our “Kubernetes Network Benchmark” tool : knb (https://github.com/InfraBuilder/k8s-bench-suite). **Expected** Pod-to-Service UDP bandwidth should be close to Pod-to-Pod UDP bandwidth even without AntreaProxy enabled. **Versions:** Please provide the following information: - Antrea version (Docker image tag). 0.9.1
1.0
Pod-to-Service UDP bandwidth is relatively low - **Describe the bug** According to Alexis Ducastel's benchmark result: [Benchmark results of Kubernetes network plugins (CNI) over 10Gbit/s network (Updated: August 2020)](https://itnext.io/benchmark-results-of-kubernetes-network-plugins-cni-over-10gbit-s-network-updated-august-2020-6e1b757b9e49), Antrea performs well in the following metrics: - Pod-to-Pod TCP bandwidth (9826 Mbps) - Pod-to-Pod UDP bandwidth (9796 Mbps) - Pod-to-Service TCP bandwidth (9798 Mbps) but not **Pod-to-Service UDP** bandwidth, which is 8618 Mbps. **To Reproduce** Run the benchmark on your own cluster with the release of our “Kubernetes Network Benchmark” tool : knb (https://github.com/InfraBuilder/k8s-bench-suite). **Expected** Pod-to-Service UDP bandwidth should be close to Pod-to-Pod UDP bandwidth even without AntreaProxy enabled. **Versions:** Please provide the following information: - Antrea version (Docker image tag). 0.9.1
non_test
pod to service udp bandwidth is relatively low describe the bug according to alexis ducastel s benchmark result antrea performs well in the following metrics pod to pod tcp bandwidth mbps pod to pod udp bandwidth mbps pod to service tcp bandwidth mbps but not pod to service udp bandwidth which is mbps to reproduce run the benchmark on your own cluster with the release of our “kubernetes network benchmark” tool knb expected pod to service udp bandwidth should be close to pod to pod udp bandwidth even without antreaproxy enabled versions please provide the following information antrea version docker image tag
0
719,189
24,750,506,248
IssuesEvent
2022-10-21 13:23:17
ChainSafe/forest
https://api.github.com/repos/ChainSafe/forest
closed
Delete the `BlockStore` trait, move `BlockStoreExt`, and delete `forest_ipld_blockstore`
Priority: 4 - Low Maintenance Status: Needs Triage Ready
**Issue summary** <!-- A clear and concise description of what the task is. --> The `BlockStore` trait is just `FVM::Blockstore + Clone` and can be removed. The `BlockStoreExt` should be renamed to `BlockstoreExt` and moved to `forest_utils::db`. Then the `forest_ipld_blockstore` crate will be empty and can be removed. **Other information and links** <!-- Add any other context or screenshots about the issue here. --> https://github.com/ChainSafe/forest/blob/d716610c32e8a7774e8b9feb8ae0f2460fe51174/ipld/blockstore/src/lib.rs#L13 <!-- Thank you 🙏 -->
1.0
Delete the `BlockStore` trait, move `BlockStoreExt`, and delete `forest_ipld_blockstore` - **Issue summary** <!-- A clear and concise description of what the task is. --> The `BlockStore` trait is just `FVM::Blockstore + Clone` and can be removed. The `BlockStoreExt` should be renamed to `BlockstoreExt` and moved to `forest_utils::db`. Then the `forest_ipld_blockstore` crate will be empty and can be removed. **Other information and links** <!-- Add any other context or screenshots about the issue here. --> https://github.com/ChainSafe/forest/blob/d716610c32e8a7774e8b9feb8ae0f2460fe51174/ipld/blockstore/src/lib.rs#L13 <!-- Thank you 🙏 -->
non_test
delete the blockstore trait move blockstoreext and delete forest ipld blockstore issue summary the blockstore trait is just fvm blockstore clone and can be removed the blockstoreext should be renamed to blockstoreext and moved to forest utils db then the forest ipld blockstore crate will be empty and can be removed other information and links
0
165,929
20,627,781,772
IssuesEvent
2022-03-08 01:19:54
scrapedia/r18
https://api.github.com/repos/scrapedia/r18
opened
WS-2022-0091 (Medium) detected in Scrapy-1.8.0-py2.py3-none-any.whl
security vulnerability
## WS-2022-0091 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Scrapy-1.8.0-py2.py3-none-any.whl</b></p></summary> <p>A high-level Web Crawling and Web Scraping framework</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/3b/e4/69b87d7827abf03dea2ea984230d50f347b00a7a3897bc93f6ec3dafa494/Scrapy-1.8.0-py2.py3-none-any.whl">https://files.pythonhosted.org/packages/3b/e4/69b87d7827abf03dea2ea984230d50f347b00a7a3897bc93f6ec3dafa494/Scrapy-1.8.0-py2.py3-none-any.whl</a></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> Dependency Hierarchy: - Scrapy-Pipelines-0.2.tar.gz (Root Library) - :x: **Scrapy-1.8.0-py2.py3-none-any.whl** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Scrapy versions prior to 1.8.2 and prior to 2.6.0 are able to set cookies that are included in requests to any other domain sharing the same domain name suffix. <p>Publish Date: 2022-03-02 <p>URL: <a href=https://github.com/scrapy/scrapy/commit/e865c4430e58a4faa0e0766b23830f8423d6167a>WS-2022-0091</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-mfjm-vh54-3f96">https://github.com/advisories/GHSA-mfjm-vh54-3f96</a></p> <p>Release Date: 2022-03-02</p> <p>Fix Resolution: Scrapy - 1.8.2,2.6.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
WS-2022-0091 (Medium) detected in Scrapy-1.8.0-py2.py3-none-any.whl - ## WS-2022-0091 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>Scrapy-1.8.0-py2.py3-none-any.whl</b></p></summary> <p>A high-level Web Crawling and Web Scraping framework</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/3b/e4/69b87d7827abf03dea2ea984230d50f347b00a7a3897bc93f6ec3dafa494/Scrapy-1.8.0-py2.py3-none-any.whl">https://files.pythonhosted.org/packages/3b/e4/69b87d7827abf03dea2ea984230d50f347b00a7a3897bc93f6ec3dafa494/Scrapy-1.8.0-py2.py3-none-any.whl</a></p> <p>Path to dependency file: /requirements.txt</p> <p>Path to vulnerable library: /requirements.txt</p> <p> Dependency Hierarchy: - Scrapy-Pipelines-0.2.tar.gz (Root Library) - :x: **Scrapy-1.8.0-py2.py3-none-any.whl** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Scrapy versions prior to 1.8.2 and prior to 2.6.0 are able to set cookies that are included in requests to any other domain sharing the same domain name suffix. <p>Publish Date: 2022-03-02 <p>URL: <a href=https://github.com/scrapy/scrapy/commit/e865c4430e58a4faa0e0766b23830f8423d6167a>WS-2022-0091</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/advisories/GHSA-mfjm-vh54-3f96">https://github.com/advisories/GHSA-mfjm-vh54-3f96</a></p> <p>Release Date: 2022-03-02</p> <p>Fix Resolution: Scrapy - 1.8.2,2.6.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
ws medium detected in scrapy none any whl ws medium severity vulnerability vulnerable library scrapy none any whl a high level web crawling and web scraping framework library home page a href path to dependency file requirements txt path to vulnerable library requirements txt dependency hierarchy scrapy pipelines tar gz root library x scrapy none any whl vulnerable library found in base branch master vulnerability details scrapy versions prior to and prior to are able to set cookies that are included in requests to any other domain sharing the same domain name suffix publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution scrapy step up your open source security game with whitesource
0
44,617
18,107,263,299
IssuesEvent
2021-09-22 20:38:57
hashicorp/terraform-provider-azuread
https://api.github.com/repos/hashicorp/terraform-provider-azuread
closed
Use ARM VM assigned manage identity as SP to use Graph API [app role assignments]
enhancement question feature/service-principal
Edit by @manicminer: This should be solved with support for app role assignments --- Hello! I want to use managed identity service principle to get data from Microsoft Graph API (with a specific role). There is [instruction](https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/guides/managed_service_identity ), that says that this is possible: > Managed identities work in conjunction with Azure Resource Manager (ARM), Azure AD, and the Azure Instance Metadata Service (IMDS). > Azure AD creates an AD identity when you configure an Azure resource to use a system-assigned managed identity. I am trying to do this: ```hcl provider "azurerm" { features {} } provider "azuread" { } resource "azurerm_resource_group" "rg" { name = "melkikh" location = var.location } terraform { required_version = ">= 0.12" required_providers { azuread = { source = "hashicorp/azuread" version = "~> 1.5.0" } } } ## application service principle with specific role data "azuread_client_config" "current" {} resource "azuread_application" "melkikh_test_app" { display_name = "melkikh-test-app" owners = [data.azuread_client_config.current.object_id] sign_in_audience = "AzureADMyOrg" required_resource_access { # Microsoft Graph # az ad sp list --display-name "Microsoft Graph" --query '[].{appDisplayName:appDisplayName, appId:appId}' resource_app_id = "00000003-0000-0000-c000-000000000000" resource_access { # Group.Read.All" # az ad sp list --filter "appId eq '00000003-0000-0000-c000-000000000000'" id = "5b567255-7703-4780-807c-7be8301ae99b" type = "Role" } } } resource "azuread_application_app_role" "role" { display_name = "melkikh-test-app-role" description = "Read Group information from Microsoft Graph" application_object_id = azuread_application.melkikh_test_app.object_id allowed_member_types = ["Application"] enabled = true value = "Melkikh.Group.Read.All" } resource "azuread_service_principal" "sp" { application_id = azuread_application.melkikh_test_app.application_id app_role_assignment_required = false } ## instance with User Assigned managed identity resource "azurerm_linux_virtual_machine" "melkikh_vm" { name = var.hostname location = var.location resource_group_name = azurerm_resource_group.rg.name network_interface_ids = [azurerm_network_interface.nic.id] size = "Standard_B2s" admin_username = var.admin_username computer_name = var.hostname disable_password_authentication = true identity { type = "UserAssigned" identity_ids = [azuread_service_principal.sp.object_id] } source_image_reference { publisher = "Canonical" offer = "UbuntuServer" sku = "18.04-LTS" version = "latest" } os_disk { storage_account_type = "Standard_LRS" name = "${var.hostname}_os" caching = "ReadWrite" } admin_ssh_key { username = var.admin_username public_key = file(var.public_key_file) } } ``` and get an error: ```bash terraform apply random_string.dns-name: Refreshing state... [id=xku9] ... ╷ │ Error: Cannot parse Azure ID: parse "3905c5c8-1d59-4c26-b1cc-9a52d9d9352f": invalid URI for request │ │ with azurerm_linux_virtual_machine.melkikh_vm, │ on main.tf line 25, in resource "azurerm_linux_virtual_machine" "melkikh_vm": │ 25: resource "azurerm_linux_virtual_machine" "melkikh_vm" { │ ╵ ``` How can I use managed identity to work with Graph API? If it works only with `SystemAssigned` managed identity, that's ok for me, but I don't understand, how I can use `principalId` (like `azurerm_linux_virtual_machine.melkikh_vm.identity.0.principal_id`) assigned to VM, as application principal. Thanks.
1.0
Use ARM VM assigned manage identity as SP to use Graph API [app role assignments] - Edit by @manicminer: This should be solved with support for app role assignments --- Hello! I want to use managed identity service principle to get data from Microsoft Graph API (with a specific role). There is [instruction](https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/guides/managed_service_identity ), that says that this is possible: > Managed identities work in conjunction with Azure Resource Manager (ARM), Azure AD, and the Azure Instance Metadata Service (IMDS). > Azure AD creates an AD identity when you configure an Azure resource to use a system-assigned managed identity. I am trying to do this: ```hcl provider "azurerm" { features {} } provider "azuread" { } resource "azurerm_resource_group" "rg" { name = "melkikh" location = var.location } terraform { required_version = ">= 0.12" required_providers { azuread = { source = "hashicorp/azuread" version = "~> 1.5.0" } } } ## application service principle with specific role data "azuread_client_config" "current" {} resource "azuread_application" "melkikh_test_app" { display_name = "melkikh-test-app" owners = [data.azuread_client_config.current.object_id] sign_in_audience = "AzureADMyOrg" required_resource_access { # Microsoft Graph # az ad sp list --display-name "Microsoft Graph" --query '[].{appDisplayName:appDisplayName, appId:appId}' resource_app_id = "00000003-0000-0000-c000-000000000000" resource_access { # Group.Read.All" # az ad sp list --filter "appId eq '00000003-0000-0000-c000-000000000000'" id = "5b567255-7703-4780-807c-7be8301ae99b" type = "Role" } } } resource "azuread_application_app_role" "role" { display_name = "melkikh-test-app-role" description = "Read Group information from Microsoft Graph" application_object_id = azuread_application.melkikh_test_app.object_id allowed_member_types = ["Application"] enabled = true value = "Melkikh.Group.Read.All" } resource "azuread_service_principal" "sp" { application_id = azuread_application.melkikh_test_app.application_id app_role_assignment_required = false } ## instance with User Assigned managed identity resource "azurerm_linux_virtual_machine" "melkikh_vm" { name = var.hostname location = var.location resource_group_name = azurerm_resource_group.rg.name network_interface_ids = [azurerm_network_interface.nic.id] size = "Standard_B2s" admin_username = var.admin_username computer_name = var.hostname disable_password_authentication = true identity { type = "UserAssigned" identity_ids = [azuread_service_principal.sp.object_id] } source_image_reference { publisher = "Canonical" offer = "UbuntuServer" sku = "18.04-LTS" version = "latest" } os_disk { storage_account_type = "Standard_LRS" name = "${var.hostname}_os" caching = "ReadWrite" } admin_ssh_key { username = var.admin_username public_key = file(var.public_key_file) } } ``` and get an error: ```bash terraform apply random_string.dns-name: Refreshing state... [id=xku9] ... ╷ │ Error: Cannot parse Azure ID: parse "3905c5c8-1d59-4c26-b1cc-9a52d9d9352f": invalid URI for request │ │ with azurerm_linux_virtual_machine.melkikh_vm, │ on main.tf line 25, in resource "azurerm_linux_virtual_machine" "melkikh_vm": │ 25: resource "azurerm_linux_virtual_machine" "melkikh_vm" { │ ╵ ``` How can I use managed identity to work with Graph API? If it works only with `SystemAssigned` managed identity, that's ok for me, but I don't understand, how I can use `principalId` (like `azurerm_linux_virtual_machine.melkikh_vm.identity.0.principal_id`) assigned to VM, as application principal. Thanks.
non_test
use arm vm assigned manage identity as sp to use graph api edit by manicminer this should be solved with support for app role assignments hello i want to use managed identity service principle to get data from microsoft graph api with a specific role there is that says that this is possible managed identities work in conjunction with azure resource manager arm azure ad and the azure instance metadata service imds azure ad creates an ad identity when you configure an azure resource to use a system assigned managed identity i am trying to do this hcl provider azurerm features provider azuread resource azurerm resource group rg name melkikh location var location terraform required version required providers azuread source hashicorp azuread version application service principle with specific role data azuread client config current resource azuread application melkikh test app display name melkikh test app owners sign in audience azureadmyorg required resource access microsoft graph az ad sp list display name microsoft graph query appdisplayname appdisplayname appid appid resource app id resource access group read all az ad sp list filter appid eq id type role resource azuread application app role role display name melkikh test app role description read group information from microsoft graph application object id azuread application melkikh test app object id allowed member types enabled true value melkikh group read all resource azuread service principal sp application id azuread application melkikh test app application id app role assignment required false instance with user assigned managed identity resource azurerm linux virtual machine melkikh vm name var hostname location var location resource group name azurerm resource group rg name network interface ids size standard admin username var admin username computer name var hostname disable password authentication true identity type userassigned identity ids source image reference publisher canonical offer ubuntuserver sku lts version latest os disk storage account type standard lrs name var hostname os caching readwrite admin ssh key username var admin username public key file var public key file and get an error bash terraform apply random string dns name refreshing state ╷ │ error cannot parse azure id parse invalid uri for request │ │ with azurerm linux virtual machine melkikh vm │ on main tf line in resource azurerm linux virtual machine melkikh vm │ resource azurerm linux virtual machine melkikh vm │ ╵ how can i use managed identity to work with graph api if it works only with systemassigned managed identity that s ok for me but i don t understand how i can use principalid like azurerm linux virtual machine melkikh vm identity principal id assigned to vm as application principal thanks
0
219,202
17,070,723,424
IssuesEvent
2021-07-07 13:02:40
elastic/elasticsearch
https://api.github.com/repos/elastic/elasticsearch
closed
[CI] PersistentTasksExecutorIT tests failing
:Distributed/Task Management >test-failure Team:Distributed
**Build scan**: https://gradle-enterprise.elastic.co/s/utdg3q6rykt5e **Repro line**: ./gradlew ':server:internalClusterTest' --tests "org.elasticsearch.persistent.PersistentTasksExecutorIT*" -Dtests.seed=66C8283DC6B9CAFF -Dtests.locale=et-EE -Dtests.timezone=VST -Druntime.java=11 **Reproduces locally?**: No **Applicable branches**: Master **Failure history**: https://gradle-enterprise.elastic.co/scans/failures?failures.failureClassification=all_failures&failures.failureMessage=Execution%20failed%20for%20task%20*%0A%3E%20There%20were%20failing%20tests.%20See%20the%20report%20at:%20file:///*/*/*/*/build/reports/tests/*/index.html&search.relativeStartTime=P7D&search.timeZoneId=America/Denver **Failure excerpt**: Examples: ``` Expected: <1> |   -- | --   | but: was <8> |     | at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:18) |     | at org.junit.Assert.assertThat(Assert.java:956) |     | at org.junit.Assert.assertThat(Assert.java:923) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.lambda$waitForTaskToStart$8(PersistentTasksExecutorIT.java:401) |     | at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:973) |     | at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:946) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.waitForTaskToStart(PersistentTasksExecutorIT.java:399) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.testPersistentActionWithNoAvailableNode(PersistentTasksExecutorIT.java:138) |     |   |     | java.lang.AssertionError: |     | Expected: <0> |     | but: was <8> |     | at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:18) |     | at org.junit.Assert.assertThat(Assert.java:956) |     | at org.junit.Assert.assertThat(Assert.java:923) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.lambda$assertNoRunningTasks$9(PersistentTasksExecutorIT.java:425) |     | at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:973) |     | at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:946) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.assertNoRunningTasks(PersistentTasksExecutorIT.java:420) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.cleanup(PersistentTasksExecutorIT.java:63) ```
1.0
[CI] PersistentTasksExecutorIT tests failing - **Build scan**: https://gradle-enterprise.elastic.co/s/utdg3q6rykt5e **Repro line**: ./gradlew ':server:internalClusterTest' --tests "org.elasticsearch.persistent.PersistentTasksExecutorIT*" -Dtests.seed=66C8283DC6B9CAFF -Dtests.locale=et-EE -Dtests.timezone=VST -Druntime.java=11 **Reproduces locally?**: No **Applicable branches**: Master **Failure history**: https://gradle-enterprise.elastic.co/scans/failures?failures.failureClassification=all_failures&failures.failureMessage=Execution%20failed%20for%20task%20*%0A%3E%20There%20were%20failing%20tests.%20See%20the%20report%20at:%20file:///*/*/*/*/build/reports/tests/*/index.html&search.relativeStartTime=P7D&search.timeZoneId=America/Denver **Failure excerpt**: Examples: ``` Expected: <1> |   -- | --   | but: was <8> |     | at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:18) |     | at org.junit.Assert.assertThat(Assert.java:956) |     | at org.junit.Assert.assertThat(Assert.java:923) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.lambda$waitForTaskToStart$8(PersistentTasksExecutorIT.java:401) |     | at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:973) |     | at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:946) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.waitForTaskToStart(PersistentTasksExecutorIT.java:399) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.testPersistentActionWithNoAvailableNode(PersistentTasksExecutorIT.java:138) |     |   |     | java.lang.AssertionError: |     | Expected: <0> |     | but: was <8> |     | at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:18) |     | at org.junit.Assert.assertThat(Assert.java:956) |     | at org.junit.Assert.assertThat(Assert.java:923) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.lambda$assertNoRunningTasks$9(PersistentTasksExecutorIT.java:425) |     | at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:973) |     | at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:946) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.assertNoRunningTasks(PersistentTasksExecutorIT.java:420) |     | at org.elasticsearch.persistent.PersistentTasksExecutorIT.cleanup(PersistentTasksExecutorIT.java:63) ```
test
persistenttasksexecutorit tests failing build scan repro line gradlew server internalclustertest tests org elasticsearch persistent persistenttasksexecutorit dtests seed dtests locale et ee dtests timezone vst druntime java reproduces locally no applicable branches master failure history failure excerpt examples expected     but was     at org hamcrest matcherassert assertthat matcherassert java     at org junit assert assertthat assert java     at org junit assert assertthat assert java     at org elasticsearch persistent persistenttasksexecutorit lambda waitfortasktostart persistenttasksexecutorit java     at org elasticsearch test estestcase assertbusy estestcase java     at org elasticsearch test estestcase assertbusy estestcase java     at org elasticsearch persistent persistenttasksexecutorit waitfortasktostart persistenttasksexecutorit java     at org elasticsearch persistent persistenttasksexecutorit testpersistentactionwithnoavailablenode persistenttasksexecutorit java           java lang assertionerror     expected     but was     at org hamcrest matcherassert assertthat matcherassert java     at org junit assert assertthat assert java     at org junit assert assertthat assert java     at org elasticsearch persistent persistenttasksexecutorit lambda assertnorunningtasks persistenttasksexecutorit java     at org elasticsearch test estestcase assertbusy estestcase java     at org elasticsearch test estestcase assertbusy estestcase java     at org elasticsearch persistent persistenttasksexecutorit assertnorunningtasks persistenttasksexecutorit java     at org elasticsearch persistent persistenttasksexecutorit cleanup persistenttasksexecutorit java
1
15,924
3,489,083,195
IssuesEvent
2016-01-03 15:31:07
pyinstaller/pyinstaller
https://api.github.com/repos/pyinstaller/pyinstaller
closed
Failing tests (Appveyor, Travis OS X)
@high OS X test-suite Windows
It seems that Appveyor testing is broken right now, so we're missing CI coverage on Windows. On my PC (Win 7, Py 2.7), I see the following failures. Can anyone else confirm these, or do I have a broken setup? Thanks for any help. ``` FAIL tests/functional/test_libraries.py::test_pyttsx[onedir] FAIL tests/functional/test_libraries.py::test_pyttsx[onefile] FAIL tests/functional/test_libraries.py::test_scipy[onedir] -- see https://github.com/pyinstaller/pyinstaller/issues/1593#issuecomment-148047504 FAIL tests/functional/test_libraries.py::test_scipy[onefile] FAIL tests/functional/test_libraries.py::test_matplotlib[onedir] -- same as above error FAIL tests/functional/test_libraries.py::test_matplotlib[onefile] FAIL tests/functional/test_libraries.py::test_pandas_extension[onedir] FAIL tests/functional/test_libraries.py::test_pandas_extension[onefile] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_default[onedir] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_default[onefile] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_kwargs[onedir] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_kwargs[onefile] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_arg1[onedir] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_arg1[onefile] ```
1.0
Failing tests (Appveyor, Travis OS X) - It seems that Appveyor testing is broken right now, so we're missing CI coverage on Windows. On my PC (Win 7, Py 2.7), I see the following failures. Can anyone else confirm these, or do I have a broken setup? Thanks for any help. ``` FAIL tests/functional/test_libraries.py::test_pyttsx[onedir] FAIL tests/functional/test_libraries.py::test_pyttsx[onefile] FAIL tests/functional/test_libraries.py::test_scipy[onedir] -- see https://github.com/pyinstaller/pyinstaller/issues/1593#issuecomment-148047504 FAIL tests/functional/test_libraries.py::test_scipy[onefile] FAIL tests/functional/test_libraries.py::test_matplotlib[onedir] -- same as above error FAIL tests/functional/test_libraries.py::test_matplotlib[onefile] FAIL tests/functional/test_libraries.py::test_pandas_extension[onedir] FAIL tests/functional/test_libraries.py::test_pandas_extension[onefile] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_default[onedir] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_default[onefile] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_kwargs[onedir] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_kwargs[onefile] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_arg1[onedir] FAIL tests/functional/test_hooks/test_wx_lib_pubsub.py::test_wx_lib_pubsub_protocol_arg1[onefile] ```
test
failing tests appveyor travis os x it seems that appveyor testing is broken right now so we re missing ci coverage on windows on my pc win py i see the following failures can anyone else confirm these or do i have a broken setup thanks for any help fail tests functional test libraries py test pyttsx fail tests functional test libraries py test pyttsx fail tests functional test libraries py test scipy see fail tests functional test libraries py test scipy fail tests functional test libraries py test matplotlib same as above error fail tests functional test libraries py test matplotlib fail tests functional test libraries py test pandas extension fail tests functional test libraries py test pandas extension fail tests functional test hooks test wx lib pubsub py test wx lib pubsub protocol default fail tests functional test hooks test wx lib pubsub py test wx lib pubsub protocol default fail tests functional test hooks test wx lib pubsub py test wx lib pubsub protocol kwargs fail tests functional test hooks test wx lib pubsub py test wx lib pubsub protocol kwargs fail tests functional test hooks test wx lib pubsub py test wx lib pubsub protocol fail tests functional test hooks test wx lib pubsub py test wx lib pubsub protocol
1
323,609
27,739,723,621
IssuesEvent
2023-03-15 13:37:14
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
closed
roachtest: django failed
C-test-failure O-robot O-roachtest release-blocker T-sql-sessions branch-release-22.2
roachtest.django [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/9019669?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/9019669?buildTab=artifacts#/django) on release-22.2 @ [86e68df82e1b4e80ca134fe1b8f47dc930294e25](https://github.com/cockroachdb/cockroach/commits/86e68df82e1b4e80ca134fe1b8f47dc930294e25): ``` test artifacts and logs in: /artifacts/django/run_1 (orm_helpers.go:191).summarizeFailed: Tests run on Cockroach v22.2.6-98-g86e68df82e Tests run against django cockroach-4.1.x 9944 Total Tests Run 9943 tests passed 1 test failed 645 tests skipped 2 tests ignored 0 tests passed unexpectedly 1 test failed unexpectedly 0 tests expected failed but skipped 0 tests expected failed but not run --- --- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected) --- FAIL: aggregation.tests.AggregateTestCase.test_aggregation_default_using_datetime_from_database (unexpected) For a full summary look at the django artifacts An updated blocklist (djangoBlocklist) is available in the artifacts' django log ``` <p>Parameters: <code>ROACHTEST_cloud=gce</code> , <code>ROACHTEST_cpu=16</code> , <code>ROACHTEST_encrypted=false</code> , <code>ROACHTEST_ssd=0</code> </p> <details><summary>Help</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7) </p> </details> /cc @cockroachdb/sql-sessions <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*django.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-25274
2.0
roachtest: django failed - roachtest.django [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/9019669?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/9019669?buildTab=artifacts#/django) on release-22.2 @ [86e68df82e1b4e80ca134fe1b8f47dc930294e25](https://github.com/cockroachdb/cockroach/commits/86e68df82e1b4e80ca134fe1b8f47dc930294e25): ``` test artifacts and logs in: /artifacts/django/run_1 (orm_helpers.go:191).summarizeFailed: Tests run on Cockroach v22.2.6-98-g86e68df82e Tests run against django cockroach-4.1.x 9944 Total Tests Run 9943 tests passed 1 test failed 645 tests skipped 2 tests ignored 0 tests passed unexpectedly 1 test failed unexpectedly 0 tests expected failed but skipped 0 tests expected failed but not run --- --- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected) --- FAIL: aggregation.tests.AggregateTestCase.test_aggregation_default_using_datetime_from_database (unexpected) For a full summary look at the django artifacts An updated blocklist (djangoBlocklist) is available in the artifacts' django log ``` <p>Parameters: <code>ROACHTEST_cloud=gce</code> , <code>ROACHTEST_cpu=16</code> , <code>ROACHTEST_encrypted=false</code> , <code>ROACHTEST_ssd=0</code> </p> <details><summary>Help</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7) </p> </details> /cc @cockroachdb/sql-sessions <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*django.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub> Jira issue: CRDB-25274
test
roachtest django failed roachtest django with on release test artifacts and logs in artifacts django run orm helpers go summarizefailed tests run on cockroach tests run against django cockroach x total tests run tests passed test failed tests skipped tests ignored tests passed unexpectedly test failed unexpectedly tests expected failed but skipped tests expected failed but not run skip backends mysql test creation databasecreationtests test create test db unexpected error due to mysql tests expected fail aggregation tests aggregatetestcase test aggregation default using datetime from database unexpected for a full summary look at the django artifacts an updated blocklist djangoblocklist is available in the artifacts django log parameters roachtest cloud gce roachtest cpu roachtest encrypted false roachtest ssd help see see cc cockroachdb sql sessions jira issue crdb
1
104,482
8,973,185,968
IssuesEvent
2019-01-29 20:18:30
amnh/PCG
https://api.github.com/repos/amnh/PCG
closed
Refactor out Control.Evaluation into a sub library
low priority refactor verification/testing
The `Control.Evaluation` module is self contained (including `Control.Monad.Logger`). We should move these two libraries into a sub library along with their test suites. Add test suites for the `MonadLogger` type-class that "failure nullification" and "associativity" hold. Add the `MonadWriter` type-class instance to `Evaluation` and `MonadWriterT` to `EvaluationT`.
1.0
Refactor out Control.Evaluation into a sub library - The `Control.Evaluation` module is self contained (including `Control.Monad.Logger`). We should move these two libraries into a sub library along with their test suites. Add test suites for the `MonadLogger` type-class that "failure nullification" and "associativity" hold. Add the `MonadWriter` type-class instance to `Evaluation` and `MonadWriterT` to `EvaluationT`.
test
refactor out control evaluation into a sub library the control evaluation module is self contained including control monad logger we should move these two libraries into a sub library along with their test suites add test suites for the monadlogger type class that failure nullification and associativity hold add the monadwriter type class instance to evaluation and monadwritert to evaluationt
1
437,472
30,600,605,569
IssuesEvent
2023-07-22 10:24:17
zim-desktop-wiki/zim-desktop-wiki
https://api.github.com/repos/zim-desktop-wiki/zim-desktop-wiki
opened
Promote the Flatpak
enhancement documentation needs triage
**Is your feature request related to a problem? Please describe.** https://zim-wiki.org/downloads.html doesn't mention the Flatpak which currently has around 20k installs on Flathub. **Describe the solution you'd like** Add a link to Flathub, mentioning that it's packaged by a third party and has it's own bug tracker for Flatpak-derived issues. **Describe alternatives you've considered** Keeping quiet about one of the most reproducible installation methods we have on Linux? **Additional context** The Flatpak is maintained by @cheese, a long-time contributor and a former maintainer of Zim's Fedora package. - Flathub link: https://flathub.org/apps/org.zim_wiki.Zim - Manifest: https://github.com/flathub/org.zim_wiki.Zim
1.0
Promote the Flatpak - **Is your feature request related to a problem? Please describe.** https://zim-wiki.org/downloads.html doesn't mention the Flatpak which currently has around 20k installs on Flathub. **Describe the solution you'd like** Add a link to Flathub, mentioning that it's packaged by a third party and has it's own bug tracker for Flatpak-derived issues. **Describe alternatives you've considered** Keeping quiet about one of the most reproducible installation methods we have on Linux? **Additional context** The Flatpak is maintained by @cheese, a long-time contributor and a former maintainer of Zim's Fedora package. - Flathub link: https://flathub.org/apps/org.zim_wiki.Zim - Manifest: https://github.com/flathub/org.zim_wiki.Zim
non_test
promote the flatpak is your feature request related to a problem please describe doesn t mention the flatpak which currently has around installs on flathub describe the solution you d like add a link to flathub mentioning that it s packaged by a third party and has it s own bug tracker for flatpak derived issues describe alternatives you ve considered keeping quiet about one of the most reproducible installation methods we have on linux additional context the flatpak is maintained by cheese a long time contributor and a former maintainer of zim s fedora package flathub link manifest
0
60,804
6,715,732,830
IssuesEvent
2017-10-13 22:49:21
openshift/origin
https://api.github.com/repos/openshift/origin
closed
executing 'oc import-image mysql-new-single:latest --from=docker.io/mysql:latest --confirm' expecting success and text 'sha256:'
component/imageregistry kind/test-flake priority/P2
=== BEGIN TEST CASE === test/cmd/images_tests.sh:142: executing 'oc import-image mysql-new-single:latest --from=docker.io/mysql:latest --confirm' expecting success and text 'sha256:' FAILURE after 30.430s: test/cmd/images_tests.sh:142: executing 'oc import-image mysql-new-single:latest --from=docker.io/mysql:latest --confirm' expecting success and text 'sha256:': the command returned the wrong error code; the output content test failed There was no output from the command. Standard error from the command: Error from server (Timeout): Timeout: request did not complete within allowed duration === END TEST CASE ===
1.0
executing 'oc import-image mysql-new-single:latest --from=docker.io/mysql:latest --confirm' expecting success and text 'sha256:' - === BEGIN TEST CASE === test/cmd/images_tests.sh:142: executing 'oc import-image mysql-new-single:latest --from=docker.io/mysql:latest --confirm' expecting success and text 'sha256:' FAILURE after 30.430s: test/cmd/images_tests.sh:142: executing 'oc import-image mysql-new-single:latest --from=docker.io/mysql:latest --confirm' expecting success and text 'sha256:': the command returned the wrong error code; the output content test failed There was no output from the command. Standard error from the command: Error from server (Timeout): Timeout: request did not complete within allowed duration === END TEST CASE ===
test
executing oc import image mysql new single latest from docker io mysql latest confirm expecting success and text begin test case test cmd images tests sh executing oc import image mysql new single latest from docker io mysql latest confirm expecting success and text failure after test cmd images tests sh executing oc import image mysql new single latest from docker io mysql latest confirm expecting success and text the command returned the wrong error code the output content test failed there was no output from the command standard error from the command error from server timeout timeout request did not complete within allowed duration end test case
1
89,000
8,183,646,168
IssuesEvent
2018-08-29 09:40:18
humera987/HumTestData
https://api.github.com/repos/humera987/HumTestData
closed
testing_test : api_v1_alerts_get_query_param_sql_injection_xss_page
testing_test
Project : testing_test Job : UAT Env : UAT Region : FXLabs/US_WEST_1 Result : fail Status Code : 200 Headers : {X-Content-Type-Options=[nosniff], X-XSS-Protection=[1; mode=block], Cache-Control=[no-cache, no-store, max-age=0, must-revalidate], Pragma=[no-cache], Expires=[0], X-Frame-Options=[DENY], Content-Type=[application/json;charset=UTF-8], Transfer-Encoding=[chunked], Date=[Wed, 29 Aug 2018 09:39:32 GMT]} Endpoint : http://13.56.210.25/api/v1/alerts?page= Request : Response : { "requestId" : "None", "requestTime" : "2018-08-29T09:39:32.594+0000", "errors" : false, "messages" : [ ], "data" : [ { "id" : "8a8080fe6584cadc01658509714b3d53", "createdBy" : null, "createdDate" : "2018-08-29T09:35:13.227+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:35:13.227+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080886583d7bd016583fd37e9000b", "refName" : "testing_fx_proj", "subject" : "testing_fx_proj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080fe6584cadc016584fdbdc70eca", "createdBy" : null, "createdDate" : "2018-08-29T09:22:26.375+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:22:26.375+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804bc44a00a8", "refName" : "PrepodTesting", "subject" : "PrepodTesting", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080fe6584cadc016584fa3c5600f4", "createdBy" : null, "createdDate" : "2018-08-29T09:18:36.630+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:18:36.630+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804f8b920ad0", "refName" : "AsiyaApp", "subject" : "AsiyaApp", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080fe6584cadc016584fa25b200a5", "createdBy" : null, "createdDate" : "2018-08-29T09:18:30.834+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:18:30.834+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080886583d7bd0165842033bd7546", "refName" : "Humera_Test_Proj", "subject" : "Humera_Test_Proj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080fe6584cadc016584fa114f006b", "createdBy" : null, "createdDate" : "2018-08-29T09:18:25.615+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:18:25.615+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080ec657b1b2b01657b28259c2ad8", "refName" : "testgit", "subject" : "testgit", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080fe6584cadc016584f9df710009", "createdBy" : null, "createdDate" : "2018-08-29T09:18:12.849+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:18:12.849+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80808a657aacf801657aee4c5e0005", "refName" : "testProj", "subject" : "testProj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080966584425a0165848626fd474a", "createdBy" : null, "createdDate" : "2018-08-29T07:11:48.977+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T07:11:48.977+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080886583d7bd0165842033bd7546", "refName" : "Humera_Test_Proj", "subject" : "Humera_Test_Proj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080886583d7bd0165842a476114f5", "createdBy" : null, "createdDate" : "2018-08-29T05:31:27.969+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T05:31:27.969+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080886583d7bd0165842033bd7546", "refName" : "Humera_Test_Proj", "subject" : "Humera_Test_Proj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080886583d7bd016584070c481d1d", "createdBy" : null, "createdDate" : "2018-08-29T04:52:59.079+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T04:52:59.079+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080886583d7bd016583fd37e9000b", "refName" : "testing_fx_proj", "subject" : "testing_fx_proj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805e043c4078", "createdBy" : null, "createdDate" : "2018-08-28T11:49:29.787+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:49:29.787+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804f8b920ad0", "refName" : "AsiyaApp", "subject" : "AsiyaApp", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805dffad4077", "createdBy" : null, "createdDate" : "2018-08-28T11:49:28.621+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:49:28.621+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804f8b920ad0", "refName" : "AsiyaApp", "subject" : "AsiyaApp", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805dd0b34076", "createdBy" : null, "createdDate" : "2018-08-28T11:49:16.595+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:49:16.595+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804f8b920ad0", "refName" : "AsiyaApp", "subject" : "AsiyaApp", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805c267839ce", "createdBy" : null, "createdDate" : "2018-08-28T11:47:27.480+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:47:27.480+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804e665d05ff", "refName" : "testing", "subject" : "tested", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805b3fb037df", "createdBy" : null, "createdDate" : "2018-08-28T11:46:28.400+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:46:28.400+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804e665d05ff", "refName" : "testing", "subject" : "testing", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805071f40eb0", "createdBy" : null, "createdDate" : "2018-08-28T11:34:40.372+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:34:40.372+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804bc44a00a8", "refName" : "PrepodTesting", "subject" : "PrepodTesting", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a808057657fff9c0165800572330002", "createdBy" : null, "createdDate" : "2018-08-28T10:12:45.235+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T10:12:45.235+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080ec657b1b2b01657b28259c2ad8", "refName" : "testgit", "subject" : "testgit", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a808093657fa01d01657fd998fa01af", "createdBy" : null, "createdDate" : "2018-08-28T09:24:51.578+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T09:24:51.578+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080ec657b1b2b01657b28259c2ad8", "refName" : "testgit", "subject" : "testgit", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a808093657fa01d01657fd39934001c", "createdBy" : null, "createdDate" : "2018-08-28T09:18:18.419+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T09:18:18.419+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080ec657b1b2b01657b28259c2ad8", "refName" : "testgit", "subject" : "testgit", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a808093657fa01d01657fd38331000a", "createdBy" : null, "createdDate" : "2018-08-28T09:18:12.785+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T09:18:12.785+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80808a657aacf801657aee4c5e0005", "refName" : "testProj", "subject" : "testProj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a808098657bbaa501657eb6adf90822", "createdBy" : null, "createdDate" : "2018-08-28T04:07:05.977+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T04:07:05.977+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080ec657b1b2b01657b28259c2ad8", "refName" : "testgit", "subject" : "testgit", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } } ], "totalPages" : 2, "totalElements" : 34 } Logs : Assertion [@StatusCode != 200] failed, not expecting [200] but found [200] --- FX Bot ---
2.0
testing_test : api_v1_alerts_get_query_param_sql_injection_xss_page - Project : testing_test Job : UAT Env : UAT Region : FXLabs/US_WEST_1 Result : fail Status Code : 200 Headers : {X-Content-Type-Options=[nosniff], X-XSS-Protection=[1; mode=block], Cache-Control=[no-cache, no-store, max-age=0, must-revalidate], Pragma=[no-cache], Expires=[0], X-Frame-Options=[DENY], Content-Type=[application/json;charset=UTF-8], Transfer-Encoding=[chunked], Date=[Wed, 29 Aug 2018 09:39:32 GMT]} Endpoint : http://13.56.210.25/api/v1/alerts?page= Request : Response : { "requestId" : "None", "requestTime" : "2018-08-29T09:39:32.594+0000", "errors" : false, "messages" : [ ], "data" : [ { "id" : "8a8080fe6584cadc01658509714b3d53", "createdBy" : null, "createdDate" : "2018-08-29T09:35:13.227+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:35:13.227+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080886583d7bd016583fd37e9000b", "refName" : "testing_fx_proj", "subject" : "testing_fx_proj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080fe6584cadc016584fdbdc70eca", "createdBy" : null, "createdDate" : "2018-08-29T09:22:26.375+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:22:26.375+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804bc44a00a8", "refName" : "PrepodTesting", "subject" : "PrepodTesting", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080fe6584cadc016584fa3c5600f4", "createdBy" : null, "createdDate" : "2018-08-29T09:18:36.630+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:18:36.630+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804f8b920ad0", "refName" : "AsiyaApp", "subject" : "AsiyaApp", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080fe6584cadc016584fa25b200a5", "createdBy" : null, "createdDate" : "2018-08-29T09:18:30.834+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:18:30.834+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080886583d7bd0165842033bd7546", "refName" : "Humera_Test_Proj", "subject" : "Humera_Test_Proj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080fe6584cadc016584fa114f006b", "createdBy" : null, "createdDate" : "2018-08-29T09:18:25.615+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:18:25.615+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080ec657b1b2b01657b28259c2ad8", "refName" : "testgit", "subject" : "testgit", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080fe6584cadc016584f9df710009", "createdBy" : null, "createdDate" : "2018-08-29T09:18:12.849+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T09:18:12.849+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80808a657aacf801657aee4c5e0005", "refName" : "testProj", "subject" : "testProj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080966584425a0165848626fd474a", "createdBy" : null, "createdDate" : "2018-08-29T07:11:48.977+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T07:11:48.977+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080886583d7bd0165842033bd7546", "refName" : "Humera_Test_Proj", "subject" : "Humera_Test_Proj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080886583d7bd0165842a476114f5", "createdBy" : null, "createdDate" : "2018-08-29T05:31:27.969+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T05:31:27.969+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080886583d7bd0165842033bd7546", "refName" : "Humera_Test_Proj", "subject" : "Humera_Test_Proj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a8080886583d7bd016584070c481d1d", "createdBy" : null, "createdDate" : "2018-08-29T04:52:59.079+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-29T04:52:59.079+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080886583d7bd016583fd37e9000b", "refName" : "testing_fx_proj", "subject" : "testing_fx_proj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805e043c4078", "createdBy" : null, "createdDate" : "2018-08-28T11:49:29.787+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:49:29.787+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804f8b920ad0", "refName" : "AsiyaApp", "subject" : "AsiyaApp", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805dffad4077", "createdBy" : null, "createdDate" : "2018-08-28T11:49:28.621+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:49:28.621+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804f8b920ad0", "refName" : "AsiyaApp", "subject" : "AsiyaApp", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805dd0b34076", "createdBy" : null, "createdDate" : "2018-08-28T11:49:16.595+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:49:16.595+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804f8b920ad0", "refName" : "AsiyaApp", "subject" : "AsiyaApp", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805c267839ce", "createdBy" : null, "createdDate" : "2018-08-28T11:47:27.480+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:47:27.480+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804e665d05ff", "refName" : "testing", "subject" : "tested", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805b3fb037df", "createdBy" : null, "createdDate" : "2018-08-28T11:46:28.400+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:46:28.400+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "INFO", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804e665d05ff", "refName" : "testing", "subject" : "testing", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a80809265803f430165805071f40eb0", "createdBy" : null, "createdDate" : "2018-08-28T11:34:40.372+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T11:34:40.372+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80809265803f430165804bc44a00a8", "refName" : "PrepodTesting", "subject" : "PrepodTesting", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a808057657fff9c0165800572330002", "createdBy" : null, "createdDate" : "2018-08-28T10:12:45.235+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T10:12:45.235+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080ec657b1b2b01657b28259c2ad8", "refName" : "testgit", "subject" : "testgit", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a808093657fa01d01657fd998fa01af", "createdBy" : null, "createdDate" : "2018-08-28T09:24:51.578+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T09:24:51.578+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080ec657b1b2b01657b28259c2ad8", "refName" : "testgit", "subject" : "testgit", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a808093657fa01d01657fd39934001c", "createdBy" : null, "createdDate" : "2018-08-28T09:18:18.419+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T09:18:18.419+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080ec657b1b2b01657b28259c2ad8", "refName" : "testgit", "subject" : "testgit", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a808093657fa01d01657fd38331000a", "createdBy" : null, "createdDate" : "2018-08-28T09:18:12.785+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T09:18:12.785+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a80808a657aacf801657aee4c5e0005", "refName" : "testProj", "subject" : "testProj", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } }, { "id" : "8a808098657bbaa501657eb6adf90822", "createdBy" : null, "createdDate" : "2018-08-28T04:07:05.977+0000", "modifiedBy" : null, "modifiedDate" : "2018-08-28T04:07:05.977+0000", "version" : null, "inactive" : false, "taskType" : "PROJECT_SYNC", "taskState" : "ACTIVE", "type" : "ERROR", "status" : "UNREAD", "refType" : "PROJECT", "refId" : "8a8080ec657b1b2b01657b28259c2ad8", "refName" : "testgit", "subject" : "testgit", "message" : null, "readDate" : null, "healedDate" : null, "users" : [ ], "org" : { "id" : "8a80808a657aacf801657ab17dd30003", "createdBy" : null, "createdDate" : null, "modifiedBy" : null, "modifiedDate" : null, "version" : null, "inactive" : false, "name" : null } } ], "totalPages" : 2, "totalElements" : 34 } Logs : Assertion [@StatusCode != 200] failed, not expecting [200] but found [200] --- FX Bot ---
test
testing test api alerts get query param sql injection xss page project testing test job uat env uat region fxlabs us west result fail status code headers x content type options x xss protection cache control pragma expires x frame options content type transfer encoding date endpoint request response requestid none requesttime errors false messages data id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type info status unread reftype project refid refname testing fx proj subject testing fx proj message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname prepodtesting subject prepodtesting message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname asiyaapp subject asiyaapp message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type info status unread reftype project refid refname humera test proj subject humera test proj message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname testgit subject testgit message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname testproj subject testproj message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type info status unread reftype project refid refname humera test proj subject humera test proj message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type info status unread reftype project refid refname humera test proj subject humera test proj message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type info status unread reftype project refid refname testing fx proj subject testing fx proj message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname asiyaapp subject asiyaapp message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname asiyaapp subject asiyaapp message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname asiyaapp subject asiyaapp message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type info status unread reftype project refid refname testing subject tested message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type info status unread reftype project refid refname testing subject testing message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname prepodtesting subject prepodtesting message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname testgit subject testgit message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname testgit subject testgit message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname testgit subject testgit message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname testproj subject testproj message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null id createdby null createddate modifiedby null modifieddate version null inactive false tasktype project sync taskstate active type error status unread reftype project refid refname testgit subject testgit message null readdate null healeddate null users org id createdby null createddate null modifiedby null modifieddate null version null inactive false name null totalpages totalelements logs assertion failed not expecting but found fx bot
1
34,518
4,931,501,740
IssuesEvent
2016-11-28 10:24:21
QualiSystems/Azure-Shell
https://api.github.com/repos/QualiSystems/Azure-Shell
closed
Generate OpenSSH key pair
F-connectivity F-technical ready to test Version 7.2
In the prepare stage we need to generate OpenSSH keypair (public & private keys) and save it in the relevant azure storage. 1. Create a new domain service to work with OpenSSH keypairs. The service should return an object with private and public keys. 2. Extend the storage service to support saving and reading the keypairs. Example from StackOverflow how to generate a keypair: http://stackoverflow.com/questions/2466401/how-to-generate-ssh-key-pairs-with-python Azure guide on generating keypairs for general knowledge: https://azure.microsoft.com/en-us/documentation/articles/virtual-machines-linux-mac-create-ssh-keys/ - How to test that the key is generated correctly? Try to use the generated key when creating a linux VM in the azure portal. If Azure accepts the key than its ok.
1.0
Generate OpenSSH key pair - In the prepare stage we need to generate OpenSSH keypair (public & private keys) and save it in the relevant azure storage. 1. Create a new domain service to work with OpenSSH keypairs. The service should return an object with private and public keys. 2. Extend the storage service to support saving and reading the keypairs. Example from StackOverflow how to generate a keypair: http://stackoverflow.com/questions/2466401/how-to-generate-ssh-key-pairs-with-python Azure guide on generating keypairs for general knowledge: https://azure.microsoft.com/en-us/documentation/articles/virtual-machines-linux-mac-create-ssh-keys/ - How to test that the key is generated correctly? Try to use the generated key when creating a linux VM in the azure portal. If Azure accepts the key than its ok.
test
generate openssh key pair in the prepare stage we need to generate openssh keypair public private keys and save it in the relevant azure storage create a new domain service to work with openssh keypairs the service should return an object with private and public keys extend the storage service to support saving and reading the keypairs example from stackoverflow how to generate a keypair azure guide on generating keypairs for general knowledge how to test that the key is generated correctly try to use the generated key when creating a linux vm in the azure portal if azure accepts the key than its ok
1
35,652
6,487,152,505
IssuesEvent
2017-08-20 04:01:23
gravitational/teleport
https://api.github.com/repos/gravitational/teleport
closed
Document an official example of an upstart script
documentation
This is probably related to #514 but for the interim can we at least have an official example of an upstart script in the documentation. There is already an official example of a [systemd unit file](http://gravitational.com/teleport/docs/2.0/admin-guide/#teleport-daemon). Can we also please include an upstart/init.d file equivalent to this. This will be especially for those that have to deploy Teleport to OSes that have not yet moved to systemd yet - biggest example is the latest Amazon Linux AMI still uses init.d. I have been using the example of https://github.com/jaxxstorm/puppet-teleport at https://github.com/jaxxstorm/puppet-teleport/blob/master/templates/teleport.init.erb but I'd like verification if this could be officially documented for others? The init.d script I am currently using is here - https://gist.github.com/mechastorm/ff4add694afada6ff6b4647aa2cb5797
1.0
Document an official example of an upstart script - This is probably related to #514 but for the interim can we at least have an official example of an upstart script in the documentation. There is already an official example of a [systemd unit file](http://gravitational.com/teleport/docs/2.0/admin-guide/#teleport-daemon). Can we also please include an upstart/init.d file equivalent to this. This will be especially for those that have to deploy Teleport to OSes that have not yet moved to systemd yet - biggest example is the latest Amazon Linux AMI still uses init.d. I have been using the example of https://github.com/jaxxstorm/puppet-teleport at https://github.com/jaxxstorm/puppet-teleport/blob/master/templates/teleport.init.erb but I'd like verification if this could be officially documented for others? The init.d script I am currently using is here - https://gist.github.com/mechastorm/ff4add694afada6ff6b4647aa2cb5797
non_test
document an official example of an upstart script this is probably related to but for the interim can we at least have an official example of an upstart script in the documentation there is already an official example of a can we also please include an upstart init d file equivalent to this this will be especially for those that have to deploy teleport to oses that have not yet moved to systemd yet biggest example is the latest amazon linux ami still uses init d i have been using the example of at but i d like verification if this could be officially documented for others the init d script i am currently using is here
0
221,189
17,296,496,147
IssuesEvent
2021-07-25 20:52:40
DistributedCollective/Sovryn-smart-contracts
https://api.github.com/repos/DistributedCollective/Sovryn-smart-contracts
closed
Adjust Test Cases for LoanTokenLogicLM
high priority maintenance testing
Since we have implemented LoanTokenLogicLM for our Loan Token, then we need to adjust the test cases which are relevant to previous LoanTokenLogicStandard
1.0
Adjust Test Cases for LoanTokenLogicLM - Since we have implemented LoanTokenLogicLM for our Loan Token, then we need to adjust the test cases which are relevant to previous LoanTokenLogicStandard
test
adjust test cases for loantokenlogiclm since we have implemented loantokenlogiclm for our loan token then we need to adjust the test cases which are relevant to previous loantokenlogicstandard
1
663,937
22,216,520,629
IssuesEvent
2022-06-08 02:37:55
Thorfusion/solder.py
https://api.github.com/repos/Thorfusion/solder.py
opened
[FEATURE] Autocomplete in fields
FEATURE: Extended solder Priority: LOW
When adding a mod, where you write author, we can add an autocomplete or suggest based on previous authors entered. Must be made so its not annoying.
1.0
[FEATURE] Autocomplete in fields - When adding a mod, where you write author, we can add an autocomplete or suggest based on previous authors entered. Must be made so its not annoying.
non_test
autocomplete in fields when adding a mod where you write author we can add an autocomplete or suggest based on previous authors entered must be made so its not annoying
0
317,427
27,237,032,008
IssuesEvent
2023-02-21 17:03:51
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[DocDB] flaky test: SnapshotTest.SnapshotRemoteBootstrap
kind/bug kind/failing-test area/docdb priority/medium
Jira Link: [DB-5242](https://yugabyte.atlassian.net/browse/DB-5242) ### Description Test SnapshotTest.SnapshotRemoteBootstrap is flaky. [Detective report](https://detective-gcp.dev.yugabyte.com/stability/test?class=SnapshotTest&name=SnapshotRemoteBootstrap) [Trends](https://detective-gcp.dev.yugabyte.com/stability/test?analyze_trends=true&class=SnapshotTest&name=SnapshotRemoteBootstrap) [DB-5242]: https://yugabyte.atlassian.net/browse/DB-5242?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1.0
[DocDB] flaky test: SnapshotTest.SnapshotRemoteBootstrap - Jira Link: [DB-5242](https://yugabyte.atlassian.net/browse/DB-5242) ### Description Test SnapshotTest.SnapshotRemoteBootstrap is flaky. [Detective report](https://detective-gcp.dev.yugabyte.com/stability/test?class=SnapshotTest&name=SnapshotRemoteBootstrap) [Trends](https://detective-gcp.dev.yugabyte.com/stability/test?analyze_trends=true&class=SnapshotTest&name=SnapshotRemoteBootstrap) [DB-5242]: https://yugabyte.atlassian.net/browse/DB-5242?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
test
flaky test snapshottest snapshotremotebootstrap jira link description test snapshottest snapshotremotebootstrap is flaky
1
442,395
12,744,853,613
IssuesEvent
2020-06-26 13:16:33
johnsonandjohnson/Bodiless-JS
https://api.github.com/repos/johnsonandjohnson/Bodiless-JS
closed
Filters Should be Open by Default in the Component Picker
accepted enhancement priority
<!-- Before submitting an issue: - Please read our contributino guidelines (https://github.com/johnsonandjohnson/Bodiless-JS/blob/master/packages/bodiless-documentation/doc/Development/Contributing.md). - Please search existing issues (https://github.com/johnsonandjohnson/Bodiless-JS/issues) to see if something similar has already been reported. Please fill out each section below; otherwise, your issue will be closed. --> ## User Story <!-- Please express your request in the following format --> - AS A Content Editor - I WANT to filter the list of available components - SO THAT I can see the full list of options ### Background/Description Most users did not notice the filters ### Acceptance Criteria AC1: The list of filters in the component picker are open by default. AC2: Most common components are surfaced to the top - Type: - Rich Text Editor - Images - Touts - Contentful - Single Accordion ### Implementation Notes <!-- Any notes about proposed technical implementation or architecture. --> ### References ![Canvas_X_Investigation_pptx](https://user-images.githubusercontent.com/59970745/78673651-70301d00-78b0-11ea-9b31-a72540ca72b5.jpg) <!-- Links to other issues, documentation or anything else related to this story. -->
1.0
Filters Should be Open by Default in the Component Picker - <!-- Before submitting an issue: - Please read our contributino guidelines (https://github.com/johnsonandjohnson/Bodiless-JS/blob/master/packages/bodiless-documentation/doc/Development/Contributing.md). - Please search existing issues (https://github.com/johnsonandjohnson/Bodiless-JS/issues) to see if something similar has already been reported. Please fill out each section below; otherwise, your issue will be closed. --> ## User Story <!-- Please express your request in the following format --> - AS A Content Editor - I WANT to filter the list of available components - SO THAT I can see the full list of options ### Background/Description Most users did not notice the filters ### Acceptance Criteria AC1: The list of filters in the component picker are open by default. AC2: Most common components are surfaced to the top - Type: - Rich Text Editor - Images - Touts - Contentful - Single Accordion ### Implementation Notes <!-- Any notes about proposed technical implementation or architecture. --> ### References ![Canvas_X_Investigation_pptx](https://user-images.githubusercontent.com/59970745/78673651-70301d00-78b0-11ea-9b31-a72540ca72b5.jpg) <!-- Links to other issues, documentation or anything else related to this story. -->
non_test
filters should be open by default in the component picker before submitting an issue please read our contributino guidelines please search existing issues to see if something similar has already been reported please fill out each section below otherwise your issue will be closed user story as a content editor i want to filter the list of available components so that i can see the full list of options background description most users did not notice the filters acceptance criteria the list of filters in the component picker are open by default most common components are surfaced to the top type rich text editor images touts contentful single accordion implementation notes references
0
197,259
14,915,556,744
IssuesEvent
2021-01-22 16:53:31
StygianTheBest/StygianCore
https://api.github.com/repos/StygianTheBest/StygianCore
opened
Multivendor items per page bug
bug module needs further testing stygiancore
It has been reported that Multi-vendors can only add items to their first page. Items added to other pages are deleted. While adding it does not give any error but add it.
1.0
Multivendor items per page bug - It has been reported that Multi-vendors can only add items to their first page. Items added to other pages are deleted. While adding it does not give any error but add it.
test
multivendor items per page bug it has been reported that multi vendors can only add items to their first page items added to other pages are deleted while adding it does not give any error but add it
1
26,838
4,249,491,966
IssuesEvent
2016-07-08 00:15:26
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
opened
storage: TestMultinodeCockroach is dead slow waiting for replication
test-failure
`TestMultinodeCockroach` sometimes runs fast, sometimes takes 30s, sometimes takes 60s. It's the "waiting for replication" that's slow, and it doesn't seem to be because of #7297. I looked at logs with Tobi and it seems that, when the waiting is eventually unblocked, it's soon after a gossip update. So a theory is that the gossip update triggers the replication queue, because the range needing replication was in the purgatory. And maybe this happens because there's a race in adding stores and somehow the initial gossiping that happens when a store is added (which should advertise the fact that the store is ready to receive ranges) doesn't correctly advertise that.
1.0
storage: TestMultinodeCockroach is dead slow waiting for replication - `TestMultinodeCockroach` sometimes runs fast, sometimes takes 30s, sometimes takes 60s. It's the "waiting for replication" that's slow, and it doesn't seem to be because of #7297. I looked at logs with Tobi and it seems that, when the waiting is eventually unblocked, it's soon after a gossip update. So a theory is that the gossip update triggers the replication queue, because the range needing replication was in the purgatory. And maybe this happens because there's a race in adding stores and somehow the initial gossiping that happens when a store is added (which should advertise the fact that the store is ready to receive ranges) doesn't correctly advertise that.
test
storage testmultinodecockroach is dead slow waiting for replication testmultinodecockroach sometimes runs fast sometimes takes sometimes takes it s the waiting for replication that s slow and it doesn t seem to be because of i looked at logs with tobi and it seems that when the waiting is eventually unblocked it s soon after a gossip update so a theory is that the gossip update triggers the replication queue because the range needing replication was in the purgatory and maybe this happens because there s a race in adding stores and somehow the initial gossiping that happens when a store is added which should advertise the fact that the store is ready to receive ranges doesn t correctly advertise that
1
50,627
13,543,458,040
IssuesEvent
2020-09-16 18:59:43
istio/istio
https://api.github.com/repos/istio/istio
closed
Move Envoy admin interface from TCP:15000 to a Unix Domain Socket
area/networking area/security kind/enhancement lifecycle/staleproof
**Bug description** In each sidecar, the Envoy proxy in the `istio-proxy` container is currently configured to expose its [admin interface](https://www.envoyproxy.io/docs/envoy/latest/operations/admin) on [a TCP socket bound to the loopback interface](https://github.com/istio/istio/blob/78350cd2ae70174004a43ae8d194fcd548f75a1d/tools/packaging/common/envoy_bootstrap_v2.json#L182-L190) (by default, that port is 15000). That socket is accessible by any container within the pod, since they are in the same network namespace. Therefore, a malicious or compromised container may perform any admin operation on Envoy. Especially, it can [force Envoy to quit](https://www.envoyproxy.io/docs/envoy/latest/operations/admin#post--quitquitquit), and therefore to continuously reconnect to Pilot, which can induce some load on Pilot, which in turn can affect the rest of the cluster. **Expected behavior** The admin interface should not be accessible outside of the `istio-proxy` container. The admin interface should be exposed as a Unix Domain Socket, local only to that container. **Tasks** - [ ] Modify [Envoy's bootstrap file template](https://github.com/istio/istio/blob/78350cd2ae70174004a43ae8d194fcd548f75a1d/tools/packaging/common/envoy_bootstrap_v2.json#L182-L190) to: - [ ] Always expose the admin interface as a Unix Domain Socket. - [ ] Optionally also expose the admin interface as a TCP socket, depending on a template parameter. - [ ] Modify the `pilot-agent` to accept an additional boolean flag or environment variable to set the template parameter. - [ ] Define and document a new boolean pod annotation to enable the admin TCP interface. - [ ] Modify the injection template for both [Helm](https://github.com/istio/istio/blob/78350cd2ae70174004a43ae8d194fcd548f75a1d/install/kubernetes/helm/istio/files/injection-template.yaml#L84) and [Operator](https://github.com/istio/installer/blob/5305f02bb3076961ad352ba56da3f8686a2354e0/istio-control/istio-autoinject/files/injection-template.yaml#L89) to set that flag/variable depending on the pod's annotation. Default to `true` for Istio 1.5. - [ ] Modify all dependencies on TCP port 15000 in the Istio code, esp. in the [`istio-agent request` command](https://github.com/istio/istio/blob/78350cd2ae70174004a43ae8d194fcd548f75a1d/pilot/cmd/pilot-agent/request.go#L36). - [ ] Fix all remaining documentation pages that recommends to perform `curl` commands to port 15000, and replace them with calls to `istio-agent request` commands. - [ ] Document the admin interface TCP socket as deprecated in 1.5, to be disabled by default in 1.6.
True
Move Envoy admin interface from TCP:15000 to a Unix Domain Socket - **Bug description** In each sidecar, the Envoy proxy in the `istio-proxy` container is currently configured to expose its [admin interface](https://www.envoyproxy.io/docs/envoy/latest/operations/admin) on [a TCP socket bound to the loopback interface](https://github.com/istio/istio/blob/78350cd2ae70174004a43ae8d194fcd548f75a1d/tools/packaging/common/envoy_bootstrap_v2.json#L182-L190) (by default, that port is 15000). That socket is accessible by any container within the pod, since they are in the same network namespace. Therefore, a malicious or compromised container may perform any admin operation on Envoy. Especially, it can [force Envoy to quit](https://www.envoyproxy.io/docs/envoy/latest/operations/admin#post--quitquitquit), and therefore to continuously reconnect to Pilot, which can induce some load on Pilot, which in turn can affect the rest of the cluster. **Expected behavior** The admin interface should not be accessible outside of the `istio-proxy` container. The admin interface should be exposed as a Unix Domain Socket, local only to that container. **Tasks** - [ ] Modify [Envoy's bootstrap file template](https://github.com/istio/istio/blob/78350cd2ae70174004a43ae8d194fcd548f75a1d/tools/packaging/common/envoy_bootstrap_v2.json#L182-L190) to: - [ ] Always expose the admin interface as a Unix Domain Socket. - [ ] Optionally also expose the admin interface as a TCP socket, depending on a template parameter. - [ ] Modify the `pilot-agent` to accept an additional boolean flag or environment variable to set the template parameter. - [ ] Define and document a new boolean pod annotation to enable the admin TCP interface. - [ ] Modify the injection template for both [Helm](https://github.com/istio/istio/blob/78350cd2ae70174004a43ae8d194fcd548f75a1d/install/kubernetes/helm/istio/files/injection-template.yaml#L84) and [Operator](https://github.com/istio/installer/blob/5305f02bb3076961ad352ba56da3f8686a2354e0/istio-control/istio-autoinject/files/injection-template.yaml#L89) to set that flag/variable depending on the pod's annotation. Default to `true` for Istio 1.5. - [ ] Modify all dependencies on TCP port 15000 in the Istio code, esp. in the [`istio-agent request` command](https://github.com/istio/istio/blob/78350cd2ae70174004a43ae8d194fcd548f75a1d/pilot/cmd/pilot-agent/request.go#L36). - [ ] Fix all remaining documentation pages that recommends to perform `curl` commands to port 15000, and replace them with calls to `istio-agent request` commands. - [ ] Document the admin interface TCP socket as deprecated in 1.5, to be disabled by default in 1.6.
non_test
move envoy admin interface from tcp to a unix domain socket bug description in each sidecar the envoy proxy in the istio proxy container is currently configured to expose its on by default that port is that socket is accessible by any container within the pod since they are in the same network namespace therefore a malicious or compromised container may perform any admin operation on envoy especially it can and therefore to continuously reconnect to pilot which can induce some load on pilot which in turn can affect the rest of the cluster expected behavior the admin interface should not be accessible outside of the istio proxy container the admin interface should be exposed as a unix domain socket local only to that container tasks modify to always expose the admin interface as a unix domain socket optionally also expose the admin interface as a tcp socket depending on a template parameter modify the pilot agent to accept an additional boolean flag or environment variable to set the template parameter define and document a new boolean pod annotation to enable the admin tcp interface modify the injection template for both and to set that flag variable depending on the pod s annotation default to true for istio modify all dependencies on tcp port in the istio code esp in the fix all remaining documentation pages that recommends to perform curl commands to port and replace them with calls to istio agent request commands document the admin interface tcp socket as deprecated in to be disabled by default in
0
395,883
11,697,841,789
IssuesEvent
2020-03-06 12:42:36
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
www.washingtonpost.com - site is not usable
browser-firefox engine-gecko form-v2-experiment ml-needsdiagnosis-false priority-important
<!-- @browser: Firefox 73.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:73.0) Gecko/20100101 Firefox/73.0 --> <!-- @reported_with: --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/49729 --> <!-- @extra_labels: form-v2-experiment --> **URL**: https://www.washingtonpost.com/ **Browser / Version**: Firefox 73.0 **Operating System**: Windows 10 **Tested Another Browser**: Yes Chrome **Problem type**: Site is not usable **Description**: Unable to type **Steps to Reproduce**: When I use the Comments section I used to be able enter text; this past week that has not been possible anymore. Chrome does not have that problem. <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
www.washingtonpost.com - site is not usable - <!-- @browser: Firefox 73.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:73.0) Gecko/20100101 Firefox/73.0 --> <!-- @reported_with: --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/49729 --> <!-- @extra_labels: form-v2-experiment --> **URL**: https://www.washingtonpost.com/ **Browser / Version**: Firefox 73.0 **Operating System**: Windows 10 **Tested Another Browser**: Yes Chrome **Problem type**: Site is not usable **Description**: Unable to type **Steps to Reproduce**: When I use the Comments section I used to be able enter text; this past week that has not been possible anymore. Chrome does not have that problem. <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
non_test
site is not usable url browser version firefox operating system windows tested another browser yes chrome problem type site is not usable description unable to type steps to reproduce when i use the comments section i used to be able enter text this past week that has not been possible anymore chrome does not have that problem browser configuration none from with ❤️
0
9,908
11,912,661,225
IssuesEvent
2020-03-31 10:38:26
ClickHouse/ClickHouse
https://api.github.com/repos/ClickHouse/ClickHouse
closed
JOIN ... GROUP BY ... WITH TOTALS throwing exception on join
backward compatibility bug comp-joins v20.3
Following query (minute the aliases on the sub-queries) worked fine in 19.x (previous to requiring the ll and rr labels). ``` SELECT id, yago, recent FROM ( SELECT under_item_id AS id, SUM(price_sold) AS recent FROM by_item WHERE (date BETWEEN '2019-12-16' AND '2020-03-08') GROUP BY id WITH TOTALS ) ll FULL OUTER JOIN ( SELECT under_item_id AS id, SUM(price_sold) AS yago FROM by_item WHERE (date BETWEEN '2018-12-17' AND '2019-03-10') GROUP BY id WITH TOTALS ) rr USING (id) ``` Now, in 20.3.4.10 it is throwing: Code: 10. DB::Exception: Received from localhost:9000. DB::Exception: Not found column rr.id in block. There are only columns: id, yago. If you remove the WITH TOTALS, it works. Seemingly getting confused with the combination of the gouped totals with the labels added?
True
JOIN ... GROUP BY ... WITH TOTALS throwing exception on join - Following query (minute the aliases on the sub-queries) worked fine in 19.x (previous to requiring the ll and rr labels). ``` SELECT id, yago, recent FROM ( SELECT under_item_id AS id, SUM(price_sold) AS recent FROM by_item WHERE (date BETWEEN '2019-12-16' AND '2020-03-08') GROUP BY id WITH TOTALS ) ll FULL OUTER JOIN ( SELECT under_item_id AS id, SUM(price_sold) AS yago FROM by_item WHERE (date BETWEEN '2018-12-17' AND '2019-03-10') GROUP BY id WITH TOTALS ) rr USING (id) ``` Now, in 20.3.4.10 it is throwing: Code: 10. DB::Exception: Received from localhost:9000. DB::Exception: Not found column rr.id in block. There are only columns: id, yago. If you remove the WITH TOTALS, it works. Seemingly getting confused with the combination of the gouped totals with the labels added?
non_test
join group by with totals throwing exception on join following query minute the aliases on the sub queries worked fine in x previous to requiring the ll and rr labels select id yago recent from select under item id as id sum price sold as recent from by item where date between and group by id with totals ll full outer join select under item id as id sum price sold as yago from by item where date between and group by id with totals rr using id now in it is throwing code db exception received from localhost db exception not found column rr id in block there are only columns id yago if you remove the with totals it works seemingly getting confused with the combination of the gouped totals with the labels added
0
93,976
3,917,229,494
IssuesEvent
2016-04-21 07:19:21
DigitalCampus/django-oppia
https://api.github.com/repos/DigitalCampus/django-oppia
opened
Consider ways to archive data
enhancement medium priority
Especially the tracker data as the table is very large. Need to think exactly how this could be done and leave flexibility for different implementations/servers.
1.0
Consider ways to archive data - Especially the tracker data as the table is very large. Need to think exactly how this could be done and leave flexibility for different implementations/servers.
non_test
consider ways to archive data especially the tracker data as the table is very large need to think exactly how this could be done and leave flexibility for different implementations servers
0
58,313
14,360,678,663
IssuesEvent
2020-11-30 17:10:13
tensorflow/tensorflow
https://api.github.com/repos/tensorflow/tensorflow
closed
ERROR: Could not find a version that satisfies the requirement tensorflow==1.2.1 ? pip cannot find tensroflow 1 versions
stat:awaiting response subtype: ubuntu/linux type:build/install
I cannot install any tensorflow 1 version in my virtual env.. it is required by a project that I'm trying to run.. pip install tensorflow==1.2.1 ERROR: Could not find a version that satisfies the requirement tensorflow==1.2.1 (from versions: 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.2.1, 2.3.0rc0, 2.3.0rc1, 2.3.0rc2, 2.3.0, 2.3.1, 2.4.0rc0, 2.4.0rc1, 2.4.0rc2, 2.4.0rc3) ERROR: No matching distribution found for tensorflow==1.2.1 Tried things suggested here : https://stackoverflow.com/questions/42317075/tensorflow-r1-0-could-not-a-find-a-version-that-satisfies-the-requirement-tens my python version is not old : 3.8.5 my pip version is OK : 20.0.2 i still CANNOT install tensorflow 1.2.1 ... what i gotta do.. I am using ubuntu 20
1.0
ERROR: Could not find a version that satisfies the requirement tensorflow==1.2.1 ? pip cannot find tensroflow 1 versions - I cannot install any tensorflow 1 version in my virtual env.. it is required by a project that I'm trying to run.. pip install tensorflow==1.2.1 ERROR: Could not find a version that satisfies the requirement tensorflow==1.2.1 (from versions: 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.2.1, 2.3.0rc0, 2.3.0rc1, 2.3.0rc2, 2.3.0, 2.3.1, 2.4.0rc0, 2.4.0rc1, 2.4.0rc2, 2.4.0rc3) ERROR: No matching distribution found for tensorflow==1.2.1 Tried things suggested here : https://stackoverflow.com/questions/42317075/tensorflow-r1-0-could-not-a-find-a-version-that-satisfies-the-requirement-tens my python version is not old : 3.8.5 my pip version is OK : 20.0.2 i still CANNOT install tensorflow 1.2.1 ... what i gotta do.. I am using ubuntu 20
non_test
error could not find a version that satisfies the requirement tensorflow pip cannot find tensroflow versions i cannot install any tensorflow version in my virtual env it is required by a project that i m trying to run pip install tensorflow error could not find a version that satisfies the requirement tensorflow from versions error no matching distribution found for tensorflow tried things suggested here my python version is not old my pip version is ok i still cannot install tensorflow what i gotta do i am using ubuntu
0
78,942
7,688,568,144
IssuesEvent
2018-05-17 09:50:07
IBVSoftware/CollaBoard-Feedback
https://api.github.com/repos/IBVSoftware/CollaBoard-Feedback
closed
Field of View Junmping
More info needed To be tested in Zurich
Scenario: Multiple people working in the same project User 1: Edits a sticky note. Then the filed of view of this users jumps randomly to another point of the canvas. The sticky notes stays in edit mode and the user needs to navigate back to the sticky note. User 2-6 randomly working on Sticky Notes in the project 2.0.19 08.05.2018 Laptop PC
1.0
Field of View Junmping - Scenario: Multiple people working in the same project User 1: Edits a sticky note. Then the filed of view of this users jumps randomly to another point of the canvas. The sticky notes stays in edit mode and the user needs to navigate back to the sticky note. User 2-6 randomly working on Sticky Notes in the project 2.0.19 08.05.2018 Laptop PC
test
field of view junmping scenario multiple people working in the same project user edits a sticky note then the filed of view of this users jumps randomly to another point of the canvas the sticky notes stays in edit mode and the user needs to navigate back to the sticky note user randomly working on sticky notes in the project laptop pc
1
33,392
4,828,307,052
IssuesEvent
2016-11-07 15:57:15
elastic/logstash
https://api.github.com/repos/elastic/logstash
opened
Master branch is failling because of addressable 2.4.0
test failure
When working on a PR, I've witnessed a problem with the addressable gem. It appear that we have the same issue in master. ``` Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=192m; support was removed in 8.0 Installation successful [plugin:install-development-dependencies] Installing development dependencies of all installed plugins Installing logstash-devutils, logstash-input-generator, logstash-codec-json, logstash-output-null, jar-dependencies, ruby-maven, logstash-filter-mutate, logstash-patterns-core, logstash-filter-grok, flores, rspec, stud, pry, rspec-wait, childprocess, ftw, logstash-output-elasticsearch, rspec-sequencing, gmetric, gelf, timecop, jdbc-derby, docker-api, logstash-codec-plain, simplecov, coveralls, logstash-codec-json_lines, addressable, elasticsearch, longshoreman, logstash-filter-kv, logstash-filter-ruby, sinatra, webrick, poseidon, snappy, webmock, logstash-codec-line Preserving Gemfile gem options for plugin logstash-devutils Preserving Gemfile gem options for plugin flores Preserving Gemfile gem options for plugin rspec Preserving Gemfile gem options for plugin stud Preserving Gemfile gem options for plugin docker-api Preserving Gemfile gem options for plugin simplecov Preserving Gemfile gem options for plugin coveralls Plugin not found, aborting ERROR: Installation Aborted, message: You have requested: addressable ~> 2.4.0 The bundle currently has addressable locked at 2.3.8. Try running `bundle update addressable` rake aborted! /home/travis/build/elastic/logstash/rakelib/plugin.rake:8:in `install_plugins' /home/travis/build/elastic/logstash/rakelib/plugin.rake:13:in `(root)' /home/travis/build/elastic/logstash/vendor/bundle/jruby/1.9/gems/rake-11.3.0/exe/rake:27:in `(root)' Tasks: TOP => test:install-core => plugin:install-development-dependencies (See full trace by running task with --trace) The command "rake test:install-core" failed and exited with 1 during . ``` https://travis-ci.org/elastic/logstash#L494 Since its blocking me for creating my PR I will take a look.
1.0
Master branch is failling because of addressable 2.4.0 - When working on a PR, I've witnessed a problem with the addressable gem. It appear that we have the same issue in master. ``` Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=192m; support was removed in 8.0 Installation successful [plugin:install-development-dependencies] Installing development dependencies of all installed plugins Installing logstash-devutils, logstash-input-generator, logstash-codec-json, logstash-output-null, jar-dependencies, ruby-maven, logstash-filter-mutate, logstash-patterns-core, logstash-filter-grok, flores, rspec, stud, pry, rspec-wait, childprocess, ftw, logstash-output-elasticsearch, rspec-sequencing, gmetric, gelf, timecop, jdbc-derby, docker-api, logstash-codec-plain, simplecov, coveralls, logstash-codec-json_lines, addressable, elasticsearch, longshoreman, logstash-filter-kv, logstash-filter-ruby, sinatra, webrick, poseidon, snappy, webmock, logstash-codec-line Preserving Gemfile gem options for plugin logstash-devutils Preserving Gemfile gem options for plugin flores Preserving Gemfile gem options for plugin rspec Preserving Gemfile gem options for plugin stud Preserving Gemfile gem options for plugin docker-api Preserving Gemfile gem options for plugin simplecov Preserving Gemfile gem options for plugin coveralls Plugin not found, aborting ERROR: Installation Aborted, message: You have requested: addressable ~> 2.4.0 The bundle currently has addressable locked at 2.3.8. Try running `bundle update addressable` rake aborted! /home/travis/build/elastic/logstash/rakelib/plugin.rake:8:in `install_plugins' /home/travis/build/elastic/logstash/rakelib/plugin.rake:13:in `(root)' /home/travis/build/elastic/logstash/vendor/bundle/jruby/1.9/gems/rake-11.3.0/exe/rake:27:in `(root)' Tasks: TOP => test:install-core => plugin:install-development-dependencies (See full trace by running task with --trace) The command "rake test:install-core" failed and exited with 1 during . ``` https://travis-ci.org/elastic/logstash#L494 Since its blocking me for creating my PR I will take a look.
test
master branch is failling because of addressable when working on a pr i ve witnessed a problem with the addressable gem it appear that we have the same issue in master java hotspot tm bit server vm warning ignoring option maxpermsize support was removed in installation successful installing development dependencies of all installed plugins installing logstash devutils logstash input generator logstash codec json logstash output null jar dependencies ruby maven logstash filter mutate logstash patterns core logstash filter grok flores rspec stud pry rspec wait childprocess ftw logstash output elasticsearch rspec sequencing gmetric gelf timecop jdbc derby docker api logstash codec plain simplecov coveralls logstash codec json lines addressable elasticsearch longshoreman logstash filter kv logstash filter ruby sinatra webrick poseidon snappy webmock logstash codec line preserving gemfile gem options for plugin logstash devutils preserving gemfile gem options for plugin flores preserving gemfile gem options for plugin rspec preserving gemfile gem options for plugin stud preserving gemfile gem options for plugin docker api preserving gemfile gem options for plugin simplecov preserving gemfile gem options for plugin coveralls plugin not found aborting error installation aborted message you have requested addressable the bundle currently has addressable locked at try running bundle update addressable rake aborted home travis build elastic logstash rakelib plugin rake in install plugins home travis build elastic logstash rakelib plugin rake in root home travis build elastic logstash vendor bundle jruby gems rake exe rake in root tasks top test install core plugin install development dependencies see full trace by running task with trace the command rake test install core failed and exited with during since its blocking me for creating my pr i will take a look
1
32,684
4,786,398,906
IssuesEvent
2016-10-29 11:56:02
diofant/diofant
https://api.github.com/repos/diofant/diofant
opened
Random test failure in combinatorics
bug combinatorics testing
``` =================================== FAILURES =================================== __ [doctest] diofant.combinatorics.perm_groups.PermGroup.schreier_sims_random __ 2659 2660 Examples 2661 ======== 2662 2663 >>> from diofant.combinatorics.perm_groups import PermutationGroup 2664 >>> from diofant.combinatorics.testutil import _verify_bsgs 2665 >>> from diofant.combinatorics.named_groups import SymmetricGroup 2666 >>> S = SymmetricGroup(5) 2667 >>> base, strong_gens = S.schreier_sims_random(consec_succ=5) 2668 >>> _verify_bsgs(S, base, strong_gens) Expected: True Got: False .../diofant/combinatorics/perm_groups.py:2668: DocTestFailure ============================= 392 tests deselected ============================= ```
1.0
Random test failure in combinatorics - ``` =================================== FAILURES =================================== __ [doctest] diofant.combinatorics.perm_groups.PermGroup.schreier_sims_random __ 2659 2660 Examples 2661 ======== 2662 2663 >>> from diofant.combinatorics.perm_groups import PermutationGroup 2664 >>> from diofant.combinatorics.testutil import _verify_bsgs 2665 >>> from diofant.combinatorics.named_groups import SymmetricGroup 2666 >>> S = SymmetricGroup(5) 2667 >>> base, strong_gens = S.schreier_sims_random(consec_succ=5) 2668 >>> _verify_bsgs(S, base, strong_gens) Expected: True Got: False .../diofant/combinatorics/perm_groups.py:2668: DocTestFailure ============================= 392 tests deselected ============================= ```
test
random test failure in combinatorics failures diofant combinatorics perm groups permgroup schreier sims random examples from diofant combinatorics perm groups import permutationgroup from diofant combinatorics testutil import verify bsgs from diofant combinatorics named groups import symmetricgroup s symmetricgroup base strong gens s schreier sims random consec succ verify bsgs s base strong gens expected true got false diofant combinatorics perm groups py doctestfailure tests deselected
1
35,396
4,973,869,134
IssuesEvent
2016-12-06 03:09:21
dackJavies/Text-Engine
https://api.github.com/repos/dackJavies/Text-Engine
closed
Make constants more accessible, allow for easy copying
enhancement tests
Add ` getCopyOf(Item item)` and `getCopiesOf(Item... items)` to `Items.java`, so that copies of constants can be easily fetched (should be used anywhere those constants are being added to a class to avoid having unintended side-effects on other `Item`s. Will be doing this with all of the constants classes as they grow.
1.0
Make constants more accessible, allow for easy copying - Add ` getCopyOf(Item item)` and `getCopiesOf(Item... items)` to `Items.java`, so that copies of constants can be easily fetched (should be used anywhere those constants are being added to a class to avoid having unintended side-effects on other `Item`s. Will be doing this with all of the constants classes as they grow.
test
make constants more accessible allow for easy copying add getcopyof item item and getcopiesof item items to items java so that copies of constants can be easily fetched should be used anywhere those constants are being added to a class to avoid having unintended side effects on other item s will be doing this with all of the constants classes as they grow
1
22,997
3,736,471,147
IssuesEvent
2016-03-08 16:03:31
jccastillo0007/eFacturaT
https://api.github.com/repos/jccastillo0007/eFacturaT
opened
Cuando agregas el productos, en el precio unitario aparece el signo de $
defect
anteriormente no lo colocaba, y ahora los clientes modifican el precio dejando el signo, y el sistema pone todo en cero. Por que aparece ahora este signo en text box del precio unitario? Favor de eliminarlo y dejarlo como estaba antes.
1.0
Cuando agregas el productos, en el precio unitario aparece el signo de $ - anteriormente no lo colocaba, y ahora los clientes modifican el precio dejando el signo, y el sistema pone todo en cero. Por que aparece ahora este signo en text box del precio unitario? Favor de eliminarlo y dejarlo como estaba antes.
non_test
cuando agregas el productos en el precio unitario aparece el signo de anteriormente no lo colocaba y ahora los clientes modifican el precio dejando el signo y el sistema pone todo en cero por que aparece ahora este signo en text box del precio unitario favor de eliminarlo y dejarlo como estaba antes
0
219,796
7,346,007,164
IssuesEvent
2018-03-07 19:16:07
Automattic/amp-wp
https://api.github.com/repos/Automattic/amp-wp
closed
Add support for <amp-sidebar>
[Priority] Medium [Type] Enhancement [Type] Task bundled-templates
Check: [amp-sidebar](https://www.ampproject.org/docs/reference/components/amp-sidebar) This component can be used to implement menus/navigation use cases.
1.0
Add support for <amp-sidebar> - Check: [amp-sidebar](https://www.ampproject.org/docs/reference/components/amp-sidebar) This component can be used to implement menus/navigation use cases.
non_test
add support for check this component can be used to implement menus navigation use cases
0
9,505
3,289,176,444
IssuesEvent
2015-10-29 17:53:14
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
opened
Brokwn download link in gh-pages
kind/documentation priority/P0
Similar to #16393, in http://kubernetes.io/v1.1/docs/getting-started-guides/docker-multinode/deployDNS.html, the download links doesn't work: - [skydns-rc template](http://kubernetes.io/v1.1/docs/getting-started-guides/docker-multinode/skydns-rc.yaml.in) - [skydns-svc template](http://kubernetes.io/v1.1/docs/getting-started-guides/docker-multinode/skydns-svc.yaml.in) cc @bgrant0607 @caesarxuchao @nikhiljindal
1.0
Brokwn download link in gh-pages - Similar to #16393, in http://kubernetes.io/v1.1/docs/getting-started-guides/docker-multinode/deployDNS.html, the download links doesn't work: - [skydns-rc template](http://kubernetes.io/v1.1/docs/getting-started-guides/docker-multinode/skydns-rc.yaml.in) - [skydns-svc template](http://kubernetes.io/v1.1/docs/getting-started-guides/docker-multinode/skydns-svc.yaml.in) cc @bgrant0607 @caesarxuchao @nikhiljindal
non_test
brokwn download link in gh pages similar to in the download links doesn t work cc caesarxuchao nikhiljindal
0
142,487
11,473,893,609
IssuesEvent
2020-02-10 01:47:18
imdasom/tdd
https://api.github.com/repos/imdasom/tdd
opened
react 16.8.4 : 테스트시 transform에러 발생하는 경우
@testing-library react
``` react : ^16.8.4 react-dom : ^16.8.4 ``` 다음과 같은 에러 발생시 리액트 관련 디펜던시를 16.9.0으로 버전업 해주어 에러 해결함 ```javascript import React from 'react'; ^^^^^ SyntaxError : unexpected identifier ... at ScriptTransformer.transform ( ... ) ```
1.0
react 16.8.4 : 테스트시 transform에러 발생하는 경우 - ``` react : ^16.8.4 react-dom : ^16.8.4 ``` 다음과 같은 에러 발생시 리액트 관련 디펜던시를 16.9.0으로 버전업 해주어 에러 해결함 ```javascript import React from 'react'; ^^^^^ SyntaxError : unexpected identifier ... at ScriptTransformer.transform ( ... ) ```
test
react 테스트시 transform에러 발생하는 경우 react react dom 다음과 같은 에러 발생시 리액트 관련 디펜던시를 버전업 해주어 에러 해결함 javascript import react from react syntaxerror unexpected identifier at scripttransformer transform
1
289,673
25,003,735,459
IssuesEvent
2022-11-03 10:08:34
Coderockr/backstage
https://api.github.com/repos/Coderockr/backstage
opened
Stencil
frontend component not tested yet frontend tools language: typescript tools
Build. Customize. Distribute. Adopt. Stencil is a toolchain for building reusable, scalable Design Systems. Generate small, blazing fast, and 100% standards based Web Components that run in every browser. --- https://stenciljs.com/docs/introduction
1.0
Stencil - Build. Customize. Distribute. Adopt. Stencil is a toolchain for building reusable, scalable Design Systems. Generate small, blazing fast, and 100% standards based Web Components that run in every browser. --- https://stenciljs.com/docs/introduction
test
stencil build customize distribute adopt stencil is a toolchain for building reusable scalable design systems generate small blazing fast and standards based web components that run in every browser
1
64,512
6,910,749,521
IssuesEvent
2017-11-28 04:15:20
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
reopened
[e2e failure] [sig-cluster-lifecycle] Upgrade [Feature:Upgrade] cluster upgrade should maintain a functioning cluster [Feature:ClusterUpgrade]
area/platform/gke kind/bug milestone/needs-attention priority/critical-urgent priority/failing-test sig/cluster-lifecycle sig/gcp sig/node status/approved-for-milestone
/priority critical-urgent /priority failing-test /kind bug /status approved-for-milestone /area platform/gke @kubernetes/sig-cluster-lifecycle-test-failures owns the test @kubernetes/sig-gcp-test-failures this looks GKE-specific @kubernetes/sig-node-test-failures for the AppArmor cluster This test has been failing since at least 2017-11-13 for the following jobs: - https://k8s-testgrid.appspot.com/sig-release-master-upgrade#gke-gci-1.8-gci-master-upgrade-master - https://k8s-testgrid.appspot.com/sig-release-master-upgrade#gke-gci-1.8-gci-master-upgrade-cluster-parallel - https://k8s-testgrid.appspot.com/sig-release-master-upgrade#gke-gci-1.8-gci-master-upgrade-cluster - https://k8s-testgrid.appspot.com/sig-release-master-upgrade#gke-gci-1.8-gci-master-upgrade-cluster-new These jobs are on the [sig-release-master-upgrade dashboard](https://k8s-testgrid.appspot.com/sig-release-master-upgrade), and prevent us from cutting v1.9.0-beta.1 (kubernetes/sig-release#34). Is there work ongoing to bring this test back to green? [triage report](https://storage.googleapis.com/k8s-gubernator/triage/index.html?test=%5C%5Bsig%5C-cluster%5C-lifecycle%5C%5D%5C%20Upgrade%5C%20%5C%5BFeature%3AUpgrade%5C%5D%5C%20cluster%5C%20upgrade%5C%20should%5C%20maintain%5C%20a%5C%20functioning%5C%20cluster%5C%20%5C%5BFeature%3AClusterUpgrade%5C%5D) [triage cluster 1a3779e6777a416e5ddf](https://storage.googleapis.com/k8s-gubernator/triage/index.html?test=%5C%5Bsig%5C-cluster%5C-lifecycle%5C%5D%5C%20Upgrade%5C%20%5C%5BFeature%3AUpgrade%5C%5D%5C%20cluster%5C%20upgrade%5C%20should%5C%20maintain%5C%20a%5C%20functioning%5C%20cluster%5C%20%5C%5BFeature%3AClusterUpgrade%5C%5D#1a3779e6777a416e5ddf) ``` ...ResponseError: code=400, message=Cluster master cannot be upgrade to \\\"1.10.0-alpha.0.55+01c74145c7b655\\\"... ``` [triage cluster 590fed6433270872638b](https://storage.googleapis.com/k8s-gubernator/triage/index.html?test=%5C%5Bsig%5C-cluster%5C-lifecycle%5C%5D%5C%20Upgrade%5C%20%5C%5BFeature%3AUpgrade%5C%5D%5C%20cluster%5C%20upgrade%5C%20should%5C%20maintain%5C%20a%5C%20functioning%5C%20cluster%5C%20%5C%5BFeature%3AClusterUpgrade%5C%5D#590fed6433270872638b) ``` ...invalid AppArmor profile name: "unconfined"... ``` Sample failure: https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gke-gci-new-gci-master-upgrade-master/729
1.0
[e2e failure] [sig-cluster-lifecycle] Upgrade [Feature:Upgrade] cluster upgrade should maintain a functioning cluster [Feature:ClusterUpgrade] - /priority critical-urgent /priority failing-test /kind bug /status approved-for-milestone /area platform/gke @kubernetes/sig-cluster-lifecycle-test-failures owns the test @kubernetes/sig-gcp-test-failures this looks GKE-specific @kubernetes/sig-node-test-failures for the AppArmor cluster This test has been failing since at least 2017-11-13 for the following jobs: - https://k8s-testgrid.appspot.com/sig-release-master-upgrade#gke-gci-1.8-gci-master-upgrade-master - https://k8s-testgrid.appspot.com/sig-release-master-upgrade#gke-gci-1.8-gci-master-upgrade-cluster-parallel - https://k8s-testgrid.appspot.com/sig-release-master-upgrade#gke-gci-1.8-gci-master-upgrade-cluster - https://k8s-testgrid.appspot.com/sig-release-master-upgrade#gke-gci-1.8-gci-master-upgrade-cluster-new These jobs are on the [sig-release-master-upgrade dashboard](https://k8s-testgrid.appspot.com/sig-release-master-upgrade), and prevent us from cutting v1.9.0-beta.1 (kubernetes/sig-release#34). Is there work ongoing to bring this test back to green? [triage report](https://storage.googleapis.com/k8s-gubernator/triage/index.html?test=%5C%5Bsig%5C-cluster%5C-lifecycle%5C%5D%5C%20Upgrade%5C%20%5C%5BFeature%3AUpgrade%5C%5D%5C%20cluster%5C%20upgrade%5C%20should%5C%20maintain%5C%20a%5C%20functioning%5C%20cluster%5C%20%5C%5BFeature%3AClusterUpgrade%5C%5D) [triage cluster 1a3779e6777a416e5ddf](https://storage.googleapis.com/k8s-gubernator/triage/index.html?test=%5C%5Bsig%5C-cluster%5C-lifecycle%5C%5D%5C%20Upgrade%5C%20%5C%5BFeature%3AUpgrade%5C%5D%5C%20cluster%5C%20upgrade%5C%20should%5C%20maintain%5C%20a%5C%20functioning%5C%20cluster%5C%20%5C%5BFeature%3AClusterUpgrade%5C%5D#1a3779e6777a416e5ddf) ``` ...ResponseError: code=400, message=Cluster master cannot be upgrade to \\\"1.10.0-alpha.0.55+01c74145c7b655\\\"... ``` [triage cluster 590fed6433270872638b](https://storage.googleapis.com/k8s-gubernator/triage/index.html?test=%5C%5Bsig%5C-cluster%5C-lifecycle%5C%5D%5C%20Upgrade%5C%20%5C%5BFeature%3AUpgrade%5C%5D%5C%20cluster%5C%20upgrade%5C%20should%5C%20maintain%5C%20a%5C%20functioning%5C%20cluster%5C%20%5C%5BFeature%3AClusterUpgrade%5C%5D#590fed6433270872638b) ``` ...invalid AppArmor profile name: "unconfined"... ``` Sample failure: https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gke-gci-new-gci-master-upgrade-master/729
test
upgrade cluster upgrade should maintain a functioning cluster priority critical urgent priority failing test kind bug status approved for milestone area platform gke kubernetes sig cluster lifecycle test failures owns the test kubernetes sig gcp test failures this looks gke specific kubernetes sig node test failures for the apparmor cluster this test has been failing since at least for the following jobs these jobs are on the and prevent us from cutting beta kubernetes sig release is there work ongoing to bring this test back to green responseerror code message cluster master cannot be upgrade to alpha invalid apparmor profile name unconfined sample failure
1
624,050
19,685,059,847
IssuesEvent
2022-01-11 21:05:17
GoogleChrome/lighthouse
https://api.github.com/repos/GoogleChrome/lighthouse
closed
Process devtools raw data (*.devtools.trace) in lighthouse
needs-priority
I have tons of devtools data and I wanted to run lighthouse "main-thread-tasks" audit on it. Is it possible to directly feed the *.devtools.trace to lighthouse? I wasn't able to get much from the description about "trace processor" in the README. Thanks. (apologies if this isn't the right avenue for this question, but I didn't see much activity in the google groups.)
1.0
Process devtools raw data (*.devtools.trace) in lighthouse - I have tons of devtools data and I wanted to run lighthouse "main-thread-tasks" audit on it. Is it possible to directly feed the *.devtools.trace to lighthouse? I wasn't able to get much from the description about "trace processor" in the README. Thanks. (apologies if this isn't the right avenue for this question, but I didn't see much activity in the google groups.)
non_test
process devtools raw data devtools trace in lighthouse i have tons of devtools data and i wanted to run lighthouse main thread tasks audit on it is it possible to directly feed the devtools trace to lighthouse i wasn t able to get much from the description about trace processor in the readme thanks apologies if this isn t the right avenue for this question but i didn t see much activity in the google groups
0
68,162
8,224,602,151
IssuesEvent
2018-09-06 14:07:49
ejplatform/ej-server
https://api.github.com/repos/ejplatform/ej-server
closed
Ajustes na concepção do alto contraste
design
- [x] Interna da conversa. Ex: https://cpa.dev.ejplatform.org/conversations/direitos-escola/ - a fonte da pergunta não é alterada. Esse comportamento está correto @luizapeixe? - [x] Login fica com o texto explicativo muito apagado (ver print abaixo) - [x] Título dos conteúdos estáticos também fica com a cor da fonte muito próxima do fundo (ver segundo print abaixo) Prints: ![photo_2018-08-22_18-08-03](https://user-images.githubusercontent.com/1162183/44491190-d3ffc680-a636-11e8-874b-f224b9022c7b.jpg) ![photo_2018-08-22_18-08-04](https://user-images.githubusercontent.com/1162183/44491189-d3ffc680-a636-11e8-9931-4013cb3ed012.jpg)
1.0
Ajustes na concepção do alto contraste - - [x] Interna da conversa. Ex: https://cpa.dev.ejplatform.org/conversations/direitos-escola/ - a fonte da pergunta não é alterada. Esse comportamento está correto @luizapeixe? - [x] Login fica com o texto explicativo muito apagado (ver print abaixo) - [x] Título dos conteúdos estáticos também fica com a cor da fonte muito próxima do fundo (ver segundo print abaixo) Prints: ![photo_2018-08-22_18-08-03](https://user-images.githubusercontent.com/1162183/44491190-d3ffc680-a636-11e8-874b-f224b9022c7b.jpg) ![photo_2018-08-22_18-08-04](https://user-images.githubusercontent.com/1162183/44491189-d3ffc680-a636-11e8-9931-4013cb3ed012.jpg)
non_test
ajustes na concepção do alto contraste interna da conversa ex a fonte da pergunta não é alterada esse comportamento está correto luizapeixe login fica com o texto explicativo muito apagado ver print abaixo título dos conteúdos estáticos também fica com a cor da fonte muito próxima do fundo ver segundo print abaixo prints
0
230,113
18,500,859,492
IssuesEvent
2021-10-19 13:39:52
elastic/kibana
https://api.github.com/repos/elastic/kibana
reopened
Failing test: X-Pack Endpoint API Integration Tests.x-pack/test/security_solution_endpoint_api_int/apis/metadata·ts - Endpoint plugin test metadata api POST /api/endpoint/metadata when index is not empty metadata api should return one entry for each host with default paging
blocker failed-test v8.0.0 skipped-test Team: SecuritySolution Team:Onboarding and Lifecycle Mgt v7.13.0 OLM Sprint v7.15.0
A test failed on a tracked branch ``` Error: expected 0 to sort of equal 3 at Assertion.assert (/dev/shm/workspace/kibana/node_modules/@kbn/expect/expect.js:100:11) at Assertion.eql (/dev/shm/workspace/kibana/node_modules/@kbn/expect/expect.js:244:8) at Context.<anonymous> (test/security_solution_endpoint_api_int/apis/metadata.ts:65:31) at Object.apply (/dev/shm/workspace/kibana/node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16) { actual: '0', expected: '3', showDiff: true } ``` First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.x/15461/) <!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Endpoint API Integration Tests.x-pack/test/security_solution_endpoint_api_int/apis/metadata·ts","test.name":"Endpoint plugin test metadata api POST /api/endpoint/metadata when index is not empty metadata api should return one entry for each host with default paging","test.failCount":36}} -->
2.0
Failing test: X-Pack Endpoint API Integration Tests.x-pack/test/security_solution_endpoint_api_int/apis/metadata·ts - Endpoint plugin test metadata api POST /api/endpoint/metadata when index is not empty metadata api should return one entry for each host with default paging - A test failed on a tracked branch ``` Error: expected 0 to sort of equal 3 at Assertion.assert (/dev/shm/workspace/kibana/node_modules/@kbn/expect/expect.js:100:11) at Assertion.eql (/dev/shm/workspace/kibana/node_modules/@kbn/expect/expect.js:244:8) at Context.<anonymous> (test/security_solution_endpoint_api_int/apis/metadata.ts:65:31) at Object.apply (/dev/shm/workspace/kibana/node_modules/@kbn/test/target_node/functional_test_runner/lib/mocha/wrap_function.js:87:16) { actual: '0', expected: '3', showDiff: true } ``` First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.x/15461/) <!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Endpoint API Integration Tests.x-pack/test/security_solution_endpoint_api_int/apis/metadata·ts","test.name":"Endpoint plugin test metadata api POST /api/endpoint/metadata when index is not empty metadata api should return one entry for each host with default paging","test.failCount":36}} -->
test
failing test x pack endpoint api integration tests x pack test security solution endpoint api int apis metadata·ts endpoint plugin test metadata api post api endpoint metadata when index is not empty metadata api should return one entry for each host with default paging a test failed on a tracked branch error expected to sort of equal at assertion assert dev shm workspace kibana node modules kbn expect expect js at assertion eql dev shm workspace kibana node modules kbn expect expect js at context test security solution endpoint api int apis metadata ts at object apply dev shm workspace kibana node modules kbn test target node functional test runner lib mocha wrap function js actual expected showdiff true first failure
1
307,846
26,568,300,531
IssuesEvent
2023-01-20 22:57:00
Azure/azure-sdk-for-net
https://api.github.com/repos/Azure/azure-sdk-for-net
opened
Consider adding RunOnlyOnTargetFrameworkAttribute for TestFramework
Client EngSys feature-request test-enhancement
Now that we're exploring multi-targeting more, we may have need for an attribute similar to `RunOnlyOnPlatformsAttribute` we have now in our Azure.Core.TestFramework, but for .NET TFMs. It might look something like this: ```c# [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly, AllowMultiple = false, Inherited = true)] public class RunOnlyOnTargetFrameworkAttribute : NUnitAttribute, IApplyToTest { public RunOnlyOnTargetFrameworkAttribute(int major, int? minor = default, int? build = default) { Major = major; Minor = minor; Build = build; } public int Major { get; } public int? Minor { get; } public int? Build { get; } public TargetFrameworkEdition Edition { get; set; } = TargetFrameworkEdition.Any; public void ApplyToTest(Test test) { /* ... */ } } public enum TargetFrameworkEdition { Any, Framework, Core, } ``` See https://github.com/dotnet/sdk/blob/86117ad328025825f25f88389077d9eee2dc9031/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.BeforeCommon.targets for some context about how we should handle the .NET Framework 4 / .NET Core 2.0, 3.0 era as well as `OR_GREATER` support, which gets interesting with `netstandard2.0`. Alternatively, perhaps instead of "TargetFramework" it would be easier and more appropriate to check against "Runtime", as in which runtime the test is running against. We may not need this, however. You can likely do this with preproc conditions but remember to also consider the `SNIPPET` symbol for tests from which you extract snippets e.g., `#region Snippet:MySampleSnippet`. ```c# public partial class MyTests { #if NET472_OR_GREATER || NET || SNIPPET [Test] public async Task Sample1() { #region Snippet:FancySample1 await Task.Yield(); #endregion } #endif } ```
1.0
Consider adding RunOnlyOnTargetFrameworkAttribute for TestFramework - Now that we're exploring multi-targeting more, we may have need for an attribute similar to `RunOnlyOnPlatformsAttribute` we have now in our Azure.Core.TestFramework, but for .NET TFMs. It might look something like this: ```c# [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly, AllowMultiple = false, Inherited = true)] public class RunOnlyOnTargetFrameworkAttribute : NUnitAttribute, IApplyToTest { public RunOnlyOnTargetFrameworkAttribute(int major, int? minor = default, int? build = default) { Major = major; Minor = minor; Build = build; } public int Major { get; } public int? Minor { get; } public int? Build { get; } public TargetFrameworkEdition Edition { get; set; } = TargetFrameworkEdition.Any; public void ApplyToTest(Test test) { /* ... */ } } public enum TargetFrameworkEdition { Any, Framework, Core, } ``` See https://github.com/dotnet/sdk/blob/86117ad328025825f25f88389077d9eee2dc9031/src/Tasks/Microsoft.NET.Build.Tasks/targets/Microsoft.NET.Sdk.BeforeCommon.targets for some context about how we should handle the .NET Framework 4 / .NET Core 2.0, 3.0 era as well as `OR_GREATER` support, which gets interesting with `netstandard2.0`. Alternatively, perhaps instead of "TargetFramework" it would be easier and more appropriate to check against "Runtime", as in which runtime the test is running against. We may not need this, however. You can likely do this with preproc conditions but remember to also consider the `SNIPPET` symbol for tests from which you extract snippets e.g., `#region Snippet:MySampleSnippet`. ```c# public partial class MyTests { #if NET472_OR_GREATER || NET || SNIPPET [Test] public async Task Sample1() { #region Snippet:FancySample1 await Task.Yield(); #endregion } #endif } ```
test
consider adding runonlyontargetframeworkattribute for testframework now that we re exploring multi targeting more we may have need for an attribute similar to runonlyonplatformsattribute we have now in our azure core testframework but for net tfms it might look something like this c public class runonlyontargetframeworkattribute nunitattribute iapplytotest public runonlyontargetframeworkattribute int major int minor default int build default major major minor minor build build public int major get public int minor get public int build get public targetframeworkedition edition get set targetframeworkedition any public void applytotest test test public enum targetframeworkedition any framework core see for some context about how we should handle the net framework net core era as well as or greater support which gets interesting with alternatively perhaps instead of targetframework it would be easier and more appropriate to check against runtime as in which runtime the test is running against we may not need this however you can likely do this with preproc conditions but remember to also consider the snippet symbol for tests from which you extract snippets e g region snippet mysamplesnippet c public partial class mytests if or greater net snippet public async task region snippet await task yield endregion endif
1
749,553
26,168,472,236
IssuesEvent
2023-01-01 15:54:39
aquasecurity/trivy-operator
https://api.github.com/repos/aquasecurity/trivy-operator
closed
Cis-benchmark initial
kind/feature priority/backlog target/kubernetes
Generate cis benchmark compliance report with controls checks : - etcd - api-server - controller-mamager - scheduler ***Not included*** : - file-system permission/ownership (api-server,etcd,controller-mamager and scheduler) - kubelet - cni
1.0
Cis-benchmark initial - Generate cis benchmark compliance report with controls checks : - etcd - api-server - controller-mamager - scheduler ***Not included*** : - file-system permission/ownership (api-server,etcd,controller-mamager and scheduler) - kubelet - cni
non_test
cis benchmark initial generate cis benchmark compliance report with controls checks etcd api server controller mamager scheduler not included file system permission ownership api server etcd controller mamager and scheduler kubelet cni
0
131,107
10,680,752,441
IssuesEvent
2019-10-21 22:15:55
elastic/kibana
https://api.github.com/repos/elastic/kibana
opened
Failing test: X-Pack Jest Tests.x-pack/legacy/plugins/canvas/shareable_runtime/components/__tests__ - <App /> autohide footer functions on mouseEnter + Leave
failed-test
A test failed on a tracked branch ``` Error: Method “simulate” is meant to be run on 1 node. 0 found instead. at ReactWrapper.single (/var/lib/jenkins/workspace/elastic+kibana+7.5/kibana/node_modules/enzyme/src/ReactWrapper.js:1166:13) at ReactWrapper.single [as simulate] (/var/lib/jenkins/workspace/elastic+kibana+7.5/kibana/node_modules/enzyme/src/ReactWrapper.js:665:17) at Object.simulate (/var/lib/jenkins/workspace/elastic+kibana+7.5/kibana/x-pack/legacy/plugins/canvas/shareable_runtime/components/__tests__/app.test.tsx:114:27) ``` First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.5/47/) <!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Jest Tests.x-pack/legacy/plugins/canvas/shareable_runtime/components/__tests__","test.name":"<App /> autohide footer functions on mouseEnter + Leave","test.failCount":1}} -->
1.0
Failing test: X-Pack Jest Tests.x-pack/legacy/plugins/canvas/shareable_runtime/components/__tests__ - <App /> autohide footer functions on mouseEnter + Leave - A test failed on a tracked branch ``` Error: Method “simulate” is meant to be run on 1 node. 0 found instead. at ReactWrapper.single (/var/lib/jenkins/workspace/elastic+kibana+7.5/kibana/node_modules/enzyme/src/ReactWrapper.js:1166:13) at ReactWrapper.single [as simulate] (/var/lib/jenkins/workspace/elastic+kibana+7.5/kibana/node_modules/enzyme/src/ReactWrapper.js:665:17) at Object.simulate (/var/lib/jenkins/workspace/elastic+kibana+7.5/kibana/x-pack/legacy/plugins/canvas/shareable_runtime/components/__tests__/app.test.tsx:114:27) ``` First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.5/47/) <!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Jest Tests.x-pack/legacy/plugins/canvas/shareable_runtime/components/__tests__","test.name":"<App /> autohide footer functions on mouseEnter + Leave","test.failCount":1}} -->
test
failing test x pack jest tests x pack legacy plugins canvas shareable runtime components tests autohide footer functions on mouseenter leave a test failed on a tracked branch error method “simulate” is meant to be run on node found instead at reactwrapper single var lib jenkins workspace elastic kibana kibana node modules enzyme src reactwrapper js at reactwrapper single var lib jenkins workspace elastic kibana kibana node modules enzyme src reactwrapper js at object simulate var lib jenkins workspace elastic kibana kibana x pack legacy plugins canvas shareable runtime components tests app test tsx first failure autohide footer functions on mouseenter leave test failcount
1
137,695
30,736,957,813
IssuesEvent
2023-07-28 08:26:01
cosmos/ibc-go
https://api.github.com/repos/cosmos/ibc-go
closed
Remove Version interface from 03-connection interface types
good first issue code hygiene 03-connection
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺ v ✰ Thanks for opening an issue! ✰ v Before smashing the submit button please review the template. v Word of caution: poorly thought-out proposals may be rejected v without deliberation ☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --> Pre-requirements: - [x] #1689 ## Summary Remove the [`Version`](https://github.com/cosmos/ibc-go/blob/c449d858e73e3e9de8ded269ebb11d62a8b96d54/modules/core/exported/connection.go#L22) interface. ## Problem Definition The Version interface was added to fulfill the `GetVersions` interface. As this function will be removed, this abstraction is no longer necessary and will prevent us from doing unnecessary type casting between the interface and the concrete implementation. ## Proposal - Remove the [Version](https://github.com/cosmos/ibc-go/blob/main/modules/core/exported/connection.go#L21-#L26) interface - Remove [functions](https://github.com/cosmos/ibc-go/blob/main/modules/core/03-connection/types/version.go#L189-#L209) casting between the two types - Replace all API's with the concrete version type. That is use `*Version` instead of `exported.Version` within the [`version.go`](https://github.com/cosmos/ibc-go/blob/main/modules/core/03-connection/types/version.go) file - Add changelog entry There might be some unforseen issue I am overlooking. Please comment if you run into an issue. This change is primarily a code improvement and thus a nice to have ____ #### For Admin Use - [ ] Not duplicate issue - [ ] Appropriate labels applied - [ ] Appropriate contributors tagged/assigned
1.0
Remove Version interface from 03-connection interface types - <!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺ v ✰ Thanks for opening an issue! ✰ v Before smashing the submit button please review the template. v Word of caution: poorly thought-out proposals may be rejected v without deliberation ☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --> Pre-requirements: - [x] #1689 ## Summary Remove the [`Version`](https://github.com/cosmos/ibc-go/blob/c449d858e73e3e9de8ded269ebb11d62a8b96d54/modules/core/exported/connection.go#L22) interface. ## Problem Definition The Version interface was added to fulfill the `GetVersions` interface. As this function will be removed, this abstraction is no longer necessary and will prevent us from doing unnecessary type casting between the interface and the concrete implementation. ## Proposal - Remove the [Version](https://github.com/cosmos/ibc-go/blob/main/modules/core/exported/connection.go#L21-#L26) interface - Remove [functions](https://github.com/cosmos/ibc-go/blob/main/modules/core/03-connection/types/version.go#L189-#L209) casting between the two types - Replace all API's with the concrete version type. That is use `*Version` instead of `exported.Version` within the [`version.go`](https://github.com/cosmos/ibc-go/blob/main/modules/core/03-connection/types/version.go) file - Add changelog entry There might be some unforseen issue I am overlooking. Please comment if you run into an issue. This change is primarily a code improvement and thus a nice to have ____ #### For Admin Use - [ ] Not duplicate issue - [ ] Appropriate labels applied - [ ] Appropriate contributors tagged/assigned
non_test
remove version interface from connection interface types ☺ v ✰ thanks for opening an issue ✰ v before smashing the submit button please review the template v word of caution poorly thought out proposals may be rejected v without deliberation ☺ pre requirements summary remove the interface problem definition the version interface was added to fulfill the getversions interface as this function will be removed this abstraction is no longer necessary and will prevent us from doing unnecessary type casting between the interface and the concrete implementation proposal remove the interface remove casting between the two types replace all api s with the concrete version type that is use version instead of exported version within the file add changelog entry there might be some unforseen issue i am overlooking please comment if you run into an issue this change is primarily a code improvement and thus a nice to have for admin use not duplicate issue appropriate labels applied appropriate contributors tagged assigned
0
41,404
5,355,311,754
IssuesEvent
2017-02-20 12:36:12
QualiSystems/OpenStack-Shell
https://api.github.com/repos/QualiSystems/OpenStack-Shell
closed
No default route for App Connectivity Subnets
bug P1 Resolved Test Plan Ready
Right now when we create Networks and Subnets for App connectivity, default routes get added to the subnets when the interfaces come up. This results in completely messed up routing tables on VM and the connectivity to VM is potentially lost. The way to fix this is - when we create a Subnet (during connectivity) we need to explicitly specify that the particular subnet does not have a default g/w
1.0
No default route for App Connectivity Subnets - Right now when we create Networks and Subnets for App connectivity, default routes get added to the subnets when the interfaces come up. This results in completely messed up routing tables on VM and the connectivity to VM is potentially lost. The way to fix this is - when we create a Subnet (during connectivity) we need to explicitly specify that the particular subnet does not have a default g/w
test
no default route for app connectivity subnets right now when we create networks and subnets for app connectivity default routes get added to the subnets when the interfaces come up this results in completely messed up routing tables on vm and the connectivity to vm is potentially lost the way to fix this is when we create a subnet during connectivity we need to explicitly specify that the particular subnet does not have a default g w
1
815,440
30,554,522,580
IssuesEvent
2023-07-20 10:44:47
Shelf-nu/shelf.nu
https://api.github.com/repos/Shelf-nu/shelf.nu
closed
[Bug]: Performing some action on asset index, disables clicking on table elements
bug High Priority
### Contact Details _No response_ ### What happened? Steps to reproduce: 1. Go to Asset index 2. Click on any asset 3. Delete the asset 4. You will be redirected back to `/assets` 5. Try clicking on any asset on the list and it won't work 6. Refreshing the page fixes the issue ### What is the expected behaviour? Being able to click on asset ### Version Hosted (app.shelf.nu) ### What browsers are you seeing the problem on? Firefox, Chrome, Safari, Microsoft Edge ### Relevant log output _No response_
1.0
[Bug]: Performing some action on asset index, disables clicking on table elements - ### Contact Details _No response_ ### What happened? Steps to reproduce: 1. Go to Asset index 2. Click on any asset 3. Delete the asset 4. You will be redirected back to `/assets` 5. Try clicking on any asset on the list and it won't work 6. Refreshing the page fixes the issue ### What is the expected behaviour? Being able to click on asset ### Version Hosted (app.shelf.nu) ### What browsers are you seeing the problem on? Firefox, Chrome, Safari, Microsoft Edge ### Relevant log output _No response_
non_test
performing some action on asset index disables clicking on table elements contact details no response what happened steps to reproduce go to asset index click on any asset delete the asset you will be redirected back to assets try clicking on any asset on the list and it won t work refreshing the page fixes the issue what is the expected behaviour being able to click on asset version hosted app shelf nu what browsers are you seeing the problem on firefox chrome safari microsoft edge relevant log output no response
0
103,079
8,877,079,766
IssuesEvent
2019-01-12 20:55:01
dasfabs/Kingdom4
https://api.github.com/repos/dasfabs/Kingdom4
closed
Highscores werden nicht zuverlässig angezeigt
Must have Ready to TEST bug
Entweder werden die Highscores nicht zuverlässig übertragen oder die Anzeige wird unzuverlässig gefiltert. (Eventuell wird nach Anzahl der Trophies gefiltert?)
1.0
Highscores werden nicht zuverlässig angezeigt - Entweder werden die Highscores nicht zuverlässig übertragen oder die Anzeige wird unzuverlässig gefiltert. (Eventuell wird nach Anzahl der Trophies gefiltert?)
test
highscores werden nicht zuverlässig angezeigt entweder werden die highscores nicht zuverlässig übertragen oder die anzeige wird unzuverlässig gefiltert eventuell wird nach anzahl der trophies gefiltert
1
351,300
31,995,278,476
IssuesEvent
2023-09-21 08:49:23
longhorn/longhorn
https://api.github.com/repos/longhorn/longhorn
opened
[TEST] Customize powered off time or get the timeout from kube-control-manager in node reboot test cases
kind/test
## What's the test to develop? Please describe In node reboot test cases, customize the `powered off time` or automatically get the timeout from `kube-control-manager` to dynamically decide the value. ## Describe the tasks for the test <!-- Please use a task list for items on a separate line with a clickable checkbox https://docs.github.com/en/issues/tracking-your-work-with-issues/about-task-lists - [ ] `item 1` --> ## Additional context pod-eviction-timeout: After the NotReady state node exceeds a default time of five minutes, the eviction will be executed. https://github.com/longhorn/longhorn-tests/pull/1534#discussion_r1332524760
1.0
[TEST] Customize powered off time or get the timeout from kube-control-manager in node reboot test cases - ## What's the test to develop? Please describe In node reboot test cases, customize the `powered off time` or automatically get the timeout from `kube-control-manager` to dynamically decide the value. ## Describe the tasks for the test <!-- Please use a task list for items on a separate line with a clickable checkbox https://docs.github.com/en/issues/tracking-your-work-with-issues/about-task-lists - [ ] `item 1` --> ## Additional context pod-eviction-timeout: After the NotReady state node exceeds a default time of five minutes, the eviction will be executed. https://github.com/longhorn/longhorn-tests/pull/1534#discussion_r1332524760
test
customize powered off time or get the timeout from kube control manager in node reboot test cases what s the test to develop please describe in node reboot test cases customize the powered off time or automatically get the timeout from kube control manager to dynamically decide the value describe the tasks for the test please use a task list for items on a separate line with a clickable checkbox item additional context pod eviction timeout after the notready state node exceeds a default time of five minutes the eviction will be executed
1
290,521
8,896,050,707
IssuesEvent
2019-01-16 10:22:38
ntop/ntopng
https://api.github.com/repos/ntop/ntopng
closed
NTOPNG spontaneously stops exporting flows
bug priority ticket
I've had this issue pop up a few times now and I'm not sure what the trigger is. While we generally have overarching performance issues with our VM host, this should not be occurring at all. I have mysql and influxdb co-existing on the same VM, and generally, it's performant enough. But I have issues after some period of time where ntopng stops exporting flows... ![noflows](https://user-images.githubusercontent.com/32870121/50890154-93d88f00-13f1-11e9-8cb5-107c073c55e8.png) And the table status... `mysql> mysql> show table status; +-------------+--------+---------+------------+-----------+----------------+--------------+-----------------+--------------+--------------+----------------+---------------------+---------------------+------------+-----------------+----------+----------------+---------+ | Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment | +-------------+--------+---------+------------+-----------+----------------+--------------+-----------------+--------------+--------------+----------------+---------------------+---------------------+------------+-----------------+----------+----------------+---------+ | aggrflowsv4 | MyISAM | 10 | Dynamic | 246491380 | 118 | 29093725432 | 0 | 55745648640 | 16223221040 | 855426024 | 2018-11-29 10:32:15 | 2019-01-07 23:59:15 | NULL | utf8_general_ci | NULL | partitioned | | | aggrflowsv6 | MyISAM | 10 | Dynamic | 0 | 0 | 0 | 0 | 32768 | 0 | 1 | 2018-11-29 10:32:15 | 2018-11-29 10:32:15 | NULL | utf8_general_ci | NULL | partitioned | | | flowsv4 | MyISAM | 10 | Dynamic | 380459954 | 1458 | 554732238120 | 0 | 163943937024 | 413778079952 | 1834079511 | 2018-11-29 10:32:15 | 2019-01-09 09:32:05 | NULL | utf8_general_ci | NULL | partitioned | | | flowsv6 | MyISAM | 10 | Dynamic | 0 | 0 | 0 | 0 | 32768 | 0 | 7 | 2018-11-29 10:32:15 | 2018-11-29 10:32:15 | NULL | utf8_general_ci | NULL | partitioned | | +-------------+--------+---------+------------+-----------+----------------+--------------+-----------------+--------------+--------------+----------------+---------------------+---------------------+------------+-----------------+----------+----------------+---------+ 4 rows in set, 4 warnings (0.00 sec)` From what I can guess, this started on the third of this month. I base this on some graphs in Grafana that are pulling from the native ntop plugin, and I see some drops in data in my graphs... ![droppeddata](https://user-images.githubusercontent.com/32870121/50892060-8b825300-13f5-11e9-965f-a81dbea9fc4a.png) ...so looking at the log files from that day, I see some influx related messages: `Jan 3 06:40:29 GB-THN-LIN-NTOP2 ntopng[14429]: {"error":"partial write: max-series-per-database limit exceeded: (1000000) dropped=655"}` ...which I have addressed, but should be neither here nor there. I also see: `Jan 3 10:50:18 GB-THN-LIN-NTOP2 ntopng[14429]: 03/Jan/2019 10:50:18 [Utils.cpp:1261] WARNING: Unable to post data to (http://localhost:8086/write?db=ntopng): Timeout was reached ` ...but is also not specific to mysql. I see a lot of influx queries....but nothing is jumping out at me. Looking at today's logs, as this is an ongoing issue, there too, nothing is readily apparent as to why ntopng is not writing to the database. I've restarted the box last time this occurred, but I don't want to do this as I want to find the cause.
1.0
NTOPNG spontaneously stops exporting flows - I've had this issue pop up a few times now and I'm not sure what the trigger is. While we generally have overarching performance issues with our VM host, this should not be occurring at all. I have mysql and influxdb co-existing on the same VM, and generally, it's performant enough. But I have issues after some period of time where ntopng stops exporting flows... ![noflows](https://user-images.githubusercontent.com/32870121/50890154-93d88f00-13f1-11e9-8cb5-107c073c55e8.png) And the table status... `mysql> mysql> show table status; +-------------+--------+---------+------------+-----------+----------------+--------------+-----------------+--------------+--------------+----------------+---------------------+---------------------+------------+-----------------+----------+----------------+---------+ | Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment | +-------------+--------+---------+------------+-----------+----------------+--------------+-----------------+--------------+--------------+----------------+---------------------+---------------------+------------+-----------------+----------+----------------+---------+ | aggrflowsv4 | MyISAM | 10 | Dynamic | 246491380 | 118 | 29093725432 | 0 | 55745648640 | 16223221040 | 855426024 | 2018-11-29 10:32:15 | 2019-01-07 23:59:15 | NULL | utf8_general_ci | NULL | partitioned | | | aggrflowsv6 | MyISAM | 10 | Dynamic | 0 | 0 | 0 | 0 | 32768 | 0 | 1 | 2018-11-29 10:32:15 | 2018-11-29 10:32:15 | NULL | utf8_general_ci | NULL | partitioned | | | flowsv4 | MyISAM | 10 | Dynamic | 380459954 | 1458 | 554732238120 | 0 | 163943937024 | 413778079952 | 1834079511 | 2018-11-29 10:32:15 | 2019-01-09 09:32:05 | NULL | utf8_general_ci | NULL | partitioned | | | flowsv6 | MyISAM | 10 | Dynamic | 0 | 0 | 0 | 0 | 32768 | 0 | 7 | 2018-11-29 10:32:15 | 2018-11-29 10:32:15 | NULL | utf8_general_ci | NULL | partitioned | | +-------------+--------+---------+------------+-----------+----------------+--------------+-----------------+--------------+--------------+----------------+---------------------+---------------------+------------+-----------------+----------+----------------+---------+ 4 rows in set, 4 warnings (0.00 sec)` From what I can guess, this started on the third of this month. I base this on some graphs in Grafana that are pulling from the native ntop plugin, and I see some drops in data in my graphs... ![droppeddata](https://user-images.githubusercontent.com/32870121/50892060-8b825300-13f5-11e9-965f-a81dbea9fc4a.png) ...so looking at the log files from that day, I see some influx related messages: `Jan 3 06:40:29 GB-THN-LIN-NTOP2 ntopng[14429]: {"error":"partial write: max-series-per-database limit exceeded: (1000000) dropped=655"}` ...which I have addressed, but should be neither here nor there. I also see: `Jan 3 10:50:18 GB-THN-LIN-NTOP2 ntopng[14429]: 03/Jan/2019 10:50:18 [Utils.cpp:1261] WARNING: Unable to post data to (http://localhost:8086/write?db=ntopng): Timeout was reached ` ...but is also not specific to mysql. I see a lot of influx queries....but nothing is jumping out at me. Looking at today's logs, as this is an ongoing issue, there too, nothing is readily apparent as to why ntopng is not writing to the database. I've restarted the box last time this occurred, but I don't want to do this as I want to find the cause.
non_test
ntopng spontaneously stops exporting flows i ve had this issue pop up a few times now and i m not sure what the trigger is while we generally have overarching performance issues with our vm host this should not be occurring at all i have mysql and influxdb co existing on the same vm and generally it s performant enough but i have issues after some period of time where ntopng stops exporting flows and the table status mysql mysql show table status name engine version row format rows avg row length data length max data length index length data free auto increment create time update time check time collation checksum create options comment myisam dynamic null general ci null partitioned myisam dynamic null general ci null partitioned myisam dynamic null general ci null partitioned myisam dynamic null general ci null partitioned rows in set warnings sec from what i can guess this started on the third of this month i base this on some graphs in grafana that are pulling from the native ntop plugin and i see some drops in data in my graphs so looking at the log files from that day i see some influx related messages jan gb thn lin ntopng error partial write max series per database limit exceeded dropped which i have addressed but should be neither here nor there i also see jan gb thn lin ntopng jan warning unable to post data to timeout was reached but is also not specific to mysql i see a lot of influx queries but nothing is jumping out at me looking at today s logs as this is an ongoing issue there too nothing is readily apparent as to why ntopng is not writing to the database i ve restarted the box last time this occurred but i don t want to do this as i want to find the cause
0
271,685
23,622,319,688
IssuesEvent
2022-08-24 22:02:10
godotengine/godot
https://api.github.com/repos/godotengine/godot
closed
MultiplayerSynchronizer fatally crashes when attempting to sync a PackedStringArray
bug confirmed needs testing topic:network crash topic:multiplayer
### Godot version 4.0.dev (11abff) ### System information Windows 10 ### Issue description Backtrace below: seems related to a type. First failed on alpha13, so updated to master to further test. ``` CrashHandlerException: Program crashed Engine version: Godot Engine v4.0.alpha.custom_build (11abffbf1282d457f966741f14aa5a5793f3c208) Dumping the backtrace. Please include this when reporting the bug on: https://github.com/godotengine/godot/issues [0] MultiplayerAPI::encode_and_compress_variant (C:\Users\Chris\Development\godot\godot\scene\main\multiplayer_api.cpp:74) [1] MultiplayerAPI::encode_and_compress_variants (C:\Users\Chris\Development\godot\godot\scene\main\multiplayer_api.cpp:248) [2] SceneReplicationInterface::_make_spawn_packet (C:\Users\Chris\Development\godot\godot\modules\multiplayer\scene_replication_interface.cpp:298) [3] SceneReplicationInterface::_update_spawn_visibility (C:\Users\Chris\Development\godot\godot\modules\multiplayer\scene_replication_interface.cpp:234) [4] SceneReplicationInterface::on_peer_change (C:\Users\Chris\Development\godot\godot\modules\multiplayer\scene_replication_interface.cpp:56) [5] SceneMultiplayer::_add_peer (C:\Users\Chris\Development\godot\godot\modules\multiplayer\scene_multiplayer.cpp:176) [6] CallableCustomMethodPointer<SceneMultiplayer,int>::call (C:\Users\Chris\Development\godot\godot\core\object\callable_method_pointer.h:105) [7] Callable::callp (C:\Users\Chris\Development\godot\godot\core\variant\callable.cpp:51) [8] Object::emit_signalp (C:\Users\Chris\Development\godot\godot\core\object\object.cpp:991) [9] Object::emit_signal<int> (C:\Users\Chris\Development\godot\godot\core\object\object.h:818) [10] ENetMultiplayerPeer::_parse_server_event (C:\Users\Chris\Development\godot\godot\modules\enet\enet_multiplayer_peer.cpp:134) [11] ENetMultiplayerPeer::poll (C:\Users\Chris\Development\godot\godot\modules\enet\enet_multiplayer_peer.cpp:337) [12] SceneMultiplayer::poll (C:\Users\Chris\Development\godot\godot\modules\multiplayer\scene_multiplayer.cpp:61) [13] SceneTree::process (C:\Users\Chris\Development\godot\godot\scene\main\scene_tree.cpp:442) [14] Main::iteration (C:\Users\Chris\Development\godot\godot\main\main.cpp:2885) [15] OS_Windows::run (C:\Users\Chris\Development\godot\godot\platform\windows\os_windows.cpp:907) [16] widechar_main (C:\Users\Chris\Development\godot\godot\platform\windows\godot_windows.cpp:179) [17] _main (C:\Users\Chris\Development\godot\godot\platform\windows\godot_windows.cpp:203) [18] main (C:\Users\Chris\Development\godot\godot\platform\windows\godot_windows.cpp:215) [19] __scrt_common_main_seh (d:\agent\_work\63\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl:288) [20] BaseThreadInitThunk -- END OF BACKTRACE -- ``` ### Steps to reproduce A combination of Spawner and Synchronizer, and an unknown additional condition. I've tried disabling the spawn variables on my synchronizer (via the checkbox) and it did not stop the issue. I'm happy to run additional debugging but I'm unsure where to focus my efforts. Hoping for some guidance here. ### Minimal reproduction project _No response_
1.0
MultiplayerSynchronizer fatally crashes when attempting to sync a PackedStringArray - ### Godot version 4.0.dev (11abff) ### System information Windows 10 ### Issue description Backtrace below: seems related to a type. First failed on alpha13, so updated to master to further test. ``` CrashHandlerException: Program crashed Engine version: Godot Engine v4.0.alpha.custom_build (11abffbf1282d457f966741f14aa5a5793f3c208) Dumping the backtrace. Please include this when reporting the bug on: https://github.com/godotengine/godot/issues [0] MultiplayerAPI::encode_and_compress_variant (C:\Users\Chris\Development\godot\godot\scene\main\multiplayer_api.cpp:74) [1] MultiplayerAPI::encode_and_compress_variants (C:\Users\Chris\Development\godot\godot\scene\main\multiplayer_api.cpp:248) [2] SceneReplicationInterface::_make_spawn_packet (C:\Users\Chris\Development\godot\godot\modules\multiplayer\scene_replication_interface.cpp:298) [3] SceneReplicationInterface::_update_spawn_visibility (C:\Users\Chris\Development\godot\godot\modules\multiplayer\scene_replication_interface.cpp:234) [4] SceneReplicationInterface::on_peer_change (C:\Users\Chris\Development\godot\godot\modules\multiplayer\scene_replication_interface.cpp:56) [5] SceneMultiplayer::_add_peer (C:\Users\Chris\Development\godot\godot\modules\multiplayer\scene_multiplayer.cpp:176) [6] CallableCustomMethodPointer<SceneMultiplayer,int>::call (C:\Users\Chris\Development\godot\godot\core\object\callable_method_pointer.h:105) [7] Callable::callp (C:\Users\Chris\Development\godot\godot\core\variant\callable.cpp:51) [8] Object::emit_signalp (C:\Users\Chris\Development\godot\godot\core\object\object.cpp:991) [9] Object::emit_signal<int> (C:\Users\Chris\Development\godot\godot\core\object\object.h:818) [10] ENetMultiplayerPeer::_parse_server_event (C:\Users\Chris\Development\godot\godot\modules\enet\enet_multiplayer_peer.cpp:134) [11] ENetMultiplayerPeer::poll (C:\Users\Chris\Development\godot\godot\modules\enet\enet_multiplayer_peer.cpp:337) [12] SceneMultiplayer::poll (C:\Users\Chris\Development\godot\godot\modules\multiplayer\scene_multiplayer.cpp:61) [13] SceneTree::process (C:\Users\Chris\Development\godot\godot\scene\main\scene_tree.cpp:442) [14] Main::iteration (C:\Users\Chris\Development\godot\godot\main\main.cpp:2885) [15] OS_Windows::run (C:\Users\Chris\Development\godot\godot\platform\windows\os_windows.cpp:907) [16] widechar_main (C:\Users\Chris\Development\godot\godot\platform\windows\godot_windows.cpp:179) [17] _main (C:\Users\Chris\Development\godot\godot\platform\windows\godot_windows.cpp:203) [18] main (C:\Users\Chris\Development\godot\godot\platform\windows\godot_windows.cpp:215) [19] __scrt_common_main_seh (d:\agent\_work\63\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl:288) [20] BaseThreadInitThunk -- END OF BACKTRACE -- ``` ### Steps to reproduce A combination of Spawner and Synchronizer, and an unknown additional condition. I've tried disabling the spawn variables on my synchronizer (via the checkbox) and it did not stop the issue. I'm happy to run additional debugging but I'm unsure where to focus my efforts. Hoping for some guidance here. ### Minimal reproduction project _No response_
test
multiplayersynchronizer fatally crashes when attempting to sync a packedstringarray godot version dev system information windows issue description backtrace below seems related to a type first failed on so updated to master to further test crashhandlerexception program crashed engine version godot engine alpha custom build dumping the backtrace please include this when reporting the bug on multiplayerapi encode and compress variant c users chris development godot godot scene main multiplayer api cpp multiplayerapi encode and compress variants c users chris development godot godot scene main multiplayer api cpp scenereplicationinterface make spawn packet c users chris development godot godot modules multiplayer scene replication interface cpp scenereplicationinterface update spawn visibility c users chris development godot godot modules multiplayer scene replication interface cpp scenereplicationinterface on peer change c users chris development godot godot modules multiplayer scene replication interface cpp scenemultiplayer add peer c users chris development godot godot modules multiplayer scene multiplayer cpp callablecustommethodpointer call c users chris development godot godot core object callable method pointer h callable callp c users chris development godot godot core variant callable cpp object emit signalp c users chris development godot godot core object object cpp object emit signal c users chris development godot godot core object object h enetmultiplayerpeer parse server event c users chris development godot godot modules enet enet multiplayer peer cpp enetmultiplayerpeer poll c users chris development godot godot modules enet enet multiplayer peer cpp scenemultiplayer poll c users chris development godot godot modules multiplayer scene multiplayer cpp scenetree process c users chris development godot godot scene main scene tree cpp main iteration c users chris development godot godot main main cpp os windows run c users chris development godot godot platform windows os windows cpp widechar main c users chris development godot godot platform windows godot windows cpp main c users chris development godot godot platform windows godot windows cpp main c users chris development godot godot platform windows godot windows cpp scrt common main seh d agent work s src vctools crt vcstartup src startup exe common inl basethreadinitthunk end of backtrace steps to reproduce a combination of spawner and synchronizer and an unknown additional condition i ve tried disabling the spawn variables on my synchronizer via the checkbox and it did not stop the issue i m happy to run additional debugging but i m unsure where to focus my efforts hoping for some guidance here minimal reproduction project no response
1
387,773
11,470,333,315
IssuesEvent
2020-02-09 02:09:03
pytorch/pytorch
https://api.github.com/repos/pytorch/pytorch
closed
Differentiable views don't work well with python autograd functions
high priority module: autograd triaged
If the output of a python autograd function is a view and gets modified in-place with a torch.no_grad block later, the python autograd function's backward function doesn't get called and instead an autograd backward pass (through the forward function) runs. This results in incorrect behavior, especially when the forward pass contains non-differentiable things. Expected behavior: we should either throw an error message about something or compute the correct gradients. Neither of those happen right now. ``` import torch from torch.autograd import Function class Mul3ThenFlatten(Function): @staticmethod def forward(ctx, x): ctx.save_for_backward(x) z = x.detach().numpy() * 3 # If I add a .contiguous() to the end of this statement, other things happen. return torch.tensor(z).view(-1) @staticmethod def backward(ctx, dx): x = ctx.saved_tensors[0] print("Some side effect") return dx.view(x.shape) * 3 x = torch.randn(2, 2, requires_grad=True) output = Mul3ThenFlatten.apply(x) # Modify the counter in no_grad mode. with torch.no_grad(): output.fill_(1) # Doesn't print "Some side effect" :/ output.sum().backward() x.grad # is None, should really be something or at least an assert ``` cc @colesbury
1.0
Differentiable views don't work well with python autograd functions - If the output of a python autograd function is a view and gets modified in-place with a torch.no_grad block later, the python autograd function's backward function doesn't get called and instead an autograd backward pass (through the forward function) runs. This results in incorrect behavior, especially when the forward pass contains non-differentiable things. Expected behavior: we should either throw an error message about something or compute the correct gradients. Neither of those happen right now. ``` import torch from torch.autograd import Function class Mul3ThenFlatten(Function): @staticmethod def forward(ctx, x): ctx.save_for_backward(x) z = x.detach().numpy() * 3 # If I add a .contiguous() to the end of this statement, other things happen. return torch.tensor(z).view(-1) @staticmethod def backward(ctx, dx): x = ctx.saved_tensors[0] print("Some side effect") return dx.view(x.shape) * 3 x = torch.randn(2, 2, requires_grad=True) output = Mul3ThenFlatten.apply(x) # Modify the counter in no_grad mode. with torch.no_grad(): output.fill_(1) # Doesn't print "Some side effect" :/ output.sum().backward() x.grad # is None, should really be something or at least an assert ``` cc @colesbury
non_test
differentiable views don t work well with python autograd functions if the output of a python autograd function is a view and gets modified in place with a torch no grad block later the python autograd function s backward function doesn t get called and instead an autograd backward pass through the forward function runs this results in incorrect behavior especially when the forward pass contains non differentiable things expected behavior we should either throw an error message about something or compute the correct gradients neither of those happen right now import torch from torch autograd import function class function staticmethod def forward ctx x ctx save for backward x z x detach numpy if i add a contiguous to the end of this statement other things happen return torch tensor z view staticmethod def backward ctx dx x ctx saved tensors print some side effect return dx view x shape x torch randn requires grad true output apply x modify the counter in no grad mode with torch no grad output fill doesn t print some side effect output sum backward x grad is none should really be something or at least an assert cc colesbury
0
267,089
20,188,874,441
IssuesEvent
2022-02-11 02:16:01
hackforla/311-data
https://api.github.com/repos/hackforla/311-data
opened
Locate Previous Beta Usability Testing
Feature: Documentation Size: 2pt Role: Product Management
### Overview We need to find the research from the Usability Beta Testing so that we can determine if grouping NCs and creating comparison reports was a requested feature. ### Action Items - [ ] Search project [Wiki](https://github.com/hackforla/311-data/wiki) and [Google Drive](https://drive.google.com/drive/folders/1ObUz4mTQmSCwND_WQcOXAuCeKpCwNzmz) for User Testing docs and research. - [ ] If it does not exist, create new issue to draft a research plan. ### Resources/Instructions
1.0
Locate Previous Beta Usability Testing - ### Overview We need to find the research from the Usability Beta Testing so that we can determine if grouping NCs and creating comparison reports was a requested feature. ### Action Items - [ ] Search project [Wiki](https://github.com/hackforla/311-data/wiki) and [Google Drive](https://drive.google.com/drive/folders/1ObUz4mTQmSCwND_WQcOXAuCeKpCwNzmz) for User Testing docs and research. - [ ] If it does not exist, create new issue to draft a research plan. ### Resources/Instructions
non_test
locate previous beta usability testing overview we need to find the research from the usability beta testing so that we can determine if grouping ncs and creating comparison reports was a requested feature action items search project and for user testing docs and research if it does not exist create new issue to draft a research plan resources instructions
0
15,226
2,850,332,260
IssuesEvent
2015-05-31 13:50:40
damonkohler/android-scripting
https://api.github.com/repos/damonkohler/android-scripting
closed
Tab-key does not work
auto-migrated Priority-Medium Type-Defect
``` What device(s) are you experiencing the problem on? Samsung Galaxy Tab 2 What firmware version are you running on the device? 3.0.8 What steps will reproduce the problem? 1. Writing code 2. Defining function, writing if, etc 3. Pressing tab-key What is the expected output? What do you see instead? Tab-key should create a "tabulator", but it closes the keyboard. What version of the product are you using? On what operating system? sl4a_r4 Please provide any additional information below. ``` Original issue reported on code.google.com by `sirhaug...@gmail.com` on 25 Sep 2012 at 11:50
1.0
Tab-key does not work - ``` What device(s) are you experiencing the problem on? Samsung Galaxy Tab 2 What firmware version are you running on the device? 3.0.8 What steps will reproduce the problem? 1. Writing code 2. Defining function, writing if, etc 3. Pressing tab-key What is the expected output? What do you see instead? Tab-key should create a "tabulator", but it closes the keyboard. What version of the product are you using? On what operating system? sl4a_r4 Please provide any additional information below. ``` Original issue reported on code.google.com by `sirhaug...@gmail.com` on 25 Sep 2012 at 11:50
non_test
tab key does not work what device s are you experiencing the problem on samsung galaxy tab what firmware version are you running on the device what steps will reproduce the problem writing code defining function writing if etc pressing tab key what is the expected output what do you see instead tab key should create a tabulator but it closes the keyboard what version of the product are you using on what operating system please provide any additional information below original issue reported on code google com by sirhaug gmail com on sep at
0
210,175
16,357,811,524
IssuesEvent
2021-05-14 03:00:42
jenkinsci/tekton-client-plugin
https://api.github.com/repos/jenkinsci/tekton-client-plugin
closed
Video demo?
documentation
### Feature Request <!-- Describe your feature request here --> Video or GIF demonstrating the plugin functionality could be nice? Is there a demo of this at a SIG / meetup?
1.0
Video demo? - ### Feature Request <!-- Describe your feature request here --> Video or GIF demonstrating the plugin functionality could be nice? Is there a demo of this at a SIG / meetup?
non_test
video demo feature request video or gif demonstrating the plugin functionality could be nice is there a demo of this at a sig meetup
0
704,809
24,209,460,388
IssuesEvent
2022-09-25 17:42:17
AlpsBTE/Plot-System
https://api.github.com/repos/AlpsBTE/Plot-System
closed
[Feature] - Improve Leaderboards
enhancement help wanted v3.0 low priority
Switch from monthly to annual to all-time top score or most plots every 5 seconds. The interval should be configurable in the config.
1.0
[Feature] - Improve Leaderboards - Switch from monthly to annual to all-time top score or most plots every 5 seconds. The interval should be configurable in the config.
non_test
improve leaderboards switch from monthly to annual to all time top score or most plots every seconds the interval should be configurable in the config
0
163,026
12,701,577,044
IssuesEvent
2020-06-22 18:26:15
victorbucutea/parking-space
https://api.github.com/repos/victorbucutea/parking-space
closed
Nu se pot adauga review-uri
bug fixed - to retest
1.Acceseaza https://go-park-staging.herokuapp.com/app/index.html#!/map/myoffers 2.Click pe sectiunea cu Opinia clientilor 3.Completeaza campurile “Titlu” si “Comentariu” 4.Click pe butonul de Adauga si observa sectiunea de review Observat Nu se intampla nimic dupa ce a fost adaugat review-ul. Asteptat Opinia clientilor ar trebui sa aiba stelele colorate in galben, in fata lor media review-urilor, iar dupa stelute, cate review-uri au fost. ![Review](https://user-images.githubusercontent.com/33632578/85052907-62e1b980-b1a2-11ea-9f2c-334a2db3fc3d.png)
1.0
Nu se pot adauga review-uri - 1.Acceseaza https://go-park-staging.herokuapp.com/app/index.html#!/map/myoffers 2.Click pe sectiunea cu Opinia clientilor 3.Completeaza campurile “Titlu” si “Comentariu” 4.Click pe butonul de Adauga si observa sectiunea de review Observat Nu se intampla nimic dupa ce a fost adaugat review-ul. Asteptat Opinia clientilor ar trebui sa aiba stelele colorate in galben, in fata lor media review-urilor, iar dupa stelute, cate review-uri au fost. ![Review](https://user-images.githubusercontent.com/33632578/85052907-62e1b980-b1a2-11ea-9f2c-334a2db3fc3d.png)
test
nu se pot adauga review uri acceseaza click pe sectiunea cu opinia clientilor completeaza campurile “titlu” si “comentariu” click pe butonul de adauga si observa sectiunea de review observat nu se intampla nimic dupa ce a fost adaugat review ul asteptat opinia clientilor ar trebui sa aiba stelele colorate in galben in fata lor media review urilor iar dupa stelute cate review uri au fost
1
253,801
8,066,147,903
IssuesEvent
2018-08-04 12:03:02
alassanecoly/BookmarkMyChampions
https://api.github.com/repos/alassanecoly/BookmarkMyChampions
closed
Implement DELETE /users/:id route
priority: high 🔥 scope: api scope: routing status: accepted 👍 type: feature ✨
**Is your feature request related to a problem ? Please describe.** We need to delete an user. **Describe the solution you'd like** Implement a DELETE method route on the API to delete an user with a given id.
1.0
Implement DELETE /users/:id route - **Is your feature request related to a problem ? Please describe.** We need to delete an user. **Describe the solution you'd like** Implement a DELETE method route on the API to delete an user with a given id.
non_test
implement delete users id route is your feature request related to a problem please describe we need to delete an user describe the solution you d like implement a delete method route on the api to delete an user with a given id
0
243,483
20,404,248,905
IssuesEvent
2022-02-23 02:03:37
metaplex-foundation/metaplex
https://api.github.com/repos/metaplex-foundation/metaplex
opened
[Bug]: SyntaxError: Unexpected token J in JSON at position 1
needs tests bug
### Which package is this bug report for? candy machine cli ### Issue description At first I had an error [ERR_INVALID_ARG_TYPE] but the config.json candy machine v2 was set up well. I tried to rebuild project and now I have an error SyntaxError: Unexpected token J in JSON at position 1 and I don't know what to do. ### Command ```shell ts-node C:/Users/Administrator/my-generative-nfts/metaplex/js/packages/cli/src/candy-machine-v2-cli.ts upload \ -e devnet \ -k C:/Users/Administrator/.config/solana/devnet.json \ -cp C:/Users/Administrator/my-generative-nfts/metaplex/config.json \ -c example \ C:/Users/Administrator/my-generative-nfts/metaplex/assets ``` ### Relevant log output ```shell PS C:\Users\Administrator\my-generative-nfts\metaplex> ts-node C:/Users/Administrator/my-generative-nfts/metaplex/js/packages/cli/src/candy-machine-v2-cli.ts upload \ -e devnet \ -k C:/Users/Administrator/.config/solana/devnet.json \ -cp C:/Users/Administrator/my-generative-nfts/metaplex/config.json \ -c example \ C:/Users/Administrator/my-generative-nfts/metaplex/assets C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\src\helpers\accounts.ts:571 new Uint8Array(JSON.parse(fs.readFileSync(keypair).toString())), ^ SyntaxError: Unexpected token J in JSON at position 1 at JSON.parse (<anonymous>) at loadWalletKey (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\src\helpers\accounts.ts:571:25) at Command.<anonymous> (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\src\candy-machine-v2-cli.ts:101:40) at Command.listener [as _actionHandler] (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:488:17) at C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:1227:65 at Command._chainOrCall (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:1144:12) at Command._parseCommand (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:1227:27) at Command._dispatchSubcommand (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:1050:25) at Command._parseCommand (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:1193:19) at Command.parse (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:897:10) ``` ### Operating system Windows 10 ### Priority this issue should have High (immediate attention needed) ### Check the Docs First - [X] I have checked the docs and it didn't solve my issue
1.0
[Bug]: SyntaxError: Unexpected token J in JSON at position 1 - ### Which package is this bug report for? candy machine cli ### Issue description At first I had an error [ERR_INVALID_ARG_TYPE] but the config.json candy machine v2 was set up well. I tried to rebuild project and now I have an error SyntaxError: Unexpected token J in JSON at position 1 and I don't know what to do. ### Command ```shell ts-node C:/Users/Administrator/my-generative-nfts/metaplex/js/packages/cli/src/candy-machine-v2-cli.ts upload \ -e devnet \ -k C:/Users/Administrator/.config/solana/devnet.json \ -cp C:/Users/Administrator/my-generative-nfts/metaplex/config.json \ -c example \ C:/Users/Administrator/my-generative-nfts/metaplex/assets ``` ### Relevant log output ```shell PS C:\Users\Administrator\my-generative-nfts\metaplex> ts-node C:/Users/Administrator/my-generative-nfts/metaplex/js/packages/cli/src/candy-machine-v2-cli.ts upload \ -e devnet \ -k C:/Users/Administrator/.config/solana/devnet.json \ -cp C:/Users/Administrator/my-generative-nfts/metaplex/config.json \ -c example \ C:/Users/Administrator/my-generative-nfts/metaplex/assets C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\src\helpers\accounts.ts:571 new Uint8Array(JSON.parse(fs.readFileSync(keypair).toString())), ^ SyntaxError: Unexpected token J in JSON at position 1 at JSON.parse (<anonymous>) at loadWalletKey (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\src\helpers\accounts.ts:571:25) at Command.<anonymous> (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\src\candy-machine-v2-cli.ts:101:40) at Command.listener [as _actionHandler] (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:488:17) at C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:1227:65 at Command._chainOrCall (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:1144:12) at Command._parseCommand (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:1227:27) at Command._dispatchSubcommand (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:1050:25) at Command._parseCommand (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:1193:19) at Command.parse (C:\Users\Administrator\my-generative-nfts\metaplex\js\packages\cli\node_modules\commander\lib\command.js:897:10) ``` ### Operating system Windows 10 ### Priority this issue should have High (immediate attention needed) ### Check the Docs First - [X] I have checked the docs and it didn't solve my issue
test
syntaxerror unexpected token j in json at position which package is this bug report for candy machine cli issue description at first i had an error but the config json candy machine was set up well i tried to rebuild project and now i have an error syntaxerror unexpected token j in json at position and i don t know what to do command shell ts node c users administrator my generative nfts metaplex js packages cli src candy machine cli ts upload e devnet k c users administrator config solana devnet json cp c users administrator my generative nfts metaplex config json c example c users administrator my generative nfts metaplex assets relevant log output shell ps c users administrator my generative nfts metaplex ts node c users administrator my generative nfts metaplex js packages cli src candy machine cli ts upload e devnet k c users administrator config solana devnet json cp c users administrator my generative nfts metaplex config json c example c users administrator my generative nfts metaplex assets c users administrator my generative nfts metaplex js packages cli src helpers accounts ts new json parse fs readfilesync keypair tostring syntaxerror unexpected token j in json at position at json parse at loadwalletkey c users administrator my generative nfts metaplex js packages cli src helpers accounts ts at command c users administrator my generative nfts metaplex js packages cli src candy machine cli ts at command listener c users administrator my generative nfts metaplex js packages cli node modules commander lib command js at c users administrator my generative nfts metaplex js packages cli node modules commander lib command js at command chainorcall c users administrator my generative nfts metaplex js packages cli node modules commander lib command js at command parsecommand c users administrator my generative nfts metaplex js packages cli node modules commander lib command js at command dispatchsubcommand c users administrator my generative nfts metaplex js packages cli node modules commander lib command js at command parsecommand c users administrator my generative nfts metaplex js packages cli node modules commander lib command js at command parse c users administrator my generative nfts metaplex js packages cli node modules commander lib command js operating system windows priority this issue should have high immediate attention needed check the docs first i have checked the docs and it didn t solve my issue
1
259,742
22,535,641,373
IssuesEvent
2022-06-25 07:06:14
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
opened
roachtest: cdc/cloud-sink-gcs/rangefeed=true failed
C-test-failure O-robot O-roachtest release-blocker branch-release-21.2
roachtest.cdc/cloud-sink-gcs/rangefeed=true [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=5558656&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=5558656&tab=artifacts#/cdc/cloud-sink-gcs/rangefeed=true) on release-21.2 @ [fae2ba30e784cb921bfdcc56e7f33ff28eb18289](https://github.com/cockroachdb/cockroach/commits/fae2ba30e784cb921bfdcc56e7f33ff28eb18289): ``` The test failed on branch=release-21.2, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/cdc/cloud-sink-gcs/rangefeed=true/run_1 cdc.go:1686,cdc.go:294,cdc.go:788,test_runner.go:777: max latency was more than allowed: 1m12.581602985s vs 1m0s ``` <details><summary>Reproduce</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #83116 roachtest: cdc/cloud-sink-gcs/rangefeed=true failed [C-test-failure O-roachtest O-robot T-cdc branch-release-22.1 release-blocker] </p> </details> /cc @cockroachdb/cdc <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*cdc/cloud-sink-gcs/rangefeed=true.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
2.0
roachtest: cdc/cloud-sink-gcs/rangefeed=true failed - roachtest.cdc/cloud-sink-gcs/rangefeed=true [failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=5558656&tab=buildLog) with [artifacts](https://teamcity.cockroachdb.com/viewLog.html?buildId=5558656&tab=artifacts#/cdc/cloud-sink-gcs/rangefeed=true) on release-21.2 @ [fae2ba30e784cb921bfdcc56e7f33ff28eb18289](https://github.com/cockroachdb/cockroach/commits/fae2ba30e784cb921bfdcc56e7f33ff28eb18289): ``` The test failed on branch=release-21.2, cloud=gce: test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/cdc/cloud-sink-gcs/rangefeed=true/run_1 cdc.go:1686,cdc.go:294,cdc.go:788,test_runner.go:777: max latency was more than allowed: 1m12.581602985s vs 1m0s ``` <details><summary>Reproduce</summary> <p> See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md) </p> </details> <details><summary>Same failure on other branches</summary> <p> - #83116 roachtest: cdc/cloud-sink-gcs/rangefeed=true failed [C-test-failure O-roachtest O-robot T-cdc branch-release-22.1 release-blocker] </p> </details> /cc @cockroachdb/cdc <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*cdc/cloud-sink-gcs/rangefeed=true.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
test
roachtest cdc cloud sink gcs rangefeed true failed roachtest cdc cloud sink gcs rangefeed true with on release the test failed on branch release cloud gce test artifacts and logs in home agent work go src github com cockroachdb cockroach artifacts cdc cloud sink gcs rangefeed true run cdc go cdc go cdc go test runner go max latency was more than allowed vs reproduce see same failure on other branches roachtest cdc cloud sink gcs rangefeed true failed cc cockroachdb cdc
1
185,409
14,351,992,335
IssuesEvent
2020-11-30 03:01:04
github-vet/rangeclosure-findings
https://api.github.com/repos/github-vet/rangeclosure-findings
opened
theTardigrade/validation: internal/handling/required_test.go; 7 LoC
fresh test tiny
Found a possible issue in [theTardigrade/validation](https://www.github.com/theTardigrade/validation) at [internal/handling/required_test.go](https://github.com/theTardigrade/validation/blob/cb9310ef7ac35407837154aecaaf98818cbcb508/internal/handling/required_test.go#L55-L61) The below snippet of Go code triggered static analysis which searches for goroutines and/or defer statements which capture loop variables. [Click here to see the code in its original context.](https://github.com/theTardigrade/validation/blob/cb9310ef7ac35407837154aecaaf98818cbcb508/internal/handling/required_test.go#L55-L61) <details> <summary>Click here to show the 7 line(s) of Go which triggered the analyzer.</summary> ```go for _, s := range []*string{&one, &two, &*&three} { model.x = s model.y = &s model.z = &model.y executeTest(t, model, nil) } ``` Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > reference to s is reassigned at line 57 </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: cb9310ef7ac35407837154aecaaf98818cbcb508
1.0
theTardigrade/validation: internal/handling/required_test.go; 7 LoC - Found a possible issue in [theTardigrade/validation](https://www.github.com/theTardigrade/validation) at [internal/handling/required_test.go](https://github.com/theTardigrade/validation/blob/cb9310ef7ac35407837154aecaaf98818cbcb508/internal/handling/required_test.go#L55-L61) The below snippet of Go code triggered static analysis which searches for goroutines and/or defer statements which capture loop variables. [Click here to see the code in its original context.](https://github.com/theTardigrade/validation/blob/cb9310ef7ac35407837154aecaaf98818cbcb508/internal/handling/required_test.go#L55-L61) <details> <summary>Click here to show the 7 line(s) of Go which triggered the analyzer.</summary> ```go for _, s := range []*string{&one, &two, &*&three} { model.x = s model.y = &s model.z = &model.y executeTest(t, model, nil) } ``` Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > reference to s is reassigned at line 57 </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: cb9310ef7ac35407837154aecaaf98818cbcb508
test
thetardigrade validation internal handling required test go loc found a possible issue in at the below snippet of go code triggered static analysis which searches for goroutines and or defer statements which capture loop variables click here to show the line s of go which triggered the analyzer go for s range string one two three model x s model y s model z model y executetest t model nil below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message reference to s is reassigned at line leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
1
116,976
9,904,997,457
IssuesEvent
2019-06-27 10:27:14
microsoft/azure-tools-for-java
https://api.github.com/repos/microsoft/azure-tools-for-java
opened
[Eclipse]Submit to ESP cluster fails
Eclipse HDInsight Internal Test System Telemetry
Build: Dev 1150 Repro Steps: 1. Submit script to a linked ESP cluster Result: Error Error : Failed to submit application to spark cluster. Exception : com.microsoft.azure.hdinsight.sdk.common.errorresponse.UnclassifiedHttpErrorStatus:
1.0
[Eclipse]Submit to ESP cluster fails - Build: Dev 1150 Repro Steps: 1. Submit script to a linked ESP cluster Result: Error Error : Failed to submit application to spark cluster. Exception : com.microsoft.azure.hdinsight.sdk.common.errorresponse.UnclassifiedHttpErrorStatus:
test
submit to esp cluster fails build dev repro steps submit script to a linked esp cluster result error error failed to submit application to spark cluster exception com microsoft azure hdinsight sdk common errorresponse unclassifiedhttperrorstatus
1
116,742
4,705,975,294
IssuesEvent
2016-10-13 15:51:08
EOL/tramea
https://api.github.com/repos/EOL/tramea
opened
formatting for 503 error page
bug priority
I'm told @hyanwong provided instructions for this in gitter, but alas, I can't find them.
1.0
formatting for 503 error page - I'm told @hyanwong provided instructions for this in gitter, but alas, I can't find them.
non_test
formatting for error page i m told hyanwong provided instructions for this in gitter but alas i can t find them
0
85,229
7,964,468,604
IssuesEvent
2018-07-13 21:37:20
phetsims/QA
https://api.github.com/repos/phetsims/QA
opened
RC Test: Equality Explorer: Two Variables 1.0.0-rc.1
QA:rc-test priority:1-top
Equality Explorer: Two Variables 1.0.0-rc.1 is ready for RC testing. According to the schedule, RC1 testing needs to be completed by Wednesday 7/18, so labeling this issue as "priority:1-top". **[Link to sim](https://phet-dev.colorado.edu/html/equality-explorer-two-variables/1.0.0-rc.1/phet/equality-explorer-two-variables_en_phet.html)** **[Link to iFrame]()** **[Test Matrix]()** (@lmulhall-phet please create test matrix, and note in QA section of phetsims/equality-explorer-two-variables#1) **Issues to verify** None. **Please also verify** - [ ] stringTest=double (all strings doubled) - [ ] stringTest=long (exceptionally long strings) - [ ] stringTest=X (short strings) - [ ] stringTest=rtl (right-to-left) - [ ] stringTest=xss (test passes if sim does not redirect, OK if sim crashes or fails to fully start) - [ ] showPointerAreas (touchArea=red, mouseArea=blue) - [ ] Full screen test - [ ] Screenshot test NOTE: It is not necessary to verify the lock feature test scenarios found in [lock-scenarios.md](https://github.com/phetsims/equality-explorer/blob/master/doc/lock-scenarios.md). Completing them for Equality Explorer 1.0.0-rc.1 (https://github.com/phetsims/QA/issues/144) is sufficient. If any new issues are found, please note them in https://github.com/phetsims/equality-explorer/issues and reference this issue. (You read that right. Note them in equality-explorer, not equality-explorer-two-variables.) **Useful info** Sim-specific query parameters useful for testing can be found in [EqualityExplorerQueryParameters](https://github.com/phetsims/equality-explorer/blob/master/js/common/EqualityExplorerQueryParameters.js). Common-code query parameters that are useful `speed` (to slow down animation speed to facilitate multitouch testing). See documentation in [initialize-globals.js](https://github.com/phetsims/chipper/blob/master/js/initialize-globals.js). Before testing, please read the _Terminology_ section of [implementation-notes.md](https://github.com/phetsims/equality-explorer/blob/master/doc/implementation-notes.md). Please try to use this terminology in GitHub issues.
1.0
RC Test: Equality Explorer: Two Variables 1.0.0-rc.1 - Equality Explorer: Two Variables 1.0.0-rc.1 is ready for RC testing. According to the schedule, RC1 testing needs to be completed by Wednesday 7/18, so labeling this issue as "priority:1-top". **[Link to sim](https://phet-dev.colorado.edu/html/equality-explorer-two-variables/1.0.0-rc.1/phet/equality-explorer-two-variables_en_phet.html)** **[Link to iFrame]()** **[Test Matrix]()** (@lmulhall-phet please create test matrix, and note in QA section of phetsims/equality-explorer-two-variables#1) **Issues to verify** None. **Please also verify** - [ ] stringTest=double (all strings doubled) - [ ] stringTest=long (exceptionally long strings) - [ ] stringTest=X (short strings) - [ ] stringTest=rtl (right-to-left) - [ ] stringTest=xss (test passes if sim does not redirect, OK if sim crashes or fails to fully start) - [ ] showPointerAreas (touchArea=red, mouseArea=blue) - [ ] Full screen test - [ ] Screenshot test NOTE: It is not necessary to verify the lock feature test scenarios found in [lock-scenarios.md](https://github.com/phetsims/equality-explorer/blob/master/doc/lock-scenarios.md). Completing them for Equality Explorer 1.0.0-rc.1 (https://github.com/phetsims/QA/issues/144) is sufficient. If any new issues are found, please note them in https://github.com/phetsims/equality-explorer/issues and reference this issue. (You read that right. Note them in equality-explorer, not equality-explorer-two-variables.) **Useful info** Sim-specific query parameters useful for testing can be found in [EqualityExplorerQueryParameters](https://github.com/phetsims/equality-explorer/blob/master/js/common/EqualityExplorerQueryParameters.js). Common-code query parameters that are useful `speed` (to slow down animation speed to facilitate multitouch testing). See documentation in [initialize-globals.js](https://github.com/phetsims/chipper/blob/master/js/initialize-globals.js). Before testing, please read the _Terminology_ section of [implementation-notes.md](https://github.com/phetsims/equality-explorer/blob/master/doc/implementation-notes.md). Please try to use this terminology in GitHub issues.
test
rc test equality explorer two variables rc equality explorer two variables rc is ready for rc testing according to the schedule testing needs to be completed by wednesday so labeling this issue as priority top lmulhall phet please create test matrix and note in qa section of phetsims equality explorer two variables issues to verify none please also verify stringtest double all strings doubled stringtest long exceptionally long strings stringtest x short strings stringtest rtl right to left stringtest xss test passes if sim does not redirect ok if sim crashes or fails to fully start showpointerareas toucharea red mousearea blue full screen test screenshot test note it is not necessary to verify the lock feature test scenarios found in completing them for equality explorer rc is sufficient if any new issues are found please note them in and reference this issue you read that right note them in equality explorer not equality explorer two variables useful info sim specific query parameters useful for testing can be found in common code query parameters that are useful speed to slow down animation speed to facilitate multitouch testing see documentation in before testing please read the terminology section of please try to use this terminology in github issues
1
18,644
3,700,458,670
IssuesEvent
2016-02-29 08:38:19
DevExpress/testcafe
https://api.github.com/repos/DevExpress/testcafe
opened
Wrong IE11 version detection during functional testing on saucelabs
AREA: testing BROWSER: IE11 SYSTEM: runner TYPE: bug
it's detected as IE 7.0.0 (for example, see https://travis-ci.org/testcafe-build-bot/testcafe/jobs/111745475, https://saucelabs.com/tests/b2e64119e5f346259b0b776f940872d2)
1.0
Wrong IE11 version detection during functional testing on saucelabs - it's detected as IE 7.0.0 (for example, see https://travis-ci.org/testcafe-build-bot/testcafe/jobs/111745475, https://saucelabs.com/tests/b2e64119e5f346259b0b776f940872d2)
test
wrong version detection during functional testing on saucelabs it s detected as ie for example see
1
110,866
9,480,663,011
IssuesEvent
2019-04-20 19:54:08
JaidenAshmore/java-dynamic-sqs-listener
https://api.github.com/repos/JaidenAshmore/java-dynamic-sqs-listener
reopened
ConcurrentMessageBrokerIntegratinTest is flaky
flaky-test
Test is: usingPrefetchingMessageRetrieverCanConsumeAllMessages(it.com.jashmore.sqs.listener.concurrent.ConcurrentMessageBrokerIntegrationTest) https://travis-ci.org/JaidenAshmore/java-dynamic-sqs-listener/builds/494723420?utm_source=github_status&utm_medium=notification
1.0
ConcurrentMessageBrokerIntegratinTest is flaky - Test is: usingPrefetchingMessageRetrieverCanConsumeAllMessages(it.com.jashmore.sqs.listener.concurrent.ConcurrentMessageBrokerIntegrationTest) https://travis-ci.org/JaidenAshmore/java-dynamic-sqs-listener/builds/494723420?utm_source=github_status&utm_medium=notification
test
concurrentmessagebrokerintegratintest is flaky test is usingprefetchingmessageretrievercanconsumeallmessages it com jashmore sqs listener concurrent concurrentmessagebrokerintegrationtest
1
362,936
25,399,949,631
IssuesEvent
2022-11-22 11:18:52
Rashid567/yandex_practicum_middle_python
https://api.github.com/repos/Rashid567/yandex_practicum_middle_python
opened
8.1 Архитектура - Задание 1. Задача на отрисовку архитектуры (AS IS).
documentation
Нарисуйте текущую архитектуру получившейся системы.
1.0
8.1 Архитектура - Задание 1. Задача на отрисовку архитектуры (AS IS). - Нарисуйте текущую архитектуру получившейся системы.
non_test
архитектура задание задача на отрисовку архитектуры as is нарисуйте текущую архитектуру получившейся системы
0
138,673
12,826,347,841
IssuesEvent
2020-07-06 16:23:43
lgvaz/mantisshrimp
https://api.github.com/repos/lgvaz/mantisshrimp
closed
Clean tutorials
documentation good first issue help wanted priority
We have a good variety of tutorials, but some of them have a lot of duplication, and there is not a clear order on how they should be read. The first task is to rename the tutorials, we need to number them and improve the names. For example, `wheat.py` should become `1 - Quickstart` Maybe some of the tutorials should even be deleted for sake of clarity. It's also worth saying that not all tutorials need to show on the documentation. We select what tutorials we want to show in `docs/source/tutorials`
1.0
Clean tutorials - We have a good variety of tutorials, but some of them have a lot of duplication, and there is not a clear order on how they should be read. The first task is to rename the tutorials, we need to number them and improve the names. For example, `wheat.py` should become `1 - Quickstart` Maybe some of the tutorials should even be deleted for sake of clarity. It's also worth saying that not all tutorials need to show on the documentation. We select what tutorials we want to show in `docs/source/tutorials`
non_test
clean tutorials we have a good variety of tutorials but some of them have a lot of duplication and there is not a clear order on how they should be read the first task is to rename the tutorials we need to number them and improve the names for example wheat py should become quickstart maybe some of the tutorials should even be deleted for sake of clarity it s also worth saying that not all tutorials need to show on the documentation we select what tutorials we want to show in docs source tutorials
0
437,803
30,610,089,129
IssuesEvent
2023-07-23 13:54:26
serna37/vim
https://api.github.com/repos/serna37/vim
reopened
Modify Vim Custom
bug documentation enhancement
## Update - [x] update vim operation - [x] modify & org vim plugin - [x] complete cheat sheet - [x] grep optional - [x] #11 - [ ] add highlight on cheat sheet - [ ] fix quick-scope (imitation version) - [ ] packaging TrainingWheelsProtocol plugin - [ ] add vimspector setting installation - [ ] Test - [ ] #10
1.0
Modify Vim Custom - ## Update - [x] update vim operation - [x] modify & org vim plugin - [x] complete cheat sheet - [x] grep optional - [x] #11 - [ ] add highlight on cheat sheet - [ ] fix quick-scope (imitation version) - [ ] packaging TrainingWheelsProtocol plugin - [ ] add vimspector setting installation - [ ] Test - [ ] #10
non_test
modify vim custom update update vim operation modify org vim plugin complete cheat sheet grep optional add highlight on cheat sheet fix quick scope imitation version packaging trainingwheelsprotocol plugin add vimspector setting installation test
0
42,086
10,791,344,962
IssuesEvent
2019-11-05 16:23:48
mozilla-lockwise/lockwise-ios
https://api.github.com/repos/mozilla-lockwise/lockwise-ios
opened
Long web address and username overlap the open site and copy button respectively
type: defect
## Steps to reproduce Have a login with long web address/username Open it to see its details ### Expected behavior The UI is shown fine ### Actual behavior The icons are overlapped by the text ### Device & build information * Device: iPhone 8 * Build version: master 12c577f2f232d561b32cd8b1bf2a298c94a6cf77 ### Notes Attachments: ![Screenshot 2019-11-05 at 16 33 32](https://user-images.githubusercontent.com/1897507/68221896-6eed8200-ffea-11e9-8751-b2acec8f8a8a.png)
1.0
Long web address and username overlap the open site and copy button respectively - ## Steps to reproduce Have a login with long web address/username Open it to see its details ### Expected behavior The UI is shown fine ### Actual behavior The icons are overlapped by the text ### Device & build information * Device: iPhone 8 * Build version: master 12c577f2f232d561b32cd8b1bf2a298c94a6cf77 ### Notes Attachments: ![Screenshot 2019-11-05 at 16 33 32](https://user-images.githubusercontent.com/1897507/68221896-6eed8200-ffea-11e9-8751-b2acec8f8a8a.png)
non_test
long web address and username overlap the open site and copy button respectively steps to reproduce have a login with long web address username open it to see its details expected behavior the ui is shown fine actual behavior the icons are overlapped by the text device build information device iphone build version master notes attachments
0
110,211
11,694,180,960
IssuesEvent
2020-03-06 03:06:46
thomasbnt/hello-new-contributor-action
https://api.github.com/repos/thomasbnt/hello-new-contributor-action
opened
Hello, this is a test
documentation
Hi all, You can edit `action.yml` if **you want to news contributors check Rules, or see contribution guidelines**. :yum:
1.0
Hello, this is a test - Hi all, You can edit `action.yml` if **you want to news contributors check Rules, or see contribution guidelines**. :yum:
non_test
hello this is a test hi all you can edit action yml if you want to news contributors check rules or see contribution guidelines yum
0
807,905
30,024,162,976
IssuesEvent
2023-06-27 03:51:54
Iqrar99/WarnetBot
https://api.github.com/repos/Iqrar99/WarnetBot
closed
Change type hinting format due to PEP 585
enhancement good first issue not priority
This bot basically uses a deprecated type hinting style by importing the `typing` module. Since python 3.9, the type hinting styles are changed and we don't need to use `typing` module for hinting a subscriptable object. Hinting an optional object and union is an exception. See [PEP 585](https://peps.python.org/pep-0585/). Need to fix these files that contain `typing.List`, `typing.Tuple`, and `typing.Dict` object. - [x] .\bot\cogs\admin.py - [x] .\bot\cogs\sticky.py - [x] .\bot\cogs\ext\tcg\utils.py - [x] .\bot\cogs\views\general.py - [x] .\bot\cogs\views\khaenriah.py - [x] .\bot\cogs\views\sticky.py - [x] .\bot\cogs\views\tcg.py
1.0
Change type hinting format due to PEP 585 - This bot basically uses a deprecated type hinting style by importing the `typing` module. Since python 3.9, the type hinting styles are changed and we don't need to use `typing` module for hinting a subscriptable object. Hinting an optional object and union is an exception. See [PEP 585](https://peps.python.org/pep-0585/). Need to fix these files that contain `typing.List`, `typing.Tuple`, and `typing.Dict` object. - [x] .\bot\cogs\admin.py - [x] .\bot\cogs\sticky.py - [x] .\bot\cogs\ext\tcg\utils.py - [x] .\bot\cogs\views\general.py - [x] .\bot\cogs\views\khaenriah.py - [x] .\bot\cogs\views\sticky.py - [x] .\bot\cogs\views\tcg.py
non_test
change type hinting format due to pep this bot basically uses a deprecated type hinting style by importing the typing module since python the type hinting styles are changed and we don t need to use typing module for hinting a subscriptable object hinting an optional object and union is an exception see need to fix these files that contain typing list typing tuple and typing dict object bot cogs admin py bot cogs sticky py bot cogs ext tcg utils py bot cogs views general py bot cogs views khaenriah py bot cogs views sticky py bot cogs views tcg py
0
193,680
14,659,615,521
IssuesEvent
2020-12-28 20:59:30
github-vet/rangeloop-pointer-findings
https://api.github.com/repos/github-vet/rangeloop-pointer-findings
closed
jonhadfield/sn-cli: export_test.go; 3 LoC
fresh test tiny
Found a possible issue in [jonhadfield/sn-cli](https://www.github.com/jonhadfield/sn-cli) at [export_test.go](https://github.com/jonhadfield/sn-cli/blob/014d7083bb0d63639d5879ff8e1ac911a03b273b/export_test.go#L124-L126) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > [Click here to see the code in its original context.](https://github.com/jonhadfield/sn-cli/blob/014d7083bb0d63639d5879ff8e1ac911a03b273b/export_test.go#L124-L126) <details> <summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary> ```go for _, cItem := range cItems { assert.NoError(t, gio.DB.Save(&cItem)) } ``` </details> <details> <summary>Click here to show extra information the analyzer produced.</summary> ``` No path was found through the callgraph that could lead to a function which writes a pointer argument. No path was found through the callgraph that could lead to a function which passes a pointer to third-party code. root signature {Save 1} was not found in the callgraph; reference was passed directly to third-party code ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 014d7083bb0d63639d5879ff8e1ac911a03b273b
1.0
jonhadfield/sn-cli: export_test.go; 3 LoC - Found a possible issue in [jonhadfield/sn-cli](https://www.github.com/jonhadfield/sn-cli) at [export_test.go](https://github.com/jonhadfield/sn-cli/blob/014d7083bb0d63639d5879ff8e1ac911a03b273b/export_test.go#L124-L126) Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > [Click here to see the code in its original context.](https://github.com/jonhadfield/sn-cli/blob/014d7083bb0d63639d5879ff8e1ac911a03b273b/export_test.go#L124-L126) <details> <summary>Click here to show the 3 line(s) of Go which triggered the analyzer.</summary> ```go for _, cItem := range cItems { assert.NoError(t, gio.DB.Save(&cItem)) } ``` </details> <details> <summary>Click here to show extra information the analyzer produced.</summary> ``` No path was found through the callgraph that could lead to a function which writes a pointer argument. No path was found through the callgraph that could lead to a function which passes a pointer to third-party code. root signature {Save 1} was not found in the callgraph; reference was passed directly to third-party code ``` </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 014d7083bb0d63639d5879ff8e1ac911a03b273b
test
jonhadfield sn cli export test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message click here to show the line s of go which triggered the analyzer go for citem range citems assert noerror t gio db save citem click here to show extra information the analyzer produced no path was found through the callgraph that could lead to a function which writes a pointer argument no path was found through the callgraph that could lead to a function which passes a pointer to third party code root signature save was not found in the callgraph reference was passed directly to third party code leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
1
186,386
14,394,660,533
IssuesEvent
2020-12-03 01:49:26
github-vet/rangeclosure-findings
https://api.github.com/repos/github-vet/rangeclosure-findings
closed
itsivareddy/terrafrom-Oci: oci/budget_alert_rule_test.go; 14 LoC
fresh small test
Found a possible issue in [itsivareddy/terrafrom-Oci](https://www.github.com/itsivareddy/terrafrom-Oci) at [oci/budget_alert_rule_test.go](https://github.com/itsivareddy/terrafrom-Oci/blob/075608a9e201ee0e32484da68d5ba5370dfde1be/oci/budget_alert_rule_test.go#L272-L285) The below snippet of Go code triggered static analysis which searches for goroutines and/or defer statements which capture loop variables. [Click here to see the code in its original context.](https://github.com/itsivareddy/terrafrom-Oci/blob/075608a9e201ee0e32484da68d5ba5370dfde1be/oci/budget_alert_rule_test.go#L272-L285) <details> <summary>Click here to show the 14 line(s) of Go which triggered the analyzer.</summary> ```go for _, alertRuleId := range alertRuleIds { if ok := SweeperDefaultResourceId[alertRuleId]; !ok { deleteAlertRuleRequest := oci_budget.DeleteAlertRuleRequest{} deleteAlertRuleRequest.AlertRuleId = &alertRuleId deleteAlertRuleRequest.RequestMetadata.RetryPolicy = getRetryPolicy(true, "budget") _, error := budgetClient.DeleteAlertRule(context.Background(), deleteAlertRuleRequest) if error != nil { fmt.Printf("Error deleting AlertRule %s %s, It is possible that the resource is already deleted. Please verify manually \n", alertRuleId, error) continue } } } ``` Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > reference to alertRuleId is reassigned at line 276 </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 075608a9e201ee0e32484da68d5ba5370dfde1be
1.0
itsivareddy/terrafrom-Oci: oci/budget_alert_rule_test.go; 14 LoC - Found a possible issue in [itsivareddy/terrafrom-Oci](https://www.github.com/itsivareddy/terrafrom-Oci) at [oci/budget_alert_rule_test.go](https://github.com/itsivareddy/terrafrom-Oci/blob/075608a9e201ee0e32484da68d5ba5370dfde1be/oci/budget_alert_rule_test.go#L272-L285) The below snippet of Go code triggered static analysis which searches for goroutines and/or defer statements which capture loop variables. [Click here to see the code in its original context.](https://github.com/itsivareddy/terrafrom-Oci/blob/075608a9e201ee0e32484da68d5ba5370dfde1be/oci/budget_alert_rule_test.go#L272-L285) <details> <summary>Click here to show the 14 line(s) of Go which triggered the analyzer.</summary> ```go for _, alertRuleId := range alertRuleIds { if ok := SweeperDefaultResourceId[alertRuleId]; !ok { deleteAlertRuleRequest := oci_budget.DeleteAlertRuleRequest{} deleteAlertRuleRequest.AlertRuleId = &alertRuleId deleteAlertRuleRequest.RequestMetadata.RetryPolicy = getRetryPolicy(true, "budget") _, error := budgetClient.DeleteAlertRule(context.Background(), deleteAlertRuleRequest) if error != nil { fmt.Printf("Error deleting AlertRule %s %s, It is possible that the resource is already deleted. Please verify manually \n", alertRuleId, error) continue } } } ``` Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > reference to alertRuleId is reassigned at line 276 </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 075608a9e201ee0e32484da68d5ba5370dfde1be
test
itsivareddy terrafrom oci oci budget alert rule test go loc found a possible issue in at the below snippet of go code triggered static analysis which searches for goroutines and or defer statements which capture loop variables click here to show the line s of go which triggered the analyzer go for alertruleid range alertruleids if ok sweeperdefaultresourceid ok deletealertrulerequest oci budget deletealertrulerequest deletealertrulerequest alertruleid alertruleid deletealertrulerequest requestmetadata retrypolicy getretrypolicy true budget error budgetclient deletealertrule context background deletealertrulerequest if error nil fmt printf error deleting alertrule s s it is possible that the resource is already deleted please verify manually n alertruleid error continue below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message reference to alertruleid is reassigned at line leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
1
266,257
23,227,562,596
IssuesEvent
2022-08-03 02:55:46
nhn-on7/marketgg-shop
https://api.github.com/repos/nhn-on7/marketgg-shop
closed
Client -> Shop 검색 옮기기 대작전
Feat Fix Docs Refactor Test
## Overview 1. 클라이언트에서 권한체크 이슈가 있어서 모든 검색 작업을 Shop 으로 이전 중 2. 화남 ## To-do - [x] 상품 검색 - [x] 게시판 검색
1.0
Client -> Shop 검색 옮기기 대작전 - ## Overview 1. 클라이언트에서 권한체크 이슈가 있어서 모든 검색 작업을 Shop 으로 이전 중 2. 화남 ## To-do - [x] 상품 검색 - [x] 게시판 검색
test
client shop 검색 옮기기 대작전 overview 클라이언트에서 권한체크 이슈가 있어서 모든 검색 작업을 shop 으로 이전 중 화남 to do 상품 검색 게시판 검색
1
315,734
27,101,630,898
IssuesEvent
2023-02-15 09:06:27
wazuh/wazuh
https://api.github.com/repos/wazuh/wazuh
closed
Release 4.4.0 - Release Candidate 1 - Workload benchmarks metrics
module/cluster module/rbac team/framework release test/4.4.0
The following issue aims to run all `workload benchmarks` for the current release candidate, report the results, and open new issues for any encountered errors. ## Workload benchmarks metrics information | | | |-----------------------------------------------|--------------------------------------------| | **Main release candidate issue** | https://github.com/wazuh/wazuh/issues/16132 | | **Version** | 4.4.0 | | **Release candidate #** | 1 | | **Tag** | [v4.4.0-rc1](https://github.com/wazuh/wazuh/tree/v4.4.0-rc1) | | **Previous Workload benchmarks metrics issue**| https://github.com/wazuh/wazuh/issues/15938 | ## Test configuration All tests will be run and workload performance metrics will be obtained for the following clustered environment configurations: | | | |-------------------|--------------------| | **# Agents** | **# Worker nodes** | | 50000 | 25 | ## Test report procedure All individual test checks must be marked as: | | | |---------------------------------|--------------------------------------------| | Pass | The test ran successfully. | | Xfail | The test was expected to fail and it failed. It must be properly justified and reported in an issue. | | Skip | The test was not run. It must be properly justified and reported in an issue. | | Fail | The test failed. A new issue must be opened to evaluate and address the problem. | All test results must have one the following statuses: | | | |---------------------------------|--------------------------------------------| | :green_circle: | All checks passed. | | :red_circle: | There is at least one failed check. | | :yellow_circle: | There is at least one expected fail or skipped test and no failures. | Any failing test must be properly addressed with a new issue, detailing the error and the possible cause. It must be included in the `Fixes` section of the current release candidate main issue. Any expected fail or skipped test must have an issue justifying the reason. All auditors must validate the justification for an expected fail or skipped test. An extended report of the test results must be attached as a zip or txt. This report can be used by the auditors to dig deeper into any possible failures and details. ## Conclusions All tests have been executed and the results can be found [here](https://github.com/wazuh/wazuh/issues/16158#issuecomment-1429972747). | | | | | |---------------------------------|--------------------------------------------|--------------------------------------------|--------------------------------------------| | **Status** | **Test** | **Failure type** | **Notes** | | :red_circle: | PUT /syscheck, PUT /rootcheck | API tests | Rootcheck and Syscheck endpoints with failed items: https://github.com/wazuh/wazuh/issues/16208 | | :yellow_circle: | PUT /agents/group | Scalability | Bad performance for this endpoint: https://github.com/wazuh/wazuh/issues/13872. In any case, due to how `xfailed` endpoints are managed right now, it was not tested: https://github.com/wazuh/wazuh-qa/issues/3665 | | :yellow_circle: | PUT /active-response | Test | Known issue https://github.com/wazuh/wazuh-qa/issues/1266 | All tests have passed and the fails have been reported or justified. I therefore conclude that this issue is finished and OK for this release candidate. ## Auditors validation The definition of done for this one is the validation of the conclusions and the test results from all auditors. All checks from below must be accepted in order to close this issue. - [x] @davidjiglesias
1.0
Release 4.4.0 - Release Candidate 1 - Workload benchmarks metrics - The following issue aims to run all `workload benchmarks` for the current release candidate, report the results, and open new issues for any encountered errors. ## Workload benchmarks metrics information | | | |-----------------------------------------------|--------------------------------------------| | **Main release candidate issue** | https://github.com/wazuh/wazuh/issues/16132 | | **Version** | 4.4.0 | | **Release candidate #** | 1 | | **Tag** | [v4.4.0-rc1](https://github.com/wazuh/wazuh/tree/v4.4.0-rc1) | | **Previous Workload benchmarks metrics issue**| https://github.com/wazuh/wazuh/issues/15938 | ## Test configuration All tests will be run and workload performance metrics will be obtained for the following clustered environment configurations: | | | |-------------------|--------------------| | **# Agents** | **# Worker nodes** | | 50000 | 25 | ## Test report procedure All individual test checks must be marked as: | | | |---------------------------------|--------------------------------------------| | Pass | The test ran successfully. | | Xfail | The test was expected to fail and it failed. It must be properly justified and reported in an issue. | | Skip | The test was not run. It must be properly justified and reported in an issue. | | Fail | The test failed. A new issue must be opened to evaluate and address the problem. | All test results must have one the following statuses: | | | |---------------------------------|--------------------------------------------| | :green_circle: | All checks passed. | | :red_circle: | There is at least one failed check. | | :yellow_circle: | There is at least one expected fail or skipped test and no failures. | Any failing test must be properly addressed with a new issue, detailing the error and the possible cause. It must be included in the `Fixes` section of the current release candidate main issue. Any expected fail or skipped test must have an issue justifying the reason. All auditors must validate the justification for an expected fail or skipped test. An extended report of the test results must be attached as a zip or txt. This report can be used by the auditors to dig deeper into any possible failures and details. ## Conclusions All tests have been executed and the results can be found [here](https://github.com/wazuh/wazuh/issues/16158#issuecomment-1429972747). | | | | | |---------------------------------|--------------------------------------------|--------------------------------------------|--------------------------------------------| | **Status** | **Test** | **Failure type** | **Notes** | | :red_circle: | PUT /syscheck, PUT /rootcheck | API tests | Rootcheck and Syscheck endpoints with failed items: https://github.com/wazuh/wazuh/issues/16208 | | :yellow_circle: | PUT /agents/group | Scalability | Bad performance for this endpoint: https://github.com/wazuh/wazuh/issues/13872. In any case, due to how `xfailed` endpoints are managed right now, it was not tested: https://github.com/wazuh/wazuh-qa/issues/3665 | | :yellow_circle: | PUT /active-response | Test | Known issue https://github.com/wazuh/wazuh-qa/issues/1266 | All tests have passed and the fails have been reported or justified. I therefore conclude that this issue is finished and OK for this release candidate. ## Auditors validation The definition of done for this one is the validation of the conclusions and the test results from all auditors. All checks from below must be accepted in order to close this issue. - [x] @davidjiglesias
test
release release candidate workload benchmarks metrics the following issue aims to run all workload benchmarks for the current release candidate report the results and open new issues for any encountered errors workload benchmarks metrics information main release candidate issue version release candidate tag previous workload benchmarks metrics issue test configuration all tests will be run and workload performance metrics will be obtained for the following clustered environment configurations agents worker nodes test report procedure all individual test checks must be marked as pass the test ran successfully xfail the test was expected to fail and it failed it must be properly justified and reported in an issue skip the test was not run it must be properly justified and reported in an issue fail the test failed a new issue must be opened to evaluate and address the problem all test results must have one the following statuses green circle all checks passed red circle there is at least one failed check yellow circle there is at least one expected fail or skipped test and no failures any failing test must be properly addressed with a new issue detailing the error and the possible cause it must be included in the fixes section of the current release candidate main issue any expected fail or skipped test must have an issue justifying the reason all auditors must validate the justification for an expected fail or skipped test an extended report of the test results must be attached as a zip or txt this report can be used by the auditors to dig deeper into any possible failures and details conclusions all tests have been executed and the results can be found status test failure type notes red circle put syscheck put rootcheck api tests rootcheck and syscheck endpoints with failed items yellow circle put agents group scalability bad performance for this endpoint in any case due to how xfailed endpoints are managed right now it was not tested yellow circle put active response test known issue all tests have passed and the fails have been reported or justified i therefore conclude that this issue is finished and ok for this release candidate auditors validation the definition of done for this one is the validation of the conclusions and the test results from all auditors all checks from below must be accepted in order to close this issue davidjiglesias
1
116,275
11,906,277,766
IssuesEvent
2020-03-30 20:04:44
ASU-CodeDevils/flameboi-slack-api
https://api.github.com/repos/ASU-CodeDevils/flameboi-slack-api
opened
GitHub Workflow Doc
documentation
Define a standardized workflow, how to contribute, PR formatting/commentation, commit formatting/commentaion, etc.
1.0
GitHub Workflow Doc - Define a standardized workflow, how to contribute, PR formatting/commentation, commit formatting/commentaion, etc.
non_test
github workflow doc define a standardized workflow how to contribute pr formatting commentation commit formatting commentaion etc
0
338,922
30,329,306,572
IssuesEvent
2023-07-11 04:31:09
unifyai/ivy
https://api.github.com/repos/unifyai/ivy
closed
Fix raw_ops.test_tensorflow_LessEqual
TensorFlow Frontend Sub Task Failing Test
| | | |---|---| |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5515219518/jobs/10055314850"><img src=https://img.shields.io/badge/-success-success></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5515219518/jobs/10055314850"><img src=https://img.shields.io/badge/-success-success></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5515219518/jobs/10055314850"><img src=https://img.shields.io/badge/-success-success></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5515219518/jobs/10055314850"><img src=https://img.shields.io/badge/-success-success></a> |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5515219518/jobs/10055314850"><img src=https://img.shields.io/badge/-success-success></a>
1.0
Fix raw_ops.test_tensorflow_LessEqual - | | | |---|---| |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5515219518/jobs/10055314850"><img src=https://img.shields.io/badge/-success-success></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5515219518/jobs/10055314850"><img src=https://img.shields.io/badge/-success-success></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5515219518/jobs/10055314850"><img src=https://img.shields.io/badge/-success-success></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5515219518/jobs/10055314850"><img src=https://img.shields.io/badge/-success-success></a> |paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5515219518/jobs/10055314850"><img src=https://img.shields.io/badge/-success-success></a>
test
fix raw ops test tensorflow lessequal torch a href src numpy a href src jax a href src tensorflow a href src paddle a href src
1
83,269
7,867,927,696
IssuesEvent
2018-06-23 15:05:55
jbeard4/SCION
https://api.github.com/repos/jbeard4/SCION
closed
fail test/scxml-test-framework/test/w3c-ecma/test223.txml.scxml
2.0.0 Node v0.10.24 Tests fail feature:invoke
[https://github.com/jbeard4/scxml-test-framework/tree/master/test/scxml-test-framework/test/w3c-ecma/test223.txml.scxml](https://github.com/jbeard4/scxml-test-framework/tree/master/test/scxml-test-framework/test/w3c-ecma/test223.txml.scxml) **Error** <code><pre>{ "name": "AssertionError", "actual": [ "subFinal" ], "expected": [ "pass" ], "operator": "deepEqual", "message": "[\"subFinal\"] deepEqual [\"pass\"]" }</code></pre> **Data**: <code><pre>{ "sessionToken": 541, "nextConfiguration": [ "subFinal" ] }</code></pre> **scxml**: ``` xml <?xml version="1.0" encoding="UTF-8"?> <!-- we test that idlocation is supported. --> <scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="ecmascript"> <datamodel> <data id="Var1"/> </datamodel> <state id="s0"> <onentry> <send event="timeout" delay="1s"/> </onentry> <invoke type="http://www.w3.org/TR/scxml/" idlocation="Var1"> <content> <!-- when invoked, terminate returning done.invoke. This proves that the invocation succeeded. --> <scxml initial="subFinal" version="1.0" datamodel="ecmascript"> <final id="subFinal"/> </scxml> </content> </invoke> <transition event="*" target="s1"/> </state> <state id="s1"> <transition cond="Var1" target="pass"/> <transition target="fail"/> </state> <final id="pass"><onentry><log label="Outcome" expr="'pass'"/></onentry></final> <final id="fail"><onentry><log label="Outcome" expr="'fail'"/></onentry></final> </scxml> ``` **JSON**: <code><pre>{ "initialConfiguration": [ "pass" ], "events": [] }</code></pre>
1.0
fail test/scxml-test-framework/test/w3c-ecma/test223.txml.scxml - [https://github.com/jbeard4/scxml-test-framework/tree/master/test/scxml-test-framework/test/w3c-ecma/test223.txml.scxml](https://github.com/jbeard4/scxml-test-framework/tree/master/test/scxml-test-framework/test/w3c-ecma/test223.txml.scxml) **Error** <code><pre>{ "name": "AssertionError", "actual": [ "subFinal" ], "expected": [ "pass" ], "operator": "deepEqual", "message": "[\"subFinal\"] deepEqual [\"pass\"]" }</code></pre> **Data**: <code><pre>{ "sessionToken": 541, "nextConfiguration": [ "subFinal" ] }</code></pre> **scxml**: ``` xml <?xml version="1.0" encoding="UTF-8"?> <!-- we test that idlocation is supported. --> <scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="ecmascript"> <datamodel> <data id="Var1"/> </datamodel> <state id="s0"> <onentry> <send event="timeout" delay="1s"/> </onentry> <invoke type="http://www.w3.org/TR/scxml/" idlocation="Var1"> <content> <!-- when invoked, terminate returning done.invoke. This proves that the invocation succeeded. --> <scxml initial="subFinal" version="1.0" datamodel="ecmascript"> <final id="subFinal"/> </scxml> </content> </invoke> <transition event="*" target="s1"/> </state> <state id="s1"> <transition cond="Var1" target="pass"/> <transition target="fail"/> </state> <final id="pass"><onentry><log label="Outcome" expr="'pass'"/></onentry></final> <final id="fail"><onentry><log label="Outcome" expr="'fail'"/></onentry></final> </scxml> ``` **JSON**: <code><pre>{ "initialConfiguration": [ "pass" ], "events": [] }</code></pre>
test
fail test scxml test framework test ecma txml scxml error name assertionerror actual subfinal expected pass operator deepequal message deepequal data sessiontoken nextconfiguration subfinal scxml xml json initialconfiguration pass events
1
569,473
17,014,710,196
IssuesEvent
2021-07-02 10:17:19
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
opened
Bike parking areas should be rendered
Component: opencyclemap Priority: minor Type: enhancement
**[Submitted to the original trac issue database at 12.35pm, Wednesday, 16th December 2009]** ... as an alternative to tagging nodes. Some bike parking can cover large enough areas to be mapped in detail.
1.0
Bike parking areas should be rendered - **[Submitted to the original trac issue database at 12.35pm, Wednesday, 16th December 2009]** ... as an alternative to tagging nodes. Some bike parking can cover large enough areas to be mapped in detail.
non_test
bike parking areas should be rendered as an alternative to tagging nodes some bike parking can cover large enough areas to be mapped in detail
0
33,751
12,216,901,845
IssuesEvent
2020-05-01 16:05:02
mgh3326/studyolle
https://api.github.com/repos/mgh3326/studyolle
opened
CVE-2016-1000232 (Medium) detected in io.js
security vulnerability
## CVE-2016-1000232 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>io.js466cda05484c612769effb8c61a9a8ea8379bef2</b></p></summary> <p> <p>Node.js JavaScript runtime :sparkles::turtle::rocket::sparkles:</p> <p>Library home page: <a href=https://github.com/iojs/io.js.git>https://github.com/iojs/io.js.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/mgh3326/studyolle/commit/57ad34c02d62ce3b8eb4cb40f157e3d1b073d92e">57ad34c02d62ce3b8eb4cb40f157e3d1b073d92e</a></p> </p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Library Source Files (515)</summary> <p></p> <p> * The source files were matched to this source library based on a best effort match. Source libraries are selected from a list of probable public libraries.</p> <p> - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/d/lazy.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/combined-stream/lib/combined_stream.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/completion/file-completion.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-package-arg/npa.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/buildbot/buildbot_run.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/slide/lib/async-map-ordered.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/lru-cache/node_modules/pseudomap/pseudomap.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/example/dns.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/examples/reader.js - /studyolle/target/classes/static/node_modules/react/node_modules/loose-envify/node_modules/js-tokens/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-symbol/polyfill.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/dir-reader.js - /studyolle/target/classes/static/node/node_modules/npm/lib/dedupe.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/abstract.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/async-some/some.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/errors.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/dhe.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/core-util-is/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/correct-mkdir.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/assert-plus/assert.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/dashdash/lib/dashdash.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tunnel-agent/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream-npm/fstream-npm.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/serialize.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/get-credentials-by-uri.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/load-prefix.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/whoami.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.padend/node_modules/lodash._baseslice/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py - /studyolle/target/classes/static/node/node_modules/npm/lib/config.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/chalk/node_modules/supports-color/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/lib/signer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/logout.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/polyfill.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/normalize/_data.js - /studyolle/target/classes/static/node/node_modules/npm/lib/uninstall.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/mime-types/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/core-util-is/lib/util.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/get.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-object-property/node_modules/is-property/is-property.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/example/usage.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jsbn/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/build.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/multipart.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/extract.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/auth.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/benchmark.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_sln.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/slide/lib/async-map.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/pathMatch.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/glob/node_modules/fs.realpath/old.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/exclusion.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/error-handler.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/caseless/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/validate-npm-package-name/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/star.js - /studyolle/target/classes/static/node/node_modules/npm/lib/unbuild.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-cache-filename/index.js - /studyolle/target/classes/static/node/node_modules/npm/scripts/index-build.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/json-schema/lib/links.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_writable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/for-of.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/formats.js - /studyolle/target/classes/static/node/node_modules/npm/lib/unpublish.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/wrappy/wrappy.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/cmd-shim/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/ecc-jsbn/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/tracker-stream.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/bl/bl.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/uid-number/get-uid-gid.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/aws4/aws4.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py - /studyolle/target/classes/static/node/node_modules/npm/lib/bugs.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/graceful-fs/polyfills.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/dezalgo/node_modules/asap/browser-raw.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/lib/retry.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/entry-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read/lib/read.js - /studyolle/target/classes/static/node/node_modules/npm/lib/whoami.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/signature.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/promzard.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/nopt/bin/nopt.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/lib/ber/reader.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/lib/curve255.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/chalk/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/access.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/reader.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache.js - /studyolle/target/classes/static/node/node_modules/npm/lib/completion.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_passthrough.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/publish.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/function/#/curry.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/assert-plus/assert.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/cookies.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/oauth-sign/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/extend/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/lib/delayed_stream.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ordered_dict.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/rfc4253.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/chownr/chownr.js - /studyolle/target/classes/static/node/node_modules/npm/lib/tag.js - /studyolle/target/classes/static/node/node_modules/npm/lib/help.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/gyptest.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/file-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/entry.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/dist/client.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/map/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/github-url-from-username-repo/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/xtend/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/is-typedarray/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/create.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/which/node_modules/isexe/mode.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/glob/glob.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/lib/retry_operation.js - /studyolle/target/classes/static/node/node_modules/npm/lib/deprecate.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/brace-expansion/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/parse.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/verror/lib/verror.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/caching-client.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/pem.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/which/which.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/stringify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/lru-cache/lib/lru-cache.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/ssh.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/copy-deep.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/mkdirp/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/ecc-jsbn/lib/sec.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/semver/semver.js - /studyolle/target/classes/static/node/node_modules/npm/lib/help-search.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/ssh-buffer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/fetch.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/process-release.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/file-reader.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/spawn.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/graceful-fs/legacy-streams.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/add.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/compare.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/retry/lib/retry_operation.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/adduser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/debug.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/rm.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/examples/filter-pipe.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py - /studyolle/target/classes/static/node/node_modules/npm/lib/outdated.js - /studyolle/target/classes/static/node/node_modules/npm/lib/install.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/init-package-json.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/stringstream/stringstream.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/tracker.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-installed/read-installed.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/get-publish-config.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/link-reader.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/pubsuffix.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/log.js - /studyolle/target/classes/static/node/node_modules/npm/lib/adduser.js - /studyolle/target/classes/static/node/node_modules/npm/lib/rebuild.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/readable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/block-stream/block-stream.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/commander/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/node_modules/delegates/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/github-url-from-git/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/forever-agent/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/lifecycle.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/retry/lib/retry.js - /studyolle/target/classes/static/node/node_modules/npm/lib/docs.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/_unpack-ieee754.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/which/node_modules/isexe/windows.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/dezalgo/node_modules/asap/asap.js - /studyolle/target/classes/static/node/node_modules/npm/lib/prune.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/team.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/is-typedarray/test.js - /studyolle/target/classes/static/node/node_modules/npm/lib/team.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/aws-sign2/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/mkdirp/bin/cmd.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/minimatch.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/d/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/stars.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/initialize.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/umask/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/proxy-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/graceful-fs/graceful-fs.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/collect.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/verror/examples/levels-werror.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.pad/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/har.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/inflight/inflight.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/isstream/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/unicode.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/parse.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/rimraf.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/node_modules/ms/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/function/_define-length.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/_iterate.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/process-nextick-args/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/tunnel.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/pkcs8.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.padend/node_modules/lodash._basetostring/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/star.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/imurmurhash/imurmurhash.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/build.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/set-credentials-by-uri.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/qs/lib/stringify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-user-validate/npm-user-validate.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/lib/ber/writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/configure.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/lib/browser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/copy-within/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/stringstream/example.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/lib/crypto.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/hypot/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/node_modules/buffer-shims/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/lib/eddsa.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansi/lib/newlines.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/node_modules/glob/common.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansi/examples/progress/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/archy/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/readdir.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/char-spinner/spin.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/bin.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansi/examples/cursorPosition.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/tar.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/substack-input.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/add-remote-tarball.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/nopt/examples/my-program.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/uid-number/uid-number.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/link-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/columnify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/from-code-point/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/key.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/header.js - /studyolle/target/classes/static/node_modules/react/node_modules/object-assign/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/auto.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/test.js - /studyolle/target/classes/static/node/node_modules/npm/lib/link.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/util-deprecate/browser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/lib/dh.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/date/#/format.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/realize-package-specifier/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/request.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/normalize/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/code-point-at/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/form-data/lib/form_data.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/helpers.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/chalk/node_modules/ansi-styles/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/dezalgo/node_modules/asap/browser-asap.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/fingerprint.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-cache-filename/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/caseless/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/find-prefix.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/defaults.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/deprecate.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/mkdirp/node_modules/minimist/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/node_modules/glob/glob.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/mixin-prototypes.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/version.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/opener/opener.js - /studyolle/target/classes/static/node/node_modules/npm/lib/init.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/hosted-git-info/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/shrinkwrap.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/browser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/d/auto-bind.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/extended-header.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/tst/ber/writer.test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/store.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/lib/core.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/pinkie-promise/node_modules/pinkie/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/visnup.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/index.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/set.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/core.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/remove.js - /studyolle/target/classes/static/node_modules/react-dom/node_modules/loose-envify/replace.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/ecc-jsbn/test.js - /studyolle/target/classes/static/node/node_modules/npm/lib/repo.js - /studyolle/target/classes/static/node/node_modules/npm/lib/update.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/getProxyFromURI.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/extended-header-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/util-deprecate/browser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/fstream.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/lib/schemas/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_readable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/jsonpointer/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/permuteDomain.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/oauth.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/json-schema/lib/validate.js - /studyolle/target/classes/static/node/node_modules/npm/lib/dist-tag.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/default-input.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/glob/common.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/lib/server.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/_pack-ieee754.js - /studyolle/target/classes/static/node/node_modules/npm/lib/view.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/analyze.js - /studyolle/target/classes/static/node/node_modules/npm/lib/logout.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/node_modules/glob/sync.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/build/build.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/authify.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/dir-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/node.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/init.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/qs/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream-npm/example/dir.js - /studyolle/target/classes/static/node/node_modules/npm/lib/xmas.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/unpublish.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/lib/jsprim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-function/example.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/config-chain/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/e-index-of.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/is-copy-deep.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.padend/node_modules/lodash.tostring/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/validate-npm-package-license/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/at.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/ssh-private.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/jsonpointer/jsonpointer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/tst/ber/reader.test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/concat/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/node_modules/glob/common.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/init-input.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansi/lib/ansi.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/document.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/examples/pipe.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/gently-rm.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_readable.js - /studyolle/target/classes/static/node/node_modules/npm/lib/search.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/combining.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-installed/node_modules/util-extend/extend.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/socket-reader.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/config-chain/node_modules/proto-list/proto-list.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/lib/verify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fs-write-stream-atomic/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/lib/parser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/extsprintf/lib/extsprintf.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/set-user.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansicolors/ansicolors.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/slice/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/fround/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/glob/sync.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/string.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/git.js - /studyolle/src/main/resources/static/node/node_modules/npm/html/doc/misc/../../static/toc.js - /studyolle/target/classes/static/node/node_modules/npm/lib/ls.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/ed-compat.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/glob/sync.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/examples/symlink-write.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-function/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/tar.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/add-remote-git.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/lib/escape.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.padstart/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/redirect.js - /studyolle/target/classes/static/node/node_modules/npm/lib/run-script.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/lib/util.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.padend/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/tracker-group.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/completion/installed-deep.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/#/chain.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/lru-cache/node_modules/yallist/yallist.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/private-key.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/add-named.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/completion/installed-shallow.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/PRESUBMIT.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/filter/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/update.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/chmodr/chmodr.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_transform.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/link.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/request.js - /studyolle/target/classes/static/node/node_modules/npm/lib/explore.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/index.js - /studyolle/target/classes/static/node_modules/react/node_modules/loose-envify/loose-envify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/ecc-jsbn/lib/ec.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/locker.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_writable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/stringify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/algs.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/fill/shim.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/tag.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/buffer-entry.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/_sub-array-dummy-safe.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/cookie.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansistyles/ansistyles.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/from/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/write-file-atomic/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/getpass/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/edit.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-install-checks/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/set-prototype-of/shim.js - /studyolle/target/classes/static/node/node_modules/npm/lib/npm.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/dezalgo/node_modules/asap/raw.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/parser.generated.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_transform.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/glob/glob.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/array.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/proxy-reader.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_duplex.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/read-json.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/text-table/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/map-to-registry.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/normalize-git-url/normalize-git-url.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read/node_modules/mute-stream/mute.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/ignore.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/memstore.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/has-unicode/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/abbrev/abbrev.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/install.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/node_modules/glob/node_modules/path-is-absolute/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/update-index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/list.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/osenv/osenv.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/github-url-from-git/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-function/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/add-local-tarball.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/pkcs1.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py - /studyolle/target/classes/static/node/node_modules/npm/lib/owner.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py - /studyolle/target/classes/static/node/node_modules/npm/lib/stars.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/e-last-index-of.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/publish.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ini/ini.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/minimatch/minimatch.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/ping.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/util.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/path-is-inside/lib/path-is-inside.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fs-vacuum/vacuum.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/examples/reader.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/glob/node_modules/fs.realpath/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/hosted-git-info/git-host.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/fetch.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/lockfile/lockfile.js - /studyolle/target/classes/static/node/node_modules/npm/lib/pack.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/qs/lib/parse.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/add-local.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/verror/examples/levels-verror.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/nopt/lib/nopt.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/progress-bar.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/pack.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/lib/client.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/which/node_modules/isexe/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/hosted-git-info/git-host-info.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/access.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/querystring.js </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> NodeJS Tough-Cookie version 2.2.2 contains a Regular Expression Parsing vulnerability in HTTP request Cookie Header parsing that can result in Denial of Service. This attack appear to be exploitable via Custom HTTP header passed by client. This vulnerability appears to have been fixed in 2.3.0. <p>Publish Date: 2018-09-05 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-1000232>CVE-2016-1000232</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Change files</p> <p>Origin: <a href="https://github.com/salesforce/tough-cookie/commit/615627206357d997d5e6ff9da158997de05235ae">https://github.com/salesforce/tough-cookie/commit/615627206357d997d5e6ff9da158997de05235ae</a></p> <p>Release Date: 2016-07-21</p> <p>Fix Resolution: Replace or update the following files: parsing_test.js, cookie.js</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2016-1000232 (Medium) detected in io.js - ## CVE-2016-1000232 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>io.js466cda05484c612769effb8c61a9a8ea8379bef2</b></p></summary> <p> <p>Node.js JavaScript runtime :sparkles::turtle::rocket::sparkles:</p> <p>Library home page: <a href=https://github.com/iojs/io.js.git>https://github.com/iojs/io.js.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/mgh3326/studyolle/commit/57ad34c02d62ce3b8eb4cb40f157e3d1b073d92e">57ad34c02d62ce3b8eb4cb40f157e3d1b073d92e</a></p> </p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Library Source Files (515)</summary> <p></p> <p> * The source files were matched to this source library based on a best effort match. Source libraries are selected from a list of probable public libraries.</p> <p> - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/d/lazy.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/combined-stream/lib/combined_stream.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/completion/file-completion.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-package-arg/npa.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/buildbot/buildbot_run.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/slide/lib/async-map-ordered.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/lru-cache/node_modules/pseudomap/pseudomap.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/example/dns.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/examples/reader.js - /studyolle/target/classes/static/node_modules/react/node_modules/loose-envify/node_modules/js-tokens/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-symbol/polyfill.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/dir-reader.js - /studyolle/target/classes/static/node/node_modules/npm/lib/dedupe.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/abstract.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/async-some/some.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/errors.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/dhe.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/core-util-is/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/typedarray/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/correct-mkdir.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/assert-plus/assert.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/dashdash/lib/dashdash.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tunnel-agent/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream-npm/fstream-npm.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/serialize.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/get-credentials-by-uri.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/load-prefix.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/whoami.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.padend/node_modules/lodash._baseslice/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py - /studyolle/target/classes/static/node/node_modules/npm/lib/config.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/chalk/node_modules/supports-color/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/lib/signer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/logout.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/polyfill.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/normalize/_data.js - /studyolle/target/classes/static/node/node_modules/npm/lib/uninstall.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/mime-types/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/core-util-is/lib/util.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/get.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-object-property/node_modules/is-property/is-property.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/example/usage.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jsbn/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/build.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/multipart.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/extract.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/auth.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/node-uuid/benchmark/benchmark.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/tools/pretty_sln.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/slide/lib/async-map.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/pathMatch.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/glob/node_modules/fs.realpath/old.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/exclusion.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/error-handler.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/caseless/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/validate-npm-package-name/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/star.js - /studyolle/target/classes/static/node/node_modules/npm/lib/unbuild.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-cache-filename/index.js - /studyolle/target/classes/static/node/node_modules/npm/scripts/index-build.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/json-schema/lib/links.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_writable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/for-of.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/formats.js - /studyolle/target/classes/static/node/node_modules/npm/lib/unpublish.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/wrappy/wrappy.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/cmd-shim/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/ecc-jsbn/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/tracker-stream.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/bl/bl.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/uid-number/get-uid-gid.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/aws4/aws4.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py - /studyolle/target/classes/static/node/node_modules/npm/lib/bugs.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/graceful-fs/polyfills.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/dezalgo/node_modules/asap/browser-raw.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/lib/retry.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/entry-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read/lib/read.js - /studyolle/target/classes/static/node/node_modules/npm/lib/whoami.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/signature.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/promzard.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/nopt/bin/nopt.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/lib/ber/reader.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/lib/curve255.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/chalk/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/access.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/reader.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache.js - /studyolle/target/classes/static/node/node_modules/npm/lib/completion.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_passthrough.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/publish.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/function/#/curry.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/assert-plus/assert.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/cookies.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/oauth-sign/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/extend/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/combined-stream/node_modules/delayed-stream/lib/delayed_stream.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ordered_dict.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/rfc4253.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/chownr/chownr.js - /studyolle/target/classes/static/node/node_modules/npm/lib/tag.js - /studyolle/target/classes/static/node/node_modules/npm/lib/help.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/gyptest.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/file-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/entry.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/dist/client.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/map/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/github-url-from-username-repo/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/xtend/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/is-typedarray/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/create.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/which/node_modules/isexe/mode.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/glob/glob.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/retry/lib/retry_operation.js - /studyolle/target/classes/static/node/node_modules/npm/lib/deprecate.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/brace-expansion/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/parse.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/verror/lib/verror.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/caching-client.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/pem.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/which/which.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/stringify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/lru-cache/lib/lru-cache.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/ssh.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/copy-deep.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/mkdirp/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/ecc-jsbn/lib/sec.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/semver/semver.js - /studyolle/target/classes/static/node/node_modules/npm/lib/help-search.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/ssh-buffer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/fetch.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/process-release.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/file-reader.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/spawn.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/graceful-fs/legacy-streams.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/add.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/compare.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/retry/lib/retry_operation.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/adduser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/debug.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/rm.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/examples/filter-pipe.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py - /studyolle/target/classes/static/node/node_modules/npm/lib/outdated.js - /studyolle/target/classes/static/node/node_modules/npm/lib/install.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/init-package-json.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/stringstream/stringstream.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/tracker.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-installed/read-installed.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/get-publish-config.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/link-reader.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/pubsuffix.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/log.js - /studyolle/target/classes/static/node/node_modules/npm/lib/adduser.js - /studyolle/target/classes/static/node/node_modules/npm/lib/rebuild.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/readable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/block-stream/block-stream.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/commander/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/node_modules/delegates/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/github-url-from-git/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/forever-agent/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/lifecycle.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/retry/lib/retry.js - /studyolle/target/classes/static/node/node_modules/npm/lib/docs.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/_unpack-ieee754.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/which/node_modules/isexe/windows.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/dezalgo/node_modules/asap/asap.js - /studyolle/target/classes/static/node/node_modules/npm/lib/prune.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/team.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/is-typedarray/test.js - /studyolle/target/classes/static/node/node_modules/npm/lib/team.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/aws-sign2/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/mkdirp/bin/cmd.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/minimatch.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/d/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/stars.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/initialize.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/umask/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/proxy-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/graceful-fs/graceful-fs.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/collect.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/verror/examples/levels-werror.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.pad/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/har.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/inflight/inflight.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/isstream/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/unicode.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/parse.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/rimraf.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/node_modules/ms/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/function/_define-length.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/_iterate.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/process-nextick-args/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/tunnel.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/pkcs8.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.padend/node_modules/lodash._basetostring/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/star.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/imurmurhash/imurmurhash.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/build.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/set-credentials-by-uri.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/qs/lib/stringify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-user-validate/npm-user-validate.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/lib/ber/writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/configure.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/lib/browser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/copy-within/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/stringstream/example.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/lib/crypto.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/hypot/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/node_modules/buffer-shims/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/lib/eddsa.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansi/lib/newlines.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/node_modules/glob/common.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansi/examples/progress/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/archy/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules/readdir.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/char-spinner/spin.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/bin.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansi/examples/cursorPosition.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/tar.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/substack-input.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/add-remote-tarball.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/nopt/examples/my-program.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/uid-number/uid-number.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/link-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/columnify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/from-code-point/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/key.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/header.js - /studyolle/target/classes/static/node_modules/react/node_modules/object-assign/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/auto.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/test.js - /studyolle/target/classes/static/node/node_modules/npm/lib/link.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/node_modules/util-deprecate/browser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/lib/dh.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/date/#/format.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/realize-package-specifier/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/request.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-correct/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/normalize/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/code-point-at/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/form-data/lib/form_data.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/helpers.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/chalk/node_modules/ansi-styles/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/dezalgo/node_modules/asap/browser-asap.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/fingerprint.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-cache-filename/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/caseless/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/find-prefix.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/defaults.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/deprecate.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/mkdirp/node_modules/minimist/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/node_modules/glob/glob.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/mixin-prototypes.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/version.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/opener/opener.js - /studyolle/target/classes/static/node/node_modules/npm/lib/init.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/hosted-git-info/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/shrinkwrap.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/browser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/d/auto-bind.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/extended-header.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/tst/ber/writer.test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/store.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/lib/core.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/pinkie-promise/node_modules/pinkie/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/visnup.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/index.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/set.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/core.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/remove.js - /studyolle/target/classes/static/node_modules/react-dom/node_modules/loose-envify/replace.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/ecc-jsbn/test.js - /studyolle/target/classes/static/node/node_modules/npm/lib/repo.js - /studyolle/target/classes/static/node/node_modules/npm/lib/update.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/getProxyFromURI.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/extended-header-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/util-deprecate/browser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/fstream.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/lib/schemas/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_readable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/jsonpointer/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/permuteDomain.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/oauth.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/json-schema/lib/validate.js - /studyolle/target/classes/static/node/node_modules/npm/lib/dist-tag.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/default-input.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/glob/common.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/lib/server.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/_pack-ieee754.js - /studyolle/target/classes/static/node/node_modules/npm/lib/view.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/analyze.js - /studyolle/target/classes/static/node/node_modules/npm/lib/logout.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/node_modules/glob/sync.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray/build/build.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/authify.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/dir-writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/writer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/debug/node.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/init.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/qs/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream-npm/example/dir.js - /studyolle/target/classes/static/node/node_modules/npm/lib/xmas.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/unpublish.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/lib/jsprim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-function/example.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/config-chain/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/e-index-of.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/is-copy-deep.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.padend/node_modules/lodash.tostring/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/validate-npm-package-license/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/string/#/at.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/ssh-private.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/jsonpointer/jsonpointer.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/asn1/tst/ber/reader.test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/concat/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/node_modules/glob/common.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/init-input.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansi/lib/ansi.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/json-parse-helpfulerror/node_modules/jju/lib/document.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/examples/pipe.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/gently-rm.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_readable.js - /studyolle/target/classes/static/node/node_modules/npm/lib/search.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/columnify/node_modules/wcwidth/combining.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-installed/node_modules/util-extend/extend.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/socket-reader.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/config-chain/node_modules/proto-list/proto-list.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/lib/verify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fs-write-stream-atomic/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/lib/parser.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/extsprintf/lib/extsprintf.js - /studyolle/target/classes/static/node/node_modules/npm/lib/config/set-user.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansicolors/ansicolors.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/slice/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/minimatch/node_modules/brace-expansion/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/math/fround/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/glob/sync.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/string.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/git.js - /studyolle/src/main/resources/static/node/node_modules/npm/html/doc/misc/../../static/toc.js - /studyolle/target/classes/static/node/node_modules/npm/lib/ls.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/ed-compat.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/glob/sync.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/examples/symlink-write.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-function/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/tar.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/add-remote-git.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/lib/utils.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek/lib/escape.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.padstart/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/redirect.js - /studyolle/target/classes/static/node/node_modules/npm/lib/run-script.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/lib/util.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/lodash.padend/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/are-we-there-yet/tracker-group.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/completion/installed-deep.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/#/chain.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/lru-cache/node_modules/yallist/yallist.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/private-key.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/add-named.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/completion/installed-shallow.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/PRESUBMIT.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/filter/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/update.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/chmodr/chmodr.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/node_modules/concat-stream/node_modules/readable-stream/lib/_stream_transform.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/link.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/request.js - /studyolle/target/classes/static/node/node_modules/npm/lib/explore.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/index.js - /studyolle/target/classes/static/node_modules/react/node_modules/loose-envify/loose-envify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/ecc-jsbn/lib/ec.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/locker.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_writable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/json-stringify-safe/stringify.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/algs.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/fill/shim.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/tag.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/buffer-entry.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/_sub-array-dummy-safe.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/cookie.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ansistyles/ansistyles.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/from/shim.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/write-file-atomic/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/getpass/lib/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/edit.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-install-checks/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/object/set-prototype-of/shim.js - /studyolle/target/classes/static/node/node_modules/npm/lib/npm.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/dezalgo/node_modules/asap/raw.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse/parser.generated.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_transform.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/node_modules/glob/glob.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/node_modules/es6-iterator/array.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream/lib/proxy-reader.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/lib/_stream_duplex.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read-package-json/read-json.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/text-table/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/utils/map-to-registry.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/normalize-git-url/normalize-git-url.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/read/node_modules/mute-stream/mute.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/ignore.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/tough-cookie/lib/memstore.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/node_modules/has-unicode/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/abbrev/abbrev.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/install.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/rimraf/node_modules/glob/node_modules/path-is-absolute/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/update-index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/lib/list.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/node_modules/string_decoder/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/osenv/osenv.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/github-url-from-git/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/node_modules/generate-function/test.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/node_modules/jodid25519/index.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/add-local-tarball.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/sshpk/lib/formats/pkcs1.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py - /studyolle/target/classes/static/node/node_modules/npm/lib/owner.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py - /studyolle/target/classes/static/node/node_modules/npm/lib/stars.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/array/#/e-last-index-of.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/publish.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/ini/ini.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/minimatch/minimatch.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/ping.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is/util.js - /studyolle/src/main/resources/static/node/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py - /studyolle/target/classes/static/node/node_modules/npm/node_modules/path-is-inside/lib/path-is-inside.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/fs-vacuum/vacuum.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/examples/reader.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/glob/node_modules/fs.realpath/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/hosted-git-info/git-host.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/dist-tags/fetch.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/lockfile/lockfile.js - /studyolle/target/classes/static/node/node_modules/npm/lib/pack.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/qs/lib/parse.js - /studyolle/target/classes/static/node/node_modules/npm/lib/cache/add-local.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/jsprim/node_modules/verror/examples/levels-verror.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/nopt/lib/nopt.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npmlog/node_modules/gauge/progress-bar.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/tar/lib/pack.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/node_modules/hawk/lib/client.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/which/node_modules/isexe/index.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/hosted-git-info/git-host-info.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/npm-registry-client/lib/access.js - /studyolle/target/classes/static/node/node_modules/npm/node_modules/request/lib/querystring.js </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> NodeJS Tough-Cookie version 2.2.2 contains a Regular Expression Parsing vulnerability in HTTP request Cookie Header parsing that can result in Denial of Service. This attack appear to be exploitable via Custom HTTP header passed by client. This vulnerability appears to have been fixed in 2.3.0. <p>Publish Date: 2018-09-05 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-1000232>CVE-2016-1000232</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Change files</p> <p>Origin: <a href="https://github.com/salesforce/tough-cookie/commit/615627206357d997d5e6ff9da158997de05235ae">https://github.com/salesforce/tough-cookie/commit/615627206357d997d5e6ff9da158997de05235ae</a></p> <p>Release Date: 2016-07-21</p> <p>Fix Resolution: Replace or update the following files: parsing_test.js, cookie.js</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve medium detected in io js cve medium severity vulnerability vulnerable library io node js javascript runtime sparkles turtle rocket sparkles library home page a href found in head commit a href library source files the source files were matched to this source library based on a best effort match source libraries are selected from a list of probable public libraries studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules d lazy js studyolle target classes static node node modules npm node modules npm registry client index js studyolle target classes static node node modules npm node modules request node modules combined stream lib combined stream js studyolle target classes static node node modules npm lib utils completion file completion js studyolle target classes static node node modules npm node modules npm package arg npa js studyolle target classes static node node modules npm node modules node gyp gyp buildbot buildbot run py studyolle target classes static node node modules npm node modules slide lib async map ordered js studyolle target classes static node node modules npm node modules lru cache node modules pseudomap pseudomap js studyolle target classes static node node modules npm node modules npm registry client node modules concat stream index js studyolle target classes static node node modules npm node modules npm registry client node modules retry example dns js studyolle target classes static node node modules npm node modules fstream examples reader js studyolle target classes static node modules react node modules loose envify node modules js tokens index js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext node modules symbol polyfill js studyolle target classes static node node modules npm node modules fstream lib dir reader js studyolle target classes static node node modules npm lib dedupe js studyolle target classes static node node modules npm node modules fstream lib abstract js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp msvssettings py studyolle target classes static node node modules npm node modules async some some js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib errors js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib dhe js studyolle target classes static node node modules npm node modules npm registry client node modules concat stream node modules readable stream node modules core util is test js studyolle target classes static node node modules npm node modules npm registry client node modules concat stream node modules typedarray index js studyolle target classes static node node modules npm lib utils correct mkdir js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp generator ninja py studyolle target classes static node node modules npm node modules request node modules http signature node modules assert plus assert js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules dashdash lib dashdash js studyolle target classes static node node modules npm node modules request node modules tunnel agent index js studyolle target classes static node node modules npm node modules fstream npm fstream npm js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext object serialize js studyolle target classes static node node modules npm lib config get credentials by uri js studyolle target classes static node node modules npm lib config load prefix js studyolle target classes static node node modules npm node modules npm registry client lib whoami js studyolle target classes static node node modules npm node modules npmlog node modules gauge node modules lodash padend node modules lodash baseslice index js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp ninja syntax py studyolle target classes static node node modules npm lib config js studyolle target classes static node node modules npm node modules request node modules har validator node modules chalk node modules supports color index js studyolle target classes static node node modules npm node modules request node modules http signature lib signer js studyolle target classes static node node modules npm node modules npm registry client lib logout js studyolle target classes static node node modules npm node modules readable stream lib stream writable js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol polyfill js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext string normalize data js studyolle target classes static node node modules npm lib uninstall js studyolle target classes static node node modules npm node modules request node modules http signature lib index js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp win tool py studyolle target classes static node node modules npm node modules request node modules mime types index js studyolle target classes static node node modules npm node modules npm registry client node modules concat stream node modules readable stream node modules core util is lib util js studyolle target classes static node node modules npm node modules npm registry client lib get js studyolle target classes static node node modules npm node modules request node modules har validator node modules is my json valid node modules generate object property node modules is property is property js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp input py studyolle target classes static node node modules npm node modules request node modules hawk example usage js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules jsbn index js studyolle target classes static node node modules npm node modules node gyp lib build js studyolle target classes static node node modules npm node modules request lib multipart js studyolle target classes static node node modules npm node modules tar lib extract js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp xcode emulation py studyolle target classes static node node modules npm node modules request lib auth js studyolle target classes static node node modules npm node modules request node modules node uuid benchmark benchmark js studyolle target classes static node node modules npm node modules node gyp gyp tools pretty sln py studyolle target classes static node node modules npm node modules request node modules hawk node modules cryptiles lib index js studyolle target classes static node node modules npm node modules slide lib async map js studyolle target classes static node node modules npm node modules request node modules tough cookie lib pathmatch js studyolle target classes static node node modules npm node modules glob node modules fs realpath old js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp generator make py studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array exclusion js studyolle target classes static node node modules npm lib utils error handler js studyolle target classes static node node modules npm node modules request node modules caseless index js studyolle target classes static node node modules npm node modules validate npm package name index js studyolle target classes static node node modules npm node modules npm registry client lib star js studyolle target classes static node node modules npm lib unbuild js studyolle target classes static node node modules npm node modules request node modules har validator node modules is my json valid index js studyolle target classes static node node modules npm node modules npm cache filename index js studyolle target classes static node node modules npm scripts index build js studyolle target classes static node node modules npm node modules request node modules http signature node modules jsprim node modules json schema lib links js studyolle target classes static node node modules npm node modules npm registry client node modules concat stream node modules readable stream lib stream writable js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext node modules iterator for of js studyolle target classes static node node modules npm node modules request node modules har validator node modules is my json valid formats js studyolle target classes static node node modules npm lib unpublish js studyolle target classes static node node modules npm node modules wrappy wrappy js studyolle target classes static node node modules npm node modules cmd shim index js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules ecc jsbn index js studyolle target classes static node node modules npm node modules npmlog node modules are we there yet tracker stream js studyolle target classes static node node modules npm node modules request node modules bl bl js studyolle target classes static node node modules npm node modules uid number get uid gid js studyolle target classes static node node modules npm node modules request node modules js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp common test py studyolle target classes static node node modules npm lib bugs js studyolle target classes static node node modules npm node modules graceful fs polyfills js studyolle target classes static node node modules npm node modules dezalgo node modules asap browser raw js studyolle target classes static node node modules npm node modules npm registry client node modules retry lib retry js studyolle target classes static node node modules npm node modules tar lib entry writer js studyolle target classes static node node modules npm node modules read lib read js studyolle target classes static node node modules npm lib whoami js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib signature js studyolle target classes static node node modules npm node modules init package json node modules promzard promzard js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp generator eclipse py studyolle target classes static node node modules npm node modules nopt bin nopt js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules lib ber reader js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules lib js studyolle target classes static node node modules npm node modules request node modules har validator node modules chalk index js studyolle target classes static node node modules npm lib access js studyolle target classes static node node modules npm node modules fstream lib reader js studyolle target classes static node node modules npm lib cache js studyolle target classes static node node modules npm lib completion js studyolle target classes static node node modules npm node modules request node modules bl node modules readable stream lib stream passthrough js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp generator ninja test py studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array index js studyolle target classes static node node modules npm lib publish js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext function curry js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules assert plus assert js studyolle target classes static node node modules npm node modules request lib cookies js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp msvssettings test py studyolle target classes static node node modules npm node modules request node modules oauth sign index js studyolle target classes static node node modules npm node modules read package json node modules json parse helpfulerror node modules jju lib utils js studyolle target classes static node node modules npm node modules request node modules extend index js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib index js studyolle target classes static node node modules npm node modules normalize package data lib fixer js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp msvsversion py studyolle target classes static node node modules npm node modules request node modules combined stream node modules delayed stream lib delayed stream js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp ordered dict py studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib formats js studyolle target classes static node node modules npm node modules chownr chownr js studyolle target classes static node node modules npm lib tag js studyolle target classes static node node modules npm lib help js studyolle target classes static node node modules npm node modules node gyp gyp gyptest py studyolle target classes static node node modules npm node modules fstream lib file writer js studyolle target classes static node node modules npm node modules tar lib entry js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext node modules iterator index js studyolle target classes static node node modules npm node modules request node modules hawk dist client js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array map shim js studyolle target classes static node node modules npm node modules github url from username repo index js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index index js studyolle target classes static node node modules npm node modules request node modules har validator node modules is my json valid node modules xtend test js studyolle target classes static node node modules npm node modules columnify utils js studyolle target classes static node node modules npm node modules request node modules is typedarray index js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext object create js studyolle target classes static node node modules npm node modules which node modules isexe mode js studyolle target classes static node node modules npm node modules glob glob js studyolle target classes static node node modules npm node modules npm registry client node modules retry lib retry operation js studyolle target classes static node node modules npm lib deprecate js studyolle target classes static node node modules npm node modules node gyp node modules minimatch node modules brace expansion index js studyolle target classes static node node modules npm node modules read package json node modules json parse helpfulerror node modules jju lib parse js studyolle target classes static node node modules npm node modules request node modules hawk node modules sntp lib index js studyolle target classes static node node modules npm node modules request node modules http signature node modules jsprim node modules verror lib verror js studyolle target classes static node node modules npm lib cache caching client js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib formats pem js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp generator dump dependency json py studyolle target classes static node node modules npm node modules which which js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp generator analyzer py studyolle target classes static node node modules npm node modules read package json node modules json parse helpfulerror node modules jju lib stringify js studyolle target classes static node node modules npm node modules lru cache lib lru cache js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib formats ssh js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext object copy deep js studyolle target classes static node node modules npm node modules mkdirp index js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules ecc jsbn lib sec js studyolle target classes static node node modules npm node modules semver semver js studyolle target classes static node node modules npm lib help search js studyolle target classes static node node modules npm node modules imurmurhash imurmurhash min js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib ssh buffer js studyolle target classes static node node modules npm node modules npm registry client lib fetch js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp generator xcode py studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp flock tool py studyolle target classes static node node modules npm node modules node gyp lib process release js studyolle target classes static node node modules npm node modules fstream lib file reader js studyolle target classes static node node modules npm lib utils spawn js studyolle target classes static node node modules npm node modules graceful fs legacy streams js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp xcode ninja py studyolle target classes static node node modules npm node modules npm registry client lib dist tags add js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext object compare js studyolle target classes static node node modules npm node modules retry lib retry operation js studyolle target classes static node node modules npm node modules minimatch node modules brace expansion node modules balanced match index js studyolle target classes static node node modules npm node modules npm registry client lib adduser js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules debug debug js studyolle target classes static node node modules npm node modules npm registry client lib dist tags rm js studyolle target classes static node node modules npm node modules fstream examples filter pipe js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp generator gypd py studyolle target classes static node node modules npm lib outdated js studyolle target classes static node node modules npm lib install js studyolle target classes static node node modules npm node modules init package json init package json js studyolle target classes static node node modules npm node modules request node modules stringstream stringstream js studyolle target classes static node node modules npm node modules npmlog node modules are we there yet tracker js studyolle target classes static node node modules npm node modules read installed read installed js studyolle target classes static node node modules npm lib utils get publish config js studyolle target classes static node node modules npm node modules fstream lib link reader js studyolle target classes static node node modules npm node modules request node modules tough cookie lib pubsuffix js studyolle target classes static node node modules npm node modules npmlog log js studyolle target classes static node node modules npm lib adduser js studyolle target classes static node node modules npm lib rebuild js studyolle target classes static node node modules npm node modules readable stream readable js studyolle target classes static node node modules npm node modules block stream block stream js studyolle target classes static node node modules npm node modules request node modules har validator node modules commander index js studyolle target classes static node node modules npm node modules npmlog node modules are we there yet node modules delegates index js studyolle target classes static node node modules npm node modules github url from git test js studyolle target classes static node node modules npm node modules request node modules forever agent index js studyolle target classes static node node modules npm lib utils lifecycle js studyolle target classes static node node modules npm node modules retry lib retry js studyolle target classes static node node modules npm lib docs js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext math unpack js studyolle target classes static node node modules npm node modules which node modules isexe windows js studyolle target classes static node node modules npm node modules dezalgo node modules asap asap js studyolle target classes static node node modules npm lib prune js studyolle target classes static node node modules npm node modules npm registry client lib team js studyolle target classes static node node modules npm node modules request node modules is typedarray test js studyolle target classes static node node modules npm lib team js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp generator cmake py studyolle target classes static node node modules npm node modules request node modules aws index js studyolle target classes static node node modules npm node modules mkdirp bin cmd js studyolle target classes static node node modules npm node modules node gyp node modules minimatch minimatch js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules d index js studyolle target classes static node node modules npm node modules npm registry client lib stars js studyolle target classes static node node modules npm node modules npm registry client lib initialize js studyolle target classes static node node modules npm node modules request node modules hawk node modules boom lib index js studyolle target classes static node node modules npm node modules umask index js studyolle target classes static node node modules npm node modules fstream lib proxy writer js studyolle target classes static node node modules npm node modules graceful fs graceful fs js studyolle target classes static node node modules npm node modules fs write stream atomic node modules iferr index js studyolle target classes static node node modules npm node modules fstream lib collect js studyolle target classes static node node modules npm node modules request node modules http signature node modules jsprim node modules verror examples levels werror js studyolle target classes static node node modules npm node modules npmlog node modules gauge node modules lodash pad index js studyolle target classes static node node modules npm node modules request lib har js studyolle target classes static node node modules npm node modules inflight inflight js studyolle target classes static node node modules npm node modules request node modules isstream test js studyolle target classes static node node modules npm node modules read package json node modules json parse helpfulerror node modules jju lib unicode js studyolle target classes static node node modules npm node modules tar lib parse js studyolle target classes static node node modules npm node modules rimraf rimraf js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules debug node modules ms index js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext function define length js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext object iterate js studyolle target classes static node node modules npm node modules npm registry client node modules concat stream node modules readable stream node modules process nextick args index js studyolle target classes static node node modules npm node modules request lib tunnel js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib formats js studyolle target classes static node node modules npm node modules npmlog node modules gauge node modules lodash padend node modules lodash basetostring index js studyolle target classes static node node modules npm lib star js studyolle target classes static node node modules npm node modules imurmurhash imurmurhash js studyolle target classes static node node modules npm node modules read package json node modules json parse helpfulerror node modules jju index js studyolle target classes static node node modules npm lib build js studyolle target classes static node node modules npm lib config set credentials by uri js studyolle target classes static node node modules npm node modules request node modules qs lib stringify js studyolle target classes static node node modules npm node modules npm user validate npm user validate js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp generator xcode test py studyolle target classes static node node modules npm node modules node gyp lib find node directory js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules lib ber writer js studyolle target classes static node node modules npm node modules node gyp lib configure js studyolle target classes static node node modules npm node modules request node modules hawk lib browser js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array copy within shim js studyolle target classes static node node modules npm node modules request node modules stringstream example js studyolle target classes static node node modules npm node modules request node modules hawk lib crypto js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext math hypot shim js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index test js studyolle target classes static node node modules npm node modules readable stream node modules buffer shims index js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules lib eddsa js studyolle target classes static node node modules npm node modules ansi lib newlines js studyolle target classes static node node modules npm node modules normalize package data lib normalize js studyolle target classes static node node modules npm node modules request node modules http signature lib utils js studyolle target classes static node node modules npm node modules rimraf node modules glob common js studyolle target classes static node node modules npm node modules ansi examples progress index js studyolle target classes static node node modules npm node modules archy index js studyolle target classes static node node modules npm node modules read installed node modules readdir scoped modules readdir js studyolle target classes static node node modules npm node modules char spinner spin js studyolle target classes static node node modules npm node modules rimraf bin js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib utils js studyolle target classes static node node modules npm node modules ansi examples cursorposition js studyolle target classes static node node modules npm lib utils tar js studyolle target classes static node node modules npm node modules init package json node modules promzard example substack input js studyolle target classes static node node modules npm lib cache add remote tarball js studyolle target classes static node node modules npm node modules nopt examples my program js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp simple copy py studyolle target classes static node node modules npm node modules uid number uid number js studyolle target classes static node node modules npm node modules fstream lib link writer js studyolle target classes static node node modules npm node modules columnify columnify js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext string from code point shim js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib key js studyolle target classes static node node modules npm node modules tar lib header js studyolle target classes static node modules react node modules object assign index js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib formats auto js studyolle target classes static node node modules npm node modules columnify node modules wcwidth node modules defaults test js studyolle target classes static node node modules npm lib link js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp mac tool py studyolle target classes static node node modules npm node modules npm registry client node modules concat stream node modules readable stream node modules util deprecate browser js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules lib dh js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext date format js studyolle target classes static node node modules npm node modules realize package specifier index js studyolle target classes static node node modules npm node modules request request js studyolle target classes static node node modules npm node modules validate npm package license node modules spdx correct index js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext string normalize shim js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext string code point at shim js studyolle target classes static node node modules npm node modules request node modules form data lib form data js studyolle target classes static node node modules npm node modules request lib helpers js studyolle target classes static node node modules npm node modules request node modules har validator node modules chalk node modules ansi styles index js studyolle target classes static node node modules npm node modules columnify node modules wcwidth node modules defaults node modules clone test js studyolle target classes static node node modules npm node modules dezalgo node modules asap browser asap js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib fingerprint js studyolle target classes static node node modules npm node modules npm cache filename test js studyolle target classes static node node modules npm node modules request node modules caseless test js studyolle target classes static node node modules npm node modules readable stream lib stream transform js studyolle target classes static node node modules npm lib config find prefix js studyolle target classes static node node modules npm lib config defaults js studyolle target classes static node node modules npm node modules npm registry client lib deprecate js studyolle target classes static node node modules npm node modules mkdirp node modules minimist index js studyolle target classes static node node modules npm node modules node gyp bin node gyp js studyolle target classes static node node modules npm node modules rimraf node modules glob glob js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext object mixin prototypes js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext string index js studyolle target classes static node node modules npm lib version js studyolle target classes static node node modules npm node modules request node modules hawk node modules hoek lib index js studyolle target classes static node node modules npm node modules opener opener js studyolle target classes static node node modules npm lib init js studyolle target classes static node node modules npm node modules hosted git info index js studyolle target classes static node node modules npm lib shrinkwrap js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules debug browser js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules d auto bind js studyolle target classes static node node modules npm node modules tar lib extended header js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules tst ber writer test js studyolle target classes static node node modules npm node modules columnify index js studyolle target classes static node node modules npm node modules request node modules tough cookie lib store js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules lib core js studyolle target classes static node node modules npm node modules request node modules har validator node modules pinkie promise node modules pinkie index js studyolle target classes static node node modules npm lib visnup js studyolle target classes static node node modules npm node modules sha index js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp generator msvs py studyolle target classes static node node modules npm node modules npm registry client lib dist tags set js studyolle target classes static node node modules npm lib config core js studyolle target classes static node node modules npm node modules node gyp lib remove js studyolle target classes static node modules react dom node modules loose envify replace js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules ecc jsbn test js studyolle target classes static node node modules npm lib repo js studyolle target classes static node node modules npm lib update js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp msvsutil py studyolle target classes static node node modules npm node modules request lib getproxyfromuri js studyolle target classes static node node modules npm node modules tar lib extended header writer js studyolle target classes static node node modules npm node modules sha node modules readable stream node modules util deprecate browser js studyolle target classes static node node modules npm node modules fstream fstream js studyolle target classes static node node modules npm node modules request node modules har validator lib schemas index js studyolle target classes static node node modules npm node modules request node modules bl node modules readable stream lib stream readable js studyolle target classes static node node modules npm node modules request node modules har validator node modules is my json valid node modules jsonpointer test js studyolle target classes static node node modules npm node modules request node modules tough cookie lib permutedomain js studyolle target classes static node node modules npm node modules request lib oauth js studyolle target classes static node node modules npm node modules request node modules http signature node modules jsprim node modules json schema lib validate js studyolle target classes static node node modules npm lib dist tag js studyolle target classes static node node modules npm node modules init package json default input js studyolle target classes static node node modules npm node modules glob common js studyolle target classes static node node modules npm node modules request node modules hawk lib server js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext math pack js studyolle target classes static node node modules npm lib view js studyolle target classes static node node modules npm node modules read package json node modules json parse helpfulerror node modules jju lib analyze js studyolle target classes static node node modules npm lib logout js studyolle target classes static node node modules npm node modules rimraf node modules glob sync js studyolle target classes static node node modules npm node modules sha node modules readable stream node modules isarray build build js studyolle target classes static node node modules npm node modules npm registry client lib authify js studyolle src main resources static node node modules npm node modules node gyp src win delay load hook cc studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp common py studyolle target classes static node node modules npm node modules fstream lib dir writer js studyolle target classes static node node modules npm node modules fstream lib writer js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules debug node js studyolle target classes static node node modules npm node modules init package json node modules promzard example npm init init js studyolle target classes static node node modules npm node modules request node modules qs lib utils js studyolle target classes static node node modules npm node modules fstream npm example dir js studyolle target classes static node node modules npm lib xmas js studyolle target classes static node node modules npm node modules normalize package data lib make warning js studyolle target classes static node node modules npm node modules npm registry client lib unpublish js studyolle target classes static node node modules npm node modules request node modules http signature node modules jsprim lib jsprim js studyolle target classes static node node modules npm node modules request node modules har validator node modules is my json valid node modules generate function example js studyolle target classes static node node modules npm node modules config chain index js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array e index of js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext object is copy deep js studyolle target classes static node node modules npm node modules npmlog node modules gauge node modules lodash padend node modules lodash tostring index js studyolle target classes static node node modules npm node modules validate npm package license index js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext string at js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib formats ssh private js studyolle target classes static node node modules npm node modules columnify node modules wcwidth index js studyolle target classes static node node modules npm node modules request node modules har validator node modules is my json valid node modules jsonpointer jsonpointer js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules tst ber reader test js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array concat shim js studyolle target classes static node node modules npm node modules init package json node modules glob common js studyolle target classes static node node modules npm node modules init package json node modules promzard example npm init init input js studyolle target classes static node node modules npm node modules ansi lib ansi js studyolle target classes static node node modules npm node modules read package json node modules json parse helpfulerror node modules jju lib document js studyolle target classes static node node modules npm node modules fstream examples pipe js studyolle target classes static node node modules npm lib utils gently rm js studyolle target classes static node node modules npm node modules sha node modules readable stream lib stream readable js studyolle target classes static node node modules npm lib search js studyolle target classes static node node modules npm node modules columnify node modules wcwidth combining js studyolle target classes static node node modules npm node modules node gyp lib node gyp js studyolle target classes static node node modules npm node modules read installed node modules util extend extend js studyolle target classes static node node modules npm node modules fstream lib socket reader js studyolle target classes static node node modules npm node modules config chain node modules proto list proto list js studyolle target classes static node node modules npm node modules request node modules http signature lib verify js studyolle target classes static node node modules npm node modules request node modules hawk lib utils js studyolle target classes static node node modules npm node modules fs write stream atomic index js studyolle target classes static node node modules npm node modules request node modules http signature lib parser js studyolle target classes static node node modules npm node modules request node modules http signature node modules jsprim node modules extsprintf lib extsprintf js studyolle target classes static node node modules npm lib config set user js studyolle target classes static node node modules npm node modules ansicolors ansicolors js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array slice shim js studyolle target classes static node node modules npm node modules minimatch node modules brace expansion index js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext math fround shim js studyolle target classes static node node modules npm node modules glob sync js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext node modules iterator string js studyolle target classes static node node modules npm lib utils git js studyolle src main resources static node node modules npm html doc misc static toc js studyolle target classes static node node modules npm lib ls js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib ed compat js studyolle target classes static node node modules npm node modules read package json node modules glob sync js studyolle target classes static node node modules npm node modules fstream examples symlink write js studyolle target classes static node node modules npm node modules request node modules har validator node modules is my json valid node modules generate function index js studyolle target classes static node node modules npm node modules tar tar js studyolle target classes static node node modules npm lib cache add remote git js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules lib utils js studyolle target classes static node node modules npm node modules request node modules hawk node modules hoek lib escape js studyolle target classes static node node modules npm node modules request index js studyolle target classes static node node modules npm node modules npmlog node modules gauge node modules lodash padstart index js studyolle target classes static node node modules npm node modules request lib redirect js studyolle target classes static node node modules npm lib run script js studyolle target classes static node node modules npm node modules sha node modules readable stream node modules core util is lib util js studyolle target classes static node node modules npm node modules npmlog node modules gauge node modules lodash padend index js studyolle target classes static node node modules npm node modules npmlog node modules are we there yet tracker group js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp input test py studyolle target classes static node node modules npm lib utils completion installed deep js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext node modules iterator chain js studyolle target classes static node node modules npm node modules lru cache node modules yallist yallist js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib private key js studyolle target classes static node node modules npm lib cache add named js studyolle target classes static node node modules npm lib utils completion installed shallow js studyolle target classes static node node modules npm node modules node gyp node modules minimatch node modules brace expansion node modules balanced match index js studyolle target classes static node node modules npm node modules node gyp gyp presubmit py studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array filter shim js studyolle target classes static node node modules npm node modules npm registry client lib dist tags update js studyolle target classes static node node modules npm node modules chmodr chmodr js studyolle target classes static node node modules npm node modules npm registry client node modules concat stream node modules readable stream lib stream transform js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp easy xml py studyolle target classes static node node modules npm lib utils link js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp init py studyolle target classes static node node modules npm node modules npm registry client lib request js studyolle target classes static node node modules npm lib explore js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext object index js studyolle target classes static node modules react node modules loose envify loose envify js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules ecc jsbn lib ec js studyolle target classes static node node modules npm lib utils locker js studyolle target classes static node node modules npm node modules sha node modules readable stream lib stream writable js studyolle target classes static node node modules npm node modules request node modules json stringify safe stringify js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib algs js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array fill shim js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp xcodeproj file py studyolle target classes static node node modules npm node modules npm registry client lib tag js studyolle target classes static node node modules npm node modules tar lib buffer entry js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array sub array dummy safe js studyolle target classes static node node modules npm node modules request node modules tough cookie lib cookie js studyolle target classes static node node modules npm node modules ansistyles ansistyles js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array from shim js studyolle target classes static node node modules npm node modules write file atomic index js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules getpass lib index js studyolle target classes static node node modules npm lib edit js studyolle target classes static node node modules npm node modules readable stream lib stream duplex js studyolle target classes static node node modules npm node modules npm install checks index js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext object set prototype of shim js studyolle target classes static node node modules npm lib npm js studyolle target classes static node node modules npm node modules dezalgo node modules asap raw js studyolle target classes static node node modules npm node modules validate npm package license node modules spdx expression parse parser generated js studyolle target classes static node node modules npm node modules sha node modules readable stream lib stream transform js studyolle target classes static node node modules npm node modules read package json node modules glob glob js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext node modules iterator array js studyolle target classes static node node modules npm node modules fstream lib proxy reader js studyolle target classes static node node modules npm node modules sha node modules readable stream lib stream duplex js studyolle target classes static node node modules npm node modules read package json read json js studyolle target classes static node node modules npm node modules text table index js studyolle target classes static node node modules npm lib utils map to registry js studyolle target classes static node node modules npm node modules normalize git url normalize git url js studyolle target classes static node node modules npm node modules read node modules mute stream mute js studyolle target classes static node node modules npm node modules fstream npm node modules fstream ignore ignore js studyolle target classes static node node modules npm node modules request node modules tough cookie lib memstore js studyolle target classes static node node modules npm node modules npmlog node modules gauge node modules has unicode index js studyolle target classes static node node modules npm node modules abbrev abbrev js studyolle target classes static node node modules npm node modules node gyp lib install js studyolle target classes static node node modules npm node modules rimraf node modules glob node modules path is absolute index js studyolle target classes static node node modules npm lib cache update index js studyolle target classes static node node modules npm node modules node gyp node modules path array index js studyolle target classes static node node modules npm node modules node gyp lib list js studyolle target classes static node node modules npm node modules readable stream node modules string decoder index js studyolle target classes static node node modules npm node modules osenv osenv js studyolle target classes static node node modules npm node modules github url from git index js studyolle target classes static node node modules npm node modules request node modules har validator node modules is my json valid node modules generate function test js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk node modules index js studyolle target classes static node node modules npm lib cache add local tarball js studyolle target classes static node node modules npm node modules request node modules http signature node modules sshpk lib formats js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp msvsnew py studyolle target classes static node node modules npm lib owner js studyolle target classes static node node modules npm node modules node gyp gyp pylib gyp msvs emulation py studyolle target classes static node node modules npm lib stars js studyolle target classes static node node modules npm node modules node gyp node modules path array node modules array index node modules symbol node modules ext array e last index of js studyolle target classes static node node modules npm node modules node gyp gyp data win large pdb shim cc studyolle target classes static node node modules npm node modules npm registry client lib publish js studyolle target classes static node node modules npm node modules readable stream lib stream readable js studyolle target classes static node node modules npm node modules ini ini js studyolle target classes static node node modules npm node modules minimatch minimatch js studyolle target classes static node node modules npm node modules npm registry client lib ping js studyolle target classes static node node modules npm node modules sha node modules readable stream node modules core util is util js studyolle src main resources static node node modules npm node modules node gyp gyp pylib gyp generator android py studyolle target classes static node node modules npm node modules path is inside lib path is inside js studyolle target classes static node node modules npm node modules fs vacuum vacuum js studyolle target classes static node node modules npm node modules tar examples reader js studyolle target classes static node node modules npm node modules glob node modules fs realpath index js studyolle target classes static node node modules npm node modules hosted git info git host js studyolle target classes static node node modules npm node modules npm registry client lib dist tags fetch js studyolle target classes static node node modules npm node modules lockfile lockfile js studyolle target classes static node node modules npm lib pack js studyolle target classes static node node modules npm node modules request node modules qs lib parse js studyolle target classes static node node modules npm lib cache add local js studyolle target classes static node node modules npm node modules request node modules http signature node modules jsprim node modules verror examples levels verror js studyolle target classes static node node modules npm node modules nopt lib nopt js studyolle target classes static node node modules npm node modules npmlog node modules gauge progress bar js studyolle target classes static node node modules npm node modules tar lib pack js studyolle target classes static node node modules npm node modules request node modules hawk lib client js studyolle target classes static node node modules npm node modules which node modules isexe index js studyolle target classes static node node modules npm node modules hosted git info git host info js studyolle target classes static node node modules npm node modules npm registry client lib access js studyolle target classes static node node modules npm node modules request lib querystring js vulnerability details nodejs tough cookie version contains a regular expression parsing vulnerability in http request cookie header parsing that can result in denial of service this attack appear to be exploitable via custom http header passed by client this vulnerability appears to have been fixed in publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact low for more information on scores click a href suggested fix type change files origin a href release date fix resolution replace or update the following files parsing test js cookie js step up your open source security game with whitesource
0
279,979
8,676,488,542
IssuesEvent
2018-11-30 14:16:34
JWWeatherman/math_bot
https://api.github.com/repos/JWWeatherman/math_bot
closed
Do the part 2 interview with Giacomo Zucco
Non-dev task Priority 4
The first part we covered his cyhperpunk ideas, but in the second part I want to make the interview more personal and talk about how his technical background and how he became an anarchist bitcoiner. This needs to wait until October for both of our schedules.
1.0
Do the part 2 interview with Giacomo Zucco - The first part we covered his cyhperpunk ideas, but in the second part I want to make the interview more personal and talk about how his technical background and how he became an anarchist bitcoiner. This needs to wait until October for both of our schedules.
non_test
do the part interview with giacomo zucco the first part we covered his cyhperpunk ideas but in the second part i want to make the interview more personal and talk about how his technical background and how he became an anarchist bitcoiner this needs to wait until october for both of our schedules
0
272,204
29,794,993,471
IssuesEvent
2023-06-16 01:02:41
billmcchesney1/concord
https://api.github.com/repos/billmcchesney1/concord
closed
WS-2021-0419 (High) detected in gson-2.8.6.jar - autoclosed
Mend: dependency security vulnerability
## WS-2021-0419 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>gson-2.8.6.jar</b></p></summary> <p>Gson JSON library</p> <p>Library home page: <a href="https://github.com/google/gson">https://github.com/google/gson</a></p> <p>Path to dependency file: /it/console/pom.xml</p> <p>Path to vulnerable library: /canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar</p> <p> Dependency Hierarchy: - :x: **gson-2.8.6.jar** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> Denial of Service vulnerability was discovered in gson before 2.8.9 via the writeReplace() method. <p>Publish Date: 2021-10-11 <p>URL: <a href=https://github.com/google/gson/pull/1991>WS-2021-0419</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Release Date: 2021-10-11</p> <p>Fix Resolution: 2.8.9</p> </p> </details> <p></p> *** :rescue_worker_helmet: Automatic Remediation is available for this issue
True
WS-2021-0419 (High) detected in gson-2.8.6.jar - autoclosed - ## WS-2021-0419 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>gson-2.8.6.jar</b></p></summary> <p>Gson JSON library</p> <p>Library home page: <a href="https://github.com/google/gson">https://github.com/google/gson</a></p> <p>Path to dependency file: /it/console/pom.xml</p> <p>Path to vulnerable library: /canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/home/wss-scanner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar,/canner/.m2/repository/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar</p> <p> Dependency Hierarchy: - :x: **gson-2.8.6.jar** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> Denial of Service vulnerability was discovered in gson before 2.8.9 via the writeReplace() method. <p>Publish Date: 2021-10-11 <p>URL: <a href=https://github.com/google/gson/pull/1991>WS-2021-0419</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.7</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Release Date: 2021-10-11</p> <p>Fix Resolution: 2.8.9</p> </p> </details> <p></p> *** :rescue_worker_helmet: Automatic Remediation is available for this issue
non_test
ws high detected in gson jar autoclosed ws high severity vulnerability vulnerable library gson jar gson json library library home page a href path to dependency file it console pom xml path to vulnerable library canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar canner repository com google code gson gson gson jar canner repository com google code gson gson gson jar canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar canner repository com google code gson gson gson jar canner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar home wss scanner repository com google code gson gson gson jar canner repository com google code gson gson gson jar dependency hierarchy x gson jar vulnerable library found in base branch master vulnerability details denial of service vulnerability was discovered in gson before via the writereplace method publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version release date fix resolution rescue worker helmet automatic remediation is available for this issue
0
348,918
31,759,741,567
IssuesEvent
2023-09-12 03:30:40
Wohlstand/TheXTech
https://api.github.com/repos/Wohlstand/TheXTech
closed
BUG of Tr-ID Mode Translation with same strings
bug NEED A TEST
![Scr_2023-09-12_08-56-07](https://github.com/Wohlstand/TheXTech/assets/37089530/49083e29-3d0b-40bc-a3e3-ba6309582963) [Same TR-ID Strings Test.zip](https://github.com/Wohlstand/TheXTech/files/12581353/Same.TR-ID.Strings.Test.zip) When using same strings with Tr-Id Mode (even with different String Key; in both "event" and "NPC dialogue"), the other one got screwed up!!! _Tested with: Nostalgic Paradise_
1.0
BUG of Tr-ID Mode Translation with same strings - ![Scr_2023-09-12_08-56-07](https://github.com/Wohlstand/TheXTech/assets/37089530/49083e29-3d0b-40bc-a3e3-ba6309582963) [Same TR-ID Strings Test.zip](https://github.com/Wohlstand/TheXTech/files/12581353/Same.TR-ID.Strings.Test.zip) When using same strings with Tr-Id Mode (even with different String Key; in both "event" and "NPC dialogue"), the other one got screwed up!!! _Tested with: Nostalgic Paradise_
test
bug of tr id mode translation with same strings when using same strings with tr id mode even with different string key in both event and npc dialogue the other one got screwed up tested with nostalgic paradise
1
25,739
2,683,953,492
IssuesEvent
2015-03-28 14:16:30
ConEmu/old-issues
https://api.github.com/repos/ConEmu/old-issues
opened
Desktop mode и несколько мониторов
2–5 stars bug imported Monitors Priority-Medium
_From [LazyRoy@gmail.com](https://code.google.com/u/LazyRoy@gmail.com/) on September 25, 2010 20:27:10_ Неплохо бы учесть, что мониторов может быть несколько - а работать, имхо, надо с тем, на котором окно находилось, когда эту фичу включили. Сейчас все глючит самым мощным образом. Например, при максимизации окна - разрешение взяли с одного монитора, а развернули на другом. Перенесли руками, закрыли, открыли - опять на другом мониторе. _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=297_
1.0
Desktop mode и несколько мониторов - _From [LazyRoy@gmail.com](https://code.google.com/u/LazyRoy@gmail.com/) on September 25, 2010 20:27:10_ Неплохо бы учесть, что мониторов может быть несколько - а работать, имхо, надо с тем, на котором окно находилось, когда эту фичу включили. Сейчас все глючит самым мощным образом. Например, при максимизации окна - разрешение взяли с одного монитора, а развернули на другом. Перенесли руками, закрыли, открыли - опять на другом мониторе. _Original issue: http://code.google.com/p/conemu-maximus5/issues/detail?id=297_
non_test
desktop mode и несколько мониторов from on september неплохо бы учесть что мониторов может быть несколько а работать имхо надо с тем на котором окно находилось когда эту фичу включили сейчас все глючит самым мощным образом например при максимизации окна разрешение взяли с одного монитора а развернули на другом перенесли руками закрыли открыли опять на другом мониторе original issue
0