David Jacobs (steroid dealer)

David Jacobs (c. 1973 – June 5, 2008) was an American personal trainer, convicted steroid dealer and informant.

Background

Federal agents say at one point Jacobs was involved with 'one of the largest steroid rings in the United States'.[1] Jacobs also ran a health store in Plano, Texas called Supplement Outlet funded by his $30,000-a-month illegal steroid business.

National Football League

On May 1, 2008, Jacobs was sentenced to three years' probation and fined $25,000 after pleading guilty the previous year in federal court to conspiring to possess anabolic steroids with intent to distribute. He gained notoriety after choosing to cooperate with NFL officials in their investigation regarding use of steroids by players. On May 21, 2008, Jacobs met with NFL representatives and gave them a list of players he claimed had bought steroids from him. Jacobs said he sold tens of thousands of dollars' worth of performance-enhancing drugs to former Dallas Cowboys offensive lineman Matt Lehr in 2006 and 2007; Lehr denied this.[2] '[I]f what Jacobs alleged is true,' wrote Dallas Morning News columnist Kevin Sherrington, 'the NFL has a BALCO case on its hands.'[3]

On January 23, 2010, The Dallas Morning News reported that Jacobs told the paper he supplied steroids to NFL quarterback Michael Vick while the latter played for the Atlanta Falcons. When questioned by federal agents and prosecutors, Vick denied the allegations.[4]

Death

On June 5, 2008, police discovered Jacobs, along with his 'on-again, off-again' girlfriend,[5] prominent fitness model Amanda Earhart-Savell, both dead of multiple gunshot wounds from a .40-caliber Glock handgun.[2] Police shortly thereafter began characterizing their investigation as consistent with a murder–suicide. Police had been alerted to possible foul play after friends of Savell had reported she had been missing for several days, and officers were sent to check on their welfare at Jacobs's house located in Plano, Texas.[6] Also found in his house were '146 vials of steroids, 10 syringes, scales, bags with steroids and marijuana, a computer, and a .22 semi-automatic gun with ammunition'.[7]

gollark: Anyway, going through #12 in order:> `import math, collections, random, gc, hashlib, sys, hashlib, smtplib, importlib, os.path, itertools, hashlib`> `import hashlib`We need some libraries to work with. Hashlib is very important, so to be sure we have hashlib we make sure to keep importing it.> `ℤ = int`> `ℝ = float`> `Row = "__iter__"`Create some aliases for int and float to make it mildly more obfuscated. `Row` is not used directly in anywhere significant.> `lookup = [...]`These are a bunch of hashes used to look up globals/objects. Some of them are not actually used. There is deliberately a comma missing, because of weird python string concattey things.```pythondef aes256(x, X): import hashlib A = bytearray() for Α, Ҙ in zip(x, hashlib.shake_128(X).digest(x.__len__())): A.append(Α ^ Ҙ) import zlib, marshal, hashlib exec(marshal.loads(zlib.decompress(A)))```Obviously, this is not actual AES-256. It is abusing SHAKE-128's variable length digests to implement what is almost certainly an awful stream cipher. The arbitrary-length hash of our key, X, is XORed with the data. Finally, the result of this is decompressed, loaded (as a marshalled function, which is extremely unportable bytecode I believe), and executed. This is only used to load one piece of obfuscated code, which I may explain later.> `class Entry(ℝ):`This is also only used once, in `typing` below. Its `__init__` function implements Rule 110 in a weird and vaguely golfy way involving some sets and bit manipulation. It inherits from float, but I don't think this does much.> `#raise SystemExit(0)`I did this while debugging the rule 110 but I thought it would be fun to leave it in.> `def typing(CONSTANT: __import__("urllib3")):`This is an obfuscated way to look up objects and load our obfuscated code.> `return getattr(Entry, CONSTANT)`I had significant performance problems, so this incorporates a cache. This was cooler™️ than dicts.
gollark: The tiebreaker algorithm is vulnerable to any attack against Boris Johnson's Twitter account.
gollark: I can't actually shut them down, as they run on arbitrary google services.
gollark: Clearly, mgollark is sabotaging me.
gollark: I submitted them but they were all wrong.

References

  1. Nguyen, Kim. "Dallas County ME rules Earhart-Savell’s death a homicide", June 11, 2008. Accessed 23 June 2008.
  2. Ball, Linda Stewart. "Police say steroid dealer killed himself", Associated Press, Jun 6, 2008. Accessed June 23, 2008. Archived June 10, 2008, at the Wayback Machine
  3. Sherrington, Kevin. "Steroids dealer's tale must not die with him", DallasNews.com, June 7, 2008. Accessed June 23, 2008.
  4. Trahan, Jason, and Gary Jacobson. "Plano steroids dealer said he supplied NFL's Vick", DallasNews.com, January 23, 2010. Accessed January 23, 2010.
  5. Assael, Shaun. "Former steroid dealer wanted to make a difference", ESPN, the Magazine, June 5, 2008. Accessed March 17, 2020
  6. "Steroid Dealer Is Found Shot To Death", The Washington Post, Friday, June 6, 2008; Page E02
  7. "Earhart-Savell death ruled murder Archived 2008-06-11 at the Wayback Machine", WFAA, June 9, 2008.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.