Tagged Questions
The abuse tag has no wiki summary.
7
votes
6answers
102 views
Is taking advantage of optional parameter edge cases to force implementations of ToString via an interface abuse of the language?
I have an interface IKey which I want to have a method which will return the key as a string. We looked at having a method like this:
String GetAsString();
which would return the string ...
7
votes
8answers
426 views
Improper Use of Version Control
I have started working recently in driver verification for a hardware company. The work is writing short software tests that verify known issues, bugs and possible faults anyone can think of.
Now, in ...
6
votes
3answers
566 views
What is the worst abuse you've seen of LINQ syntax?
On a recent Dot Net Rocks podcast, Jon Skeet mentioned possible abuses of LINQ syntax. What examples have people seen where crazy things are being done with LINQ?
4
votes
1answer
69 views
Get a COM object to throw an exception on any result except S_OK (0) in C#
I'm currently working on an upgrade to a project that extensively uses COM / MFC / (who knows how many other technologies). As part of the upgrade, we're trying to move as much functionality as we ...
4
votes
3answers
144 views
Is it possible to have a tableless select with multiple rows?
A SELECT without a FROM clause gets us a multiple columns without querying a table:
SELECT 17+23, REPLACE('bannanna', 'nn', 'n'), RAND(), CURRENT_TIMESTAMP;
How can we write a query that results ...
3
votes
1answer
98 views
What's the best service to use for filtering out spam/abuse/malware links for a link shortening webapp?
I have two services - Lincr and LinkBunch. Lincr is a plain jane URL shortening service, while LinkBunch lets you shorten multiple links into one link. I've had too much spam posted into the services, ...
3
votes
4answers
208 views
How can the leecher do this?
The original website: http://www.vnedoc.com
The leecher's website: http://www.vipa1.com
As you can see they are completely the same except for the author (sangsang -> trangxinh) and the logo (v.v.v). ...
3
votes
1answer
310 views
Old-school Pascal question about how to cast variant record function parameters properly
I am trying to create a function with a variant record-type parameter that allows inline-casting or assignment, as such:
type rectype = ( VT_INT, VT_CHAR, VT_BOOL );
rec = record
case t : ...
3
votes
3answers
119 views
Detecting abuse for post rating system
I am using a wordpress plugin called "GD Star Rating" to allow my users to vote on stories that I post to one of my websites. http://everydayfiction.com/ Recently we have been having a lot of abuse of ...
3
votes
3answers
352 views
Why doesn't function name concatenation work in PHP?
<?php
$a = 'ec';
$b = 'ho';
$c = $a.$b;
echo('Huh?');
$c('Hello, PHP!');
?>
yields
Huh?
Fatal error: Call to undefined function echo() in <...>/php.php on line 11
Why?
2
votes
2answers
95 views
remote image embeds: how to handle ones that require authentication?
I manage a large and active forum and we're being plagued by a very serious problem. We allow users to embed remote images, much like how stackoverflow handles image (imgur) however we don't have a ...
2
votes
2answers
172 views
Best practice to avoid “add friend” abuse
I have a PHP / CodeIgniter site with basic social functionality which obviously includes an "Add friend" link. When clicking this link an AJAX call is made in the background, which adds the user ...
2
votes
5answers
306 views
How would I protect an API from abuse?
Hey everyone, I run an image hosting website and I'm designing an API for it. My concern is that I don't want anyone to be able to do something like:
while(true) {
Upload();
}
and spam/DoS the ...
2
votes
2answers
170 views
How do you prevent/handle abuse of your software?
I'm developing a small freeware application which can display text in a special structure. (bible texts, to be specific)
Lately I discovered that some users use my application to view texts ...
1
vote
3answers
67 views
Dynamically blocking IPs in high-traffic site: best strategy?
I've got some bad bots targeting my website and I need to dynamically handle the IP addresses from which those bots come. It's a pretty high-traffic site, we get a couple of millions of pageviews per ...
1
vote
1answer
42 views
Detecting excessive downloading of S3 public files?
I need to make our video files public in order to have them stream through a media server.
I am wondering if there is any mechanism to detect abuse of the system - ie if anyone is downloading file(s) ...
1
vote
1answer
516 views
Is it possible to limit the bandwidth used by Amazon S3?
Is it possible to limit the bandwidth used by Amazon S3 or CloudFront?
So, for example, when the limit is 100 gb, every file after that is being denied?
If so, can you also limit the bandwidth at ...
1
vote
1answer
92 views
Detecting login credentials abuse
Greetings.
I am the webmaster for a small, growing industrial association. Soon, I will have to implement a restricted, members-only section for the website.
The problem is that our organization ...