A programming interface for intercepting input device communication.
Questions tagged [intercept]
461 questions
0
votes
2 answers
Java program to intercept and encrypt traffic?
I can't find a definite answer on this so I figured I'd ask.
How would I create a Java program that would intercept and encrypt (preferably with AES) all internet traffic leaving the computer? I think the biggest issue would be catching and…

benofthejamin
- 1
- 1
0
votes
1 answer
Intercept YouTube search
What I want is to give user the ability to run my application instead of default YouTube one when any application requests YouTube search. I've tried to play with intent-filter, but with no success. Intent looks like this (from DDMS): Starting:…

aplavin
- 2,199
- 5
- 32
- 53
0
votes
2 answers
The "From" tag of a sms sent via tmomail.net
It appears the true "From" tag of a message sent from an email service ex. 7135192435@tmomail.net has a diffrent "From" tag then what the message details reveal once the message is recieved through SMS. I want to be able to recieve SMS message via…

Ccorock
- 892
- 12
- 37
0
votes
1 answer
Spring security intercept-url root and login
i want to secure everything except the root.. my security looks like this:

andergraund
- 1
- 3
0
votes
2 answers
Is there a way to intercept all http, https traffic
I have used a lot of parent control software but none of them is perfect. I am thinking to write my own. I want to use either C++ or java or combination of two. My main issue is how to capture all traffic originating from browser.
I want to do it in…

user1328400
- 1
- 1
-1
votes
1 answer
Intercept and transform key signals to a process in C++ or any other language
I want to intercept Russian keys in a specific application and send it something else. I don't really know the steps required to achieve it.
Is there a way to write an app in C++ that captures key presses and sends different ones to a specific…

user218046
- 623
- 6
- 20
-1
votes
2 answers
How can I intercept the HTTPS response in the client side?
Let say, I make a call to a HTTPS server. THe server send me back http response. Is there a way I can change the http response in the client side? (i.e. any javascript..etc)
Thanks.
--- UPDATE ----
Well, for HTTP request, let say a javascript…

murvinlai
- 48,919
- 52
- 129
- 177
-1
votes
1 answer
Alternatives to "private" helper methods in Java Spring Boot application
I have a concrete class we can call ServiceImpl who implements an interface called Service. I am using Spring AOP/Aspect-J to log the method execution times, which currently works just fine on the public method in that ServiceImpl class (which makes…

ennth
- 1,698
- 5
- 31
- 63
-1
votes
1 answer
Intercept whole class with Java standard features
I want to intercept a whole class with java standard features, because i am not allowed to add new dependencies to the project (websphere 85).
I want to call a function, which does multiple api calls (swagger generated) for example myapi.bla(),…

user117788
- 1
- 1
-1
votes
2 answers
How can I intercept all network calls coming out of my C app?
I'm working on a large, legacy project and for some complicated reasons, I want to see all the network requests coming out. I tried hooking socket(1), but it doesn't seem to catch everything. I'm doing this for Apple devices (UNIX-y, with both BSD…

meisel
- 2,151
- 2
- 21
- 38
-1
votes
1 answer
Calculate Y-axis value by giving X-value in X&Y ranges
I am trying to come up with formula which would calculate Item price based on quantity purchased in linear regression.
I would like to set the min and max for X&Y axis(ranges) and have a formula which automatically would calculate the second…

Guntar
- 473
- 8
- 23
-1
votes
1 answer
Interpreting categorical variable when fixed effect model in 'plm' has no intercept
I run my panel regression using 'plm' command with fixed effect 'within' option.
The dependent variable is numerical while all the independent variables are either categorical or binary except cgi, eui, sjump and rv.
The three binary variables cc,…

Eric
- 528
- 1
- 8
- 26
-1
votes
1 answer
How to do conditional touch interception?
I have a RecyclerView what fills my main activity. It works fine, however, sometimes a view (let's call this View2) appear at the bottom of the activity, so the RecyclerView remains visible, but the appearing View2 overlaps the bottom of the list.…

Ukubu
- 810
- 1
- 6
- 18
-1
votes
1 answer
Length of the intercept from intersection of a line with a cylinder (ring)
I have some sources with coordinates (xn, yn, zn) w.r.t a center C of a ring and unit vectors (ns_ux, ns_uy, ns_uz) along my line of sight. I want to calculate whether these sources pass through a cylinder of inner and outer radius 9.5 and 10.5…

akaur
- 389
- 1
- 6
- 22
-1
votes
1 answer
Can i stop the malicious reading the class files via "java.io" function,with NATIVE code(tool)?
we'd defend against the code crackers who can operate on the whole operation system who may read the encoded class-file via "java.io" and save the copy
we'd protect java-based application's intellectual property
this requirement was raised by…

euse
- 1
- 3