Earlier quoted context omitted.
The matching engine and the ring of servers around it are not accessible via internet. You can only connect to them if you have a server collocated in Carteret, and even then the NASDAQ machines only expose the ports relevant to order entry and feed data. They could have hacked a customer (say, citigroup) and entered that way, but all they really could do is incur losses for the customer.
> but all they really could do is incur losses for the customer. If they could inject "incorrect" trades, could they put themselves on the other side of those trades via normal means and so benefit from such losses?
“NASDAQ is owned.” Five men charged in largest financial hack ever
71–80 of 143 posts
Re: “NASDAQ is owned.” Five men charged in largest financial hack ever
#72Is anyone aware of a) whether other security auditors or services could have identified these vulnerabilities and b) what it takes to sell to these exploited firms? My understanding of security is fairly small, but it seems to me that there's a market to be had here ... If the expertise exists to dramatically reduce exposure, it's a question of sales or ease of use. If the expertise doesn't exist yet, someone smart m…
There is a market here.
I can't remember exactly, but he told me what they bill him out for and it sounded like NY senior attorney level rates.
He travels overseas regularly on longer term assignments. I told him he should go out on his own but he's not entrepreneurial. He also said that a few of the "sales guys" at the firm already did that with some of the other security people last year.
Re: “NASDAQ is owned.” Five men charged in largest financial hack ever
#73Earlier quoted context omitted.
In Israel, military service is compulsory for all men when they are 18 years old. The best hackers in the country are detected and lured into cyberwarfare positions where they need to be the best cyber attackers in the world for 3 years. You bet that these guys are among the best in the world.
The IDF's ICT unit also has a very large budget (it's actually the only unit with an increasing budget despite a 2 billion overall budget drop), and with access to all kinds of technologies that only a government can afford. When the engineers get out of there, they know things that few people know about.
Re: “NASDAQ is owned.” Five men charged in largest financial hack ever
#74Re: “NASDAQ is owned.” Five men charged in largest financial hack ever
#75Re: “NASDAQ is owned.” Five men charged in largest financial hack ever
#76Earlier quoted context omitted.
This would be a perfect example of why SQL injections are so common: toolchains aren't secure (or even securish) by default -- and it isn't clear that this is the case.
Anyone not using prepared statements in 2013 is just being stupid - there is no reason to ever be vulnerable to a SQL injection, barring a bug in the database or driver you are using. It's totally unacceptable.
Everybody else should read the [OWASP SQL Injection cheat sheet](https://www.owasp.org/index.php/SQL_Injection_Prevention_Che...) before giving advice. ;-)
Re: “NASDAQ is owned.” Five men charged in largest financial hack ever
#77Doesn't NASDAQ have some responsibility for this hack? Doesn't NASDAQ have serious security reputation issues now?
Blaming the victim? Nice.
Re: “NASDAQ is owned.” Five men charged in largest financial hack ever
#78Earlier quoted context omitted.
I've always figured (at least for former soviet states) that it's a combination of: + a rigorous STEM curriculum + limited conventional job prospects + a social/business environment in which exploit-selling is a respectable profession
Can you tell why you know that? Is that knowledge from personal experience?
Re: “NASDAQ is owned.” Five men charged in largest financial hack ever
#79I honestly believe eastern Europe and possibly Israel are years ahead of the United States when it comes to the Internet - not with regard to adaptivity, but with regard to raw hacking ability. I have yet to understand why and I only have anecdotal evidence (including living in Ukraine), but there's something to those places that make them breed hackers.
In Israel, military service is compulsory for all men when they are 18 years old. The best hackers in the country are detected and lured into cyberwarfare positions where they need to be the best cyber attackers in the world for 3 years. You bet that these guys are among the best in the world.
Not correct. All men (and women) except those in a Yeshiva (religious school). As I understated it, they can post-pone their enlistment indefinitely.
I also understand this is a touchy subject in Israel right now.
Re: “NASDAQ is owned.” Five men charged in largest financial hack ever
#80the idea that NASDAQ might've been hacked using an SQL injection is pretty scary, as it's a pretty trivial attack to protect against in most cases (mysql_real_escape_string?) - is security in stock exchanges really so lax?
mysql_real_escape_string isn't secure. AT ALL.
"SELECT ... WHERE `field_name` = '" . mysql_real_escape_string($string_value) . "'";