|
What is your suggested solution for the threat of website UI spoofing?
Started by Assaf Lavie on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
A real solution is a bit more complex (like maybe is identifying some difference between a request... .
So if, for example, eBay would let you spoof (that won't know your choice of color).
The same view of the website (one spoof - many victims).
|
|
Is spoofing a registration form to gain access to a website ethical? How about using a service like BugMeNot ?
Started by Jeffrey on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at superuser):
People have the right.
No, if you have to spoof it pretty much by definition it can't be ethical.
|
|
Is it possible to spoof a part of the standard Java API, by exporting your own bundle that replaces this API? Of course with the same interfaces.
Would it then be possible for other bundles, not to notice that actually they aren't using the java package...
Started by Falx on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Only catch is that if you specify a class in the 'java' package, the sun classloader will forbid it:
Exception in thread "main" java.lang.SecurityException: Prohibited package name: java.io at java.lang.ClassLoader.preDefineClass... .
In principle this is possible.
|
Ask your Facebook Friends
|
I don't want to know how... Just how complicated....
I'm thinking of securing a webservice or 2 based on the incoming client ipaddress of the caller. Is this in any way secure?
Surely if the IPaddress was being spoofed then the result would have to be...
Started by Rory Becker on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're trying....
The actual IP address they spoofed will.
Not that hard, just as easy as spoofing your ip address for any other communication http://en.wikipedia.org/wiki/IP_address_spoofing
But they aren't going to get the responses.
|
|
Is there any way to spoof the user agent on Safari on the iPhone?
So for example, you would create an application on the iPhone that has the embedded Safari browser, however any website the user visits with this browser wouldn't know you were on Safari...
Started by eagle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In this data request you can add a HTTPheader for User-Agent which will... .
By making your own data requests.
You would need to manually manage all requests.
It would require a bit of a work around to get it working .
Hi,
Yes I think you could change this.
|
|
I'm trying to spoof my Mac Address on a modified version of linux (Android). The main problem is that because it has been stripped down, the ifconfig command has been stripped out, and I only can use the 'ip' busybox command.
I've been trying to use
ip...
Started by GuyNoir on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
The first half (00:09:5B) of each MAC address is known... .
It is composed of six octets.
What is the format of a valid MAC address ?
A normal MAC address looks like this: 00:09:5B:EC:EE:F2 .
Only the letters A-F and numbers 0-9 are allowed in a MAC address .
|
|
This only needs to work on a single subnet and is not for malicious use.
I have a load testing tool written in Python that basically blasts HTTP requests at a URL. I need to run performance tests against an IP-based load balancer, so the requests must...
Started by Corey Goldberg on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If you spoof your originating IP address, you will never get past the synchronization stage and no HTTP.
|
|
SNL spoofs Stephen A. Smith
http://www.awfulannouncing.com/2012-...tstanding.html
Started by Deuce Bigalow on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at insidehoops):
:applause....
Smith
:lol :lol
Well done.
:roll: Re: SNL spoofs Stephen A.
Smith
Haha wow that was on point.
Re: SNL spoofs Stephen A.
|
|
I am trying to find a way to obtain the real ip addresse(s) for a domain name. I'm working on a router doing traffic shaping with the use of iptables and tc . I then need to setup iptables rules for marking packets coming from certain domains, using their...
Started by Mulot on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Theoretically it is still possible to spoof even "source port randomization", but it would take a LONG time.
|
|
A while ago I had a query that I ran quite a lot for one of my users. It was still being evolved and tweaked but eventually it stablised and ran quite quickly, so we created a stored procedure from it.
So far, so normal.
The stored procedure, though, ...
Started by Unsliced on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
In some instances SQL Server does a poor job at parameter... .
Yes, i think you mean parameter sniffing, which is a technique the SQL Server optimizer uses to try & figure out parameter values/ranges so it can choose the best execution plan for your query .
|