Questions tagged [poc]

A PoC or a proof of concept is a simple implementation which demonstrates an idea, but omits nonessential functionality to focus on solving just the important problem.

A PoC or a proof of concept is a simple program which demonstrates an idea, enough to decide whether it makes sense to explore it further to develop a complete product or service, or to demonstrate a bug in an isolated context. Security researchers also use this term for programs which demonstrate the existence of an exploit, but which typically then only use it to do something benign, like run the calculator app or show that they can make the vulnerable system print "hello world", for example.

12 questions
2
votes
2 answers

Running micronaut serverless locally

I'm trying to create an AWS Lambda function with micronaut using functions i.e. I created my poc project with: mn create-function-app --build=maven --jdk=11 micronaut-test I can build and deploy it to AWS very easily but I wonder if there is a way…
MrBlackV
  • 43
  • 7
2
votes
0 answers

Meltdown POC in C++

I heard about the Meltdown vulnerability and read the paper, which was kind of difficult since I am not a native speaker, but I decided to make a small proof of concept C++ program which is shown below, I would like to know the reasons for the code…
user9184386
1
vote
1 answer

Executing a Batch Script with ProcessBuilder

I'm trying to execute a Batch Script with ProcessBuilder and can't figure out why it's not working. I built a small PoC to show my problem, in order for this to work you would need to create some folders on C Drive: 22840c1a 22840c1a\subfolder Then…
kSp
  • 224
  • 2
  • 13
1
vote
1 answer

how can I locally decrypt already sealed secrets?

I have a question in regards to using sealed-secrets . SealedSecrets solution solves the issue we’ve got: be able to store secrets in our version control. However, we want to be able to re-generate the plain secret file from a sealed-secret file (an…
1
vote
1 answer

Spectre V1 PoC Code

I try to understand the Spectre PoC by Erik August (https://gist.github.com/ErikAugust/724d4a969fb2c6ae1bbd7b2a9e3d4bb6). In line 76 it says x = ((j % 6) - 1) & ~0xFFFF; So I know & is a bitwise AND and ~ returns a bitwise complement. If j%6 is 0…
Duckling
  • 71
  • 2
1
vote
2 answers

POC for Team Foundation Server

I am technical guys from bank and my job scope is mainly on ETL and reporting. We just set up ETL team in my department and we want to have some tool that can help us on source code control and release management. One of the tool that I know in the…
user664481
  • 2,141
  • 9
  • 25
  • 31
0
votes
0 answers

Automation tests for slackerHQ Application

My Company has a application created with stacker and i need to do a proof of concept about the Automation in Testing and maybe find one framework which is good to us for that. we have here some problems with the locaters. first: all elements are in…
0
votes
1 answer

Jmter performance of website parallel users

I have a scenario like to checks the performance of a website. The script should cover the scenario described below. 4 parallel users will open the web page (each user will start 5 seconds after the previous user) and each user will execute the…
Srinivaso
  • 51
  • 2
  • 9
0
votes
1 answer

SharePoint Application feasibility with JMETER

I have been facing issue with JMeter recently where I needed to understand if JMeter supports SharePoint Application? I am stuck at the recording of a simple Login-Logout page where ADID Authentication is involved, whenever I try to record in the…
Divya Master
  • 69
  • 2
  • 11
0
votes
2 answers

Is it right to use simulator for a project's POC

Iam trying to develop a POC (to show for inverstors) for my idea that has to communicate to a SMS gateway,using the message obtained, it has to communicate to another system like webservice etc. Right now Iam using POJOs(with some getters and…
prassee
  • 3,651
  • 6
  • 30
  • 49
-1
votes
1 answer

Load Runner- Network Virtualization: No NV Graph Visualization and incorrect location wise Response Time

I am trying to do a PoC on Load Runner- Network Virtualization. PFB Scenario Details: Demo Site: https://petstore.octoperf.com/actions/Catalog.action Machine: Office Laptop #Locations: 4 ->Location Configurations: 1 User to each location (total=4…
-1
votes
1 answer

Is this javascript code vulnerable to XSS

I have a simple example.js file that that is included in a html 'use strict'; function getURLParameter(name) { return new URLSearchParams(window.location.search).get(name) } function myFunction() { var…
Marco
  • 561
  • 4
  • 14