From a6cb129319b5716e76d5c4d5a56353eb3c50b548 Mon Sep 17 00:00:00 2001 From: mjfernez Date: Tue, 20 Apr 2021 19:22:21 -0400 Subject: Reorganized and added more presentations Created a jjay-d4cs folder to distinguish from older presentations which I can't find atm. Also added pentest and forensic example reports Also re-licensed to public domain --- .../SHA_presentation/FCM741paper-final-draft.pdf | Bin 0 -> 749092 bytes jjay-d4cs/SHA_presentation/README.md | 5 +++ .../SHA_presentation/honeynet-presentation.odp | Bin 0 -> 1287647 bytes jjay-d4cs/SHA_presentation/honeypot.odp | Bin 0 -> 4159797 bytes jjay-d4cs/SHA_presentation/keccak.odp | Bin 0 -> 434792 bytes jjay-d4cs/SHA_presentation/notes-on-keccak-img.txt | 5 +++ jjay-d4cs/cryptocurrency_presentation/README.md | 3 ++ .../investigation tools/blockchain links | 13 +++++++ .../cryptocurrency_presentation/misc/misc links | 40 +++++++++++++++++++ .../presentation/blockpresentation.odp | Bin 0 -> 4274791 bytes .../presentation/blockpresentation.pdf | Bin 0 -> 6161977 bytes .../presentation/blockpresentation.pptx | Bin 0 -> 4251548 bytes .../presentation/ppt.pdf | Bin 0 -> 922169 bytes .../presentation/ppt.pptx | Bin 0 -> 1783402 bytes .../cryptocurrency_presentation/readings/links | 43 +++++++++++++++++++++ .../FCM753forensics-final-report.pdf | Bin 0 -> 518241 bytes ...nets_Implemented_in_Virtual_NetworksMFernez.pdf | Bin 0 -> 385480 bytes .../forensic_reports/babbys_first_pentest.pdf | Bin 0 -> 581009 bytes jjay-d4cs/forensic_reports/honeynetpaper.pdf | Bin 0 -> 308903 bytes 19 files changed, 109 insertions(+) create mode 100755 jjay-d4cs/SHA_presentation/FCM741paper-final-draft.pdf create mode 100644 jjay-d4cs/SHA_presentation/README.md create mode 100644 jjay-d4cs/SHA_presentation/honeynet-presentation.odp create mode 100644 jjay-d4cs/SHA_presentation/honeypot.odp create mode 100644 jjay-d4cs/SHA_presentation/keccak.odp create mode 100644 jjay-d4cs/SHA_presentation/notes-on-keccak-img.txt create mode 100644 jjay-d4cs/cryptocurrency_presentation/README.md create mode 100644 jjay-d4cs/cryptocurrency_presentation/investigation tools/blockchain links create mode 100644 jjay-d4cs/cryptocurrency_presentation/misc/misc links create mode 100644 jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.odp create mode 100644 jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.pdf create mode 100644 jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.pptx create mode 100644 jjay-d4cs/cryptocurrency_presentation/presentation/ppt.pdf create mode 100644 jjay-d4cs/cryptocurrency_presentation/presentation/ppt.pptx create mode 100644 jjay-d4cs/cryptocurrency_presentation/readings/links create mode 100755 jjay-d4cs/forensic_reports/FCM753forensics-final-report.pdf create mode 100755 jjay-d4cs/forensic_reports/The_Past_Present_and_Future_of_Honeynets_Implemented_in_Virtual_NetworksMFernez.pdf create mode 100755 jjay-d4cs/forensic_reports/babbys_first_pentest.pdf create mode 100755 jjay-d4cs/forensic_reports/honeynetpaper.pdf (limited to 'jjay-d4cs') diff --git a/jjay-d4cs/SHA_presentation/FCM741paper-final-draft.pdf b/jjay-d4cs/SHA_presentation/FCM741paper-final-draft.pdf new file mode 100755 index 0000000..375d2c6 Binary files /dev/null and b/jjay-d4cs/SHA_presentation/FCM741paper-final-draft.pdf differ diff --git a/jjay-d4cs/SHA_presentation/README.md b/jjay-d4cs/SHA_presentation/README.md new file mode 100644 index 0000000..670ea55 --- /dev/null +++ b/jjay-d4cs/SHA_presentation/README.md @@ -0,0 +1,5 @@ +Presentations from my 2018 classes + +The cryptography papers and presentations on SHA were +co-authored by Wendyam Ouedago (forgive me, Wendyam, I can't +remeber how to spell your last name!) and Ivan Lugo \ No newline at end of file diff --git a/jjay-d4cs/SHA_presentation/honeynet-presentation.odp b/jjay-d4cs/SHA_presentation/honeynet-presentation.odp new file mode 100644 index 0000000..00f7ab9 Binary files /dev/null and b/jjay-d4cs/SHA_presentation/honeynet-presentation.odp differ diff --git a/jjay-d4cs/SHA_presentation/honeypot.odp b/jjay-d4cs/SHA_presentation/honeypot.odp new file mode 100644 index 0000000..7abe7d5 Binary files /dev/null and b/jjay-d4cs/SHA_presentation/honeypot.odp differ diff --git a/jjay-d4cs/SHA_presentation/keccak.odp b/jjay-d4cs/SHA_presentation/keccak.odp new file mode 100644 index 0000000..6cd2ab2 Binary files /dev/null and b/jjay-d4cs/SHA_presentation/keccak.odp differ diff --git a/jjay-d4cs/SHA_presentation/notes-on-keccak-img.txt b/jjay-d4cs/SHA_presentation/notes-on-keccak-img.txt new file mode 100644 index 0000000..9dbfb6a --- /dev/null +++ b/jjay-d4cs/SHA_presentation/notes-on-keccak-img.txt @@ -0,0 +1,5 @@ +Input is padded by padding function +This is split into chunks of r bits +Each of these is fed into the sponge function +In the "absorbing phase" bits are XORed with the first 1088 bits of 1600 bits of zeros and scrambled by the f function for 24 rounds +The result is "squeezed out" by taking out the first r bits of the absorbing phase output and further truncated to 256 bits diff --git a/jjay-d4cs/cryptocurrency_presentation/README.md b/jjay-d4cs/cryptocurrency_presentation/README.md new file mode 100644 index 0000000..6b79462 --- /dev/null +++ b/jjay-d4cs/cryptocurrency_presentation/README.md @@ -0,0 +1,3 @@ +# Crypto_presentation + +A presenation and lecture on cryptocurrencies and blockchain for John Jay FCM 740 Data Communications and Forensic Security diff --git a/jjay-d4cs/cryptocurrency_presentation/investigation tools/blockchain links b/jjay-d4cs/cryptocurrency_presentation/investigation tools/blockchain links new file mode 100644 index 0000000..298ed28 --- /dev/null +++ b/jjay-d4cs/cryptocurrency_presentation/investigation tools/blockchain links @@ -0,0 +1,13 @@ +Overview of blockchains by cryptocurrency: + +Bitcoin-https://blockchain.info/ + https://blockexplorer.com/ + +Ethereum-https://etherscan.io/ + https://www.etherchain.org/ + +Zcash-https://zcash.blockexplorer.com/ + +Monero-(not very helpful by design) https://monerohash.com/explorer/ + +Dogecoin-https://dogechain.info/chain/Dogecoin diff --git a/jjay-d4cs/cryptocurrency_presentation/misc/misc links b/jjay-d4cs/cryptocurrency_presentation/misc/misc links new file mode 100644 index 0000000..5522733 --- /dev/null +++ b/jjay-d4cs/cryptocurrency_presentation/misc/misc links @@ -0,0 +1,40 @@ +Miscellaneous articles + +Famous Bitcoin addresses +http://www.theopenledger.com/9-most-famous-bitcoin-addresses/ + +An article by the founder of DogeCoin on cryptocurrency (opinion) +https://motherboard.vice.com/en_us/article/9kng57/dogecoin-my-joke-cryptocurrency-hit-2-billion-jackson-palmer-opinion + +Original Monero White Paper + +https://cryptonote.org/whitepaper.pdf + +Review of Monero White Paper + +https://downloads.getmonero.org/whitepaper_review.pdf + + +Article on FBI investigation Process + +https://www.coindesk.com/catch-bitcoin-ransomer-inside-fbis-cyber-investigation-process/ + +Science Magazine - Why criminals can't hide behind Bitcoin + +http://www.sciencemag.org/news/2016/03/why-criminals-cant-hide-behind-bitcoin + +Wired - History of Bitcoin + +https://www.wired.com/2011/11/mf_bitcoin/ + + +TED Talks + +How the US government is using blockchain to fight fraud | Kathryn Haun | TEDxSanFrancisco +-On the investigation into Ross Ulbricht and rogue federal agents + +https://www.youtube.com/watch?v=507wn9VcSAE + + +My Ether wallet if you want to give me free money: +0xdD9e26F5c9EdD222650B720B228fb8D7116Ad5D1 diff --git a/jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.odp b/jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.odp new file mode 100644 index 0000000..b5c9a16 Binary files /dev/null and b/jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.odp differ diff --git a/jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.pdf b/jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.pdf new file mode 100644 index 0000000..bf2084c Binary files /dev/null and b/jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.pdf differ diff --git a/jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.pptx b/jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.pptx new file mode 100644 index 0000000..0eb49f1 Binary files /dev/null and b/jjay-d4cs/cryptocurrency_presentation/presentation/blockpresentation.pptx differ diff --git a/jjay-d4cs/cryptocurrency_presentation/presentation/ppt.pdf b/jjay-d4cs/cryptocurrency_presentation/presentation/ppt.pdf new file mode 100644 index 0000000..082de53 Binary files /dev/null and b/jjay-d4cs/cryptocurrency_presentation/presentation/ppt.pdf differ diff --git a/jjay-d4cs/cryptocurrency_presentation/presentation/ppt.pptx b/jjay-d4cs/cryptocurrency_presentation/presentation/ppt.pptx new file mode 100644 index 0000000..b059415 Binary files /dev/null and b/jjay-d4cs/cryptocurrency_presentation/presentation/ppt.pptx differ diff --git a/jjay-d4cs/cryptocurrency_presentation/readings/links b/jjay-d4cs/cryptocurrency_presentation/readings/links new file mode 100644 index 0000000..9dc5629 --- /dev/null +++ b/jjay-d4cs/cryptocurrency_presentation/readings/links @@ -0,0 +1,43 @@ +Papers on Blockchain and Security + +Original Bitcoin whitepaper +https://bitcoin.org/bitcoin.pdf + +View of Blockchain from a textbook Cybersecurity context (Confidentiality, Integrity, Availabilty) +https://www2.deloitte.com/content/dam/Deloitte/ie/Documents/Technology +/IE_C_BlockchainandCyberPOV_0417.pdf + +Blockchain in Detail from UC Berkley + +http://scet.berkeley.edu/wp-content/uploads/BlockchainPaper.pdf + +Sans Institute paper describing a forensics process in detail (you can just skim this one) + +https://www.sans.org/reading-room/whitepapers/forensics/forensic-bitcoin-cryptocurrency-36437 + + +Articles + +IBM on the difference between blockchain and the currencies that run on top of it + +https://www.ibm.com/blogs/blockchain/2017/05/the-difference-between-bitcoin-and-blockchain-for-business/ + +Bitcoin under the hood (covers some of the same details as the Berkley paper) + +http://www.imponderablethings.com/2013/07/how-bitcoin-works-under-hood.html + + + +Proof of Stake vs. Proof of Work: Developments in the use of EOS and IPFS for File-Sharing + +https://medium.com/@robertgreenfieldiv/vulnerability-proof-of-work-vs-proof-of-stake-f0c44807d18c + +https://steemit.com/eos/@trogdor/eos-vs-ethereum-for-dummies + +https://bitcoinexchangeguide.com/ethereum-vs-eos/ + +https://captainaltcoin.com/ethereum-vs-eos/ + +https://medium.com/@mycoralhealth/learn-to-securely-share-files-on-the-blockchain-with-ipfs-219ee47df54c + +https://www.coindesk.com/ethereum-meets-zcash-why-ipfs-plans-a-multi-blockchain-browser/ diff --git a/jjay-d4cs/forensic_reports/FCM753forensics-final-report.pdf b/jjay-d4cs/forensic_reports/FCM753forensics-final-report.pdf new file mode 100755 index 0000000..a8c0b5d Binary files /dev/null and b/jjay-d4cs/forensic_reports/FCM753forensics-final-report.pdf differ diff --git a/jjay-d4cs/forensic_reports/The_Past_Present_and_Future_of_Honeynets_Implemented_in_Virtual_NetworksMFernez.pdf b/jjay-d4cs/forensic_reports/The_Past_Present_and_Future_of_Honeynets_Implemented_in_Virtual_NetworksMFernez.pdf new file mode 100755 index 0000000..e49c515 Binary files /dev/null and b/jjay-d4cs/forensic_reports/The_Past_Present_and_Future_of_Honeynets_Implemented_in_Virtual_NetworksMFernez.pdf differ diff --git a/jjay-d4cs/forensic_reports/babbys_first_pentest.pdf b/jjay-d4cs/forensic_reports/babbys_first_pentest.pdf new file mode 100755 index 0000000..b5f1256 Binary files /dev/null and b/jjay-d4cs/forensic_reports/babbys_first_pentest.pdf differ diff --git a/jjay-d4cs/forensic_reports/honeynetpaper.pdf b/jjay-d4cs/forensic_reports/honeynetpaper.pdf new file mode 100755 index 0000000..9251e3f Binary files /dev/null and b/jjay-d4cs/forensic_reports/honeynetpaper.pdf differ -- cgit v1.2.3