Posts

Delete all hidden Mac junk files in Windows (Like .DS_STORE)

Image
If you use a Mac and Windows together, you’re likely to end up with a bunch of hidden .DS_STORE files all over your Windows drives. You can easily search and destroy them all using this command: (Open the command line first of course. You can do this by mashing Win + R, then typing “cmd”. Or just type “cmd” in the Start Menu search box.) del /s /q /f /a .DS_STORE That will find every instance of this Mac resource file and delete it. Good times. But wait there’s more. In addition to DS_STORE, OSX will also put a bunch of other junk every where starting with “._”. Kill those like this. del /s /q /f /a ._.* (Why not use “ ._* '” instead? Apparently, you can sweep up legit files from other things such as Chrome by doing that. Thanks commenters.) Important note! This will only search inside the folder you’re in, as well as every folder below that. So, if you wanted to search and clean an entire drive, make sure you’re in the root folder. Get there with this:cd \ You could

Q&A with Brian O’Kelley (Appnexus)

Image
We often talk about bidding and we think of a single ad space. What do you think about multi-bids ? Is there a way to implement it today ? How can we improve things ? There is two issues here : one is multi-bids, the other is multi-tags. From the very beginning, we built AppNexus to support both multi-tags and mutli-bids. We always encouraged the industry to work this way. Even at Right Media, I was pushing at this internally. The reason why it is not doable yet is that it is complicated to implement and most actors have not put the effort to get to that level. What would be the advantage for the industry to implement it ? Quantity : every time you do not multi-bid, you are losing traffic. You are losing revenue. Inefficiency hurts everybody. Anything that make the system more efficient benefit to everyone. AppNexus has supported it for a long time but more people need to talk about it. How do you define AppNexus. Are you a DSP, a SSP, an adexchange ? It is hard to define f

Top 11 Web Applicatoin Penetration Testing Tools

Image
1. Arachni Arachni is a feature-full, modular, high-performance Ruby framework aimed towards helping penetration testers and administrators evaluate the security of web applications. Arachni is smart, it trains itself by learning from the HTTP responses it receives during the audit process. Unlike other scanners, Arachni takes into account the dynamic nature of web applications and can detect changes caused while travelling through the paths of a web application’s cyclomatic complexity. This way attack/input vectors that would otherwise be undetectable by non-humans are seamlessly handled by Arachni. Finally, Arachni yields great performance due to its asynchronous HTTP model (courtesy of Typhoeus). Thus, you’ll only be limited by the responsiveness of the server under audit and your available bandwidth. Note: Despite the fact that Arachni is mostly targeted towards web application security, it can easily be used for general purpose scraping, data-mining, etc with

Ways to Identify a PPC Network that will Protect You from Click Fraud

Image
Sometimes even the most reputable PPC search engines face the problem of fraudulent clicks. They put quite an effort into protecting their clients from click scam. Take Google, for example. About a month ago it acquired spider.io with the aim of improving efficiency of Google advertising. Spider.io is a quite successful fraud- fighting company: last year it discovered Chameleon – the botnet that caused 6.2 million advertising dollars to be wasted on bot clicks. Monthly. Advertisers are the ones who suffer the most in this case. As networks get their profit even with malicious publisher websites, some of them don’t want to invest their time into fighting against click fraud. So how can you recognize the network that actually cares? There are a few features that distinguish a quality network. A reliable network would apply third party fraud protection solutions (or it has its own technology to fight invalid clicks), and it would implement techniques like IP filtering and URL blockin

Click Fraud Botnet Defrauds Advertisers Up to $6 Million

Image
An advertising analytics company said it has discovered a botnet that generates upwards of US$6 million per month by generating bogus clicks on display advertisements. Data integration is often underestimated and poorly implemented, taking time and resources. Yet it Spider.io, based in the U.K., wrote that the botnet code, called Chameleon, has infected about 120,000 residential computers in the U.S. and perpetrates click fraud on 202 websites that collectively deliver 14 billion ad impressions. Chameleon is responsible for 9 billion of those impressions, Spider.io said. Click fraud cheats Web advertisers by making them pay for clicks on ads that are not legitimate, depriving them of customers and revenue. Spider.io said advertisers pay an average of $0.69 per one thousand impressions. Spider.io did not identify the publishers of the websites that the botnet targets. But online media buyers have been noticing inconsistencies for some time on websites showing display ads for

Best PPC Networks List

Image
 Choosing the right PPC network is very important task for your business or for your clients. But in these times there exist so many PPC networks and is really hard to choose the right one. Read through my biggest PPC networks list and choose the right network that will skyrocket your business and also your earnings. In my opinion choosing the right PPC network will determine if you will be successful with your campaigns or not, but how you can choose the right one if you know only 1 or 2 PPC networks ? Well I prepared huge or maybe biggest PPC networks list that you will find on the internet. I will list here all PPC networks for english based countries and english language, if you will have any PPC network that is not listed here, make sure that you will contact me or that you will add missed network into comments area. PPC Networks from the biggest to the smallest .. Google Adwords [ link ] Google Adwords is biggest PPC network avaible on the internet, it supports almost every la

How to Block Traffic from Any Sites Using .htaccess

Image
This will send all traffic seen as a referral from example.com to a 403/forbidden page . If your concern is for your own website (most people reading this), then you’ll want to edit the main .htaccess for your site. This would be in your /home/username/public_html/ directory (some hosts rename public_html to httpdocs, www, web, etc..). You may want to block traffic from particular sites that link to your site. You can perform HTTP referrer-based blocking using mod_rewrite. Suppose you would like to block (with a 403 Forbidden code) traffic referred by badguys.com. Add the lines to .htaccess: RewriteEngine on RewriteCond %{HTTP_REFERER} ^http://(www\.)?badguys\.com [NC] RewriteRule (.*) - [F] You can block multiple domains using multiple RewriteCond lines and the [OR] flag, as follows: RewriteEngine on RewriteCond %{HTTP_REFERER} ^http://(www\.)?badguys\.com [NC,OR] RewriteCond %{HTTP_REFERER} ^http://(www\.)?badreferrers\.com [NC] RewriteRule (.*) - [F] NB: Be sure to add [OR]