Questions tagged [interception]

174 questions
1
vote
1 answer

Cryptographic Keys exchange between client and server

I have seen many examples on verifying client or server certificates using Security framework APIs but this will solve only problem of Identification of security features but what about Confidentiality of data? How do I exchange private and public…
Paresh Masani
  • 7,474
  • 12
  • 73
  • 139
1
vote
1 answer

How to append injectionMembers after registration in UnityContainer?

Suppose I have code like this: container.RegisterType(name, manager, new InjectionConstructor(...)); Then I need to add InterceptionBehaviour to my registration, so it would be great if class ContainerRegistration…
tukaef
  • 9,074
  • 4
  • 29
  • 45
1
vote
3 answers

Groovy runtime method interception

I'm playing with Groovy and I wonder, why doesn't this piece of code works? package test interface A { void myMethod() } class B implements A { void myMethod() { println "No catch" } } B.metaClass.myMethod = { println…
Alex Abdugafarov
  • 6,112
  • 7
  • 35
  • 59
1
vote
3 answers

Is it possible to intercept calls to console from another process?

The situation is that I have program started through system() or CreateProcess(). Now, is it possible to do stuff as that program outputs data into console. I mean as the program outputs it. That is not wait for the end, gather data and then process…
rsk82
  • 28,217
  • 50
  • 150
  • 240
1
vote
0 answers

Blackberry - Read SMS and MMS from inbox

Possible Duplicate: How can I read SMS messages from the inbox programmatically in blackberry? I am trying to intercept/read incoming sms and mms for my project. I am able to successfully intercept sms, by listening to "sms://:3590". However I am…
cornerstone
  • 639
  • 1
  • 8
  • 19
1
vote
1 answer

Autofac 2.6.1 AOP Interception

Folks, Has anyone successfully used AOP Interception with recent versions of Autofac. Most earlier examples I can find of Interception rely on AutofacContrib.DynamicProxy2 which now seems out of date. Thanks Michael
mikelus
  • 927
  • 11
  • 25
1
vote
1 answer

Unity Interception - Custom Interception Behaviour

I'm using a custom interception behaviour to filter records (filter is based upon who the current user is) however I'm having some difficulty (this is the body of the interceptors Invoke method) var companies = methodReturn.ReturnValue as…
David
  • 3,519
  • 1
  • 24
  • 30
1
vote
1 answer

When using Unity RegisterType with a name the Interceptor doesn't work

container.RegisterType("MyType"); container.AddNewExtension() .Configure() .SetInterceptorFor(new InterfaceInterceptor()); When I Resolve my Type with a name,the…
Dozer
  • 5,025
  • 11
  • 36
  • 52
0
votes
0 answers

Can keyboard binary inputs mimic Xbox analog sticks by using key press "rates" to approximate tilt? (I'm using Keyboardsplitter Github project to try)

I'm currently focused on addressing the X-axis aspect of the left thumbstick emulation for an Xbox controller using a keyboard. I've come across a GitHub project that offers the capability to mimic an Xbox controller's functionality and translate…
0
votes
0 answers

interceptor concept for SqsListener

I'm trying to do some basic actions once I'm getting a message from the queue - for example - setting the thread name. This set of methods will be the same for all of the queue listeners. it is similar to the preHandle() interceptor concept for REST…
0
votes
0 answers

Squid cache peer and HTTP Connect with SSL Interception

I need to configure Squid 4 with SSL Interception and a upstream cache peer in non-transparent proxy mode. My upstream proxy (PX proxy) does not require authentication. I have this line in squid.conf to enable use of the upstream proxy: cache_peer…
shocko
  • 1
  • 1
0
votes
1 answer

Webpage does not load while intercepting with Burp

Can someone explain to me why I can not access a webpage while intercepting with BurpSuite? When turning off the interception everything works fine and I can see the traffic in the http history section. But when turning interception on, the webpages…
IT-Sec
  • 1
  • 1
0
votes
0 answers

playwright : Unable to intercept the network after clicking on the element

How to crawl initiated web requests after clicking on an element Usually catching network requests def on_request(request): print('--------start---------') print(request.url) print(request.post_data) …
heishen
  • 1
  • 2
0
votes
0 answers

Is it possible to log traffic (responses in particular) on a domain using javascript?

Is it possible to log HTTP responses on a domain using javascript? I know this is possible using the developer console, but I'm looking for a way to log the incoming traffic on a webpage with js only
Shungite
  • 1
  • 2
0
votes
0 answers

javascript - Intercept and modify XHR response in chrome plugin

I'm writing a plugin that will intercept all the requests and responses and will extract data and if needed also modify the response. Below is the code I'm using to intercept the request, but it seems I can only read the response and not modify it.…