Questions tagged [replay]
124 questions
3
votes
2 answers
ASP.NET replay attack detection again
Ok ASP.NET WebForms is old technology now but we'll be stuck with it for the foreseeable future and I'm just trying to see if I can put in a very basic replay attack prevention mechanism. Basically we want to make sure that after a user has…

Dylan Nicholson
- 1,235
- 14
- 20
3
votes
4 answers
Replaying a video continuously in a WPF media element
I have a video file playing in a media element. I need to keep it playing, thus I tried:
me.play();
me.MediaEnded += new RoutedEventHandler(me_MediaEnded);
With this event method:
//loop to keep video playing continuously
void me_MediaEnded(object…

Anoushka Seechurn
- 2,166
- 7
- 35
- 52
2
votes
0 answers
replay attack mitigation using onelogin php toolkit
In the php SAML toolkit from onelogin dot com the README.md states:
"### Replay attacks ###
In order to avoid replay attacks, you can store the ID of the SAML messages already processed, to avoid processing them twice. Since the Messages expires and…

user1987540
- 31
- 2
2
votes
0 answers
Replay websocket traffic
I have a websocket server that is producing a lot of data. I'm only listening, I'm not sending anything.
I'd like to capture the data for a few minutes and store it as test data. Later, I'd like to make a local server to replay this data "realtime",…

Frank Meulenaar
- 1,207
- 3
- 13
- 23
2
votes
1 answer
Can subscribing event processor and tracking event processor co exist?
Currently we are using Axon 2. We would like to upgrade Axon 2 to 4. We used Axon 2 subscribing event processor with replay options. In Axon 4, One significant difference is Tracking event processors. It seems,Tracking processors are must for…

user3022382
- 21
- 2
2
votes
1 answer
Is there a Jenkins env var for Replay?
Does Jenkins provide a variable when replay is ran? If so what is that? I see in the log that is writes Replayed but I am not looking to scrape the console output.

Laser Hawk
- 1,988
- 2
- 23
- 29
2
votes
1 answer
How to use python rx's replay?
I want to be able to use the replay operator on a stream that already happens to be a BehaviorSubject.
Essentially, I want the print subscription to receive the emissions that were sent beforehand: 0, 1, 2, 3, 4, 5.
I tried to make the observable…

Troy1010
- 21
- 3
2
votes
2 answers
Optomised Algorithm for keeping track of network packets (replay attack prevention)
I'm implementing a network server that processes udp packets. I want to avoid replay attacks, where an attacker could copy udp packets, and replay them later in time. I way toying with idea that i could hash packet and store this value in a hash…

The Unix Janitor
- 558
- 1
- 6
- 15
2
votes
0 answers
How to sync a multiprocessing.Event list from parent to child process in real-time?
I have a requirement to retrieve and replay a trace file (in python) containing transactions from different processes. We have to simulate the original scenrios in trace file, so we first separate the trace file into different pieces in each of…

Xavier Hou
- 21
- 2
2
votes
1 answer
How can I record and replay macros in Eclipse 3.5?
Which tool would you recommend for macro recording and replaying ? Is there a language as well ? I frequently switch between Eclipse and Emacs(actually Xemacs) for editing tasks.
It would be nice if I didn't have to do as frequently. That would…

anjanb
- 12,999
- 18
- 77
- 106
2
votes
1 answer
Reply by message to sender using Arduino Nano and Sim900 module
I use arduino Nano and Sim900 module. I want, when a message is received, Arduino to reply back "thanks" to the sender.
My message receive function code is:
void recieveSms(){
Serial.print("\r");
delay(1000);
Serial.print("AT+CMGF=1\r"); …

Sadeq
- 179
- 1
- 3
- 14
2
votes
1 answer
jetty replay request on timeout
We are facing an issue in Jetty where on timeout it replays the original request again if we don't complete the request from async context. Here is the behavior, for every request we set a async listener with timeout, so we have 2 threads in play,…

Jazz
- 147
- 1
- 1
- 5
2
votes
2 answers
A Scalable Architecture for Reconstructing events
I have been tasked to develop the architecture for a data transformation pipeline.
Essentially, data comes in at one end and is routed through various internal systems acquiring different forms before ending up in its destination.
The main…

Anand Hemmige
- 3,593
- 6
- 21
- 31
2
votes
1 answer
Replaying SQL Server Trace for SqlBulkCopy Command
We are using RML Utilities (Ostress.exe) for replaying our trace workload, recently we found a query (insert bulk) - [1] in that trace file which is failing to replay since the data being inserted is not present in the captured trace file. After…

anivohra
- 221
- 2
- 8
2
votes
2 answers
Event sourcing and logging/replaying commands
I've never heard about storing/replaying commands in CQRS/ES architectures and wanted to ask is that a common practice? I understand the difference between commands and events, but, lets say, from QA point of view it may be useful to replay crashes…

IlliakaillI
- 1,510
- 13
- 25