├── .gitignore ├── README.md ├── apis ├── auth_library │ ├── appscan-auth.py │ ├── feedly-auth.py │ ├── tenable_io-auth.py │ ├── tenable_securitycenter-auth.py │ ├── twitter-applicationonly-auth.py │ └── twitter-oauth-auth.py ├── feedly │ ├── feedly-config.json │ └── get-list.py ├── tenable │ ├── tenable-automate.py │ └── tenable-config.json └── twitter │ ├── twitter-config.json │ ├── twitter-follow-manager.py │ └── userlist.txt ├── jhu-code ├── Algorithms │ ├── interleaved │ │ ├── input.txt │ │ ├── interleaved.java │ │ └── readme.txt │ ├── medianofthree │ │ ├── MedianOfThree.java │ │ └── readme.txt │ └── twoarray │ │ ├── readme.txt │ │ ├── twoarray-input │ │ └── twoarray.java ├── ComputerOrg │ ├── LotteryJackpotOdds-msass.asm │ └── RomeToArabia.asm ├── Cryptology │ ├── ElGamalDecrypt.py │ ├── ElGamalSameK.py │ ├── autokey.py │ ├── des.py │ ├── diffiehellman.py │ ├── findephemeralkey.py │ ├── generatorz.py │ ├── merklehellman.py │ ├── moduloinversetester.py │ ├── problem1.py │ ├── rsaCommonModulusDecryption.py │ ├── rsadecrypt6-13.py │ ├── squareandmultiply.py │ ├── substitution-decrypter │ │ ├── ngramfinder.py │ │ └── substitutioncipher.py │ ├── vigenerehelper.py │ ├── vigneremod.py │ └── xeuclid.py ├── DataStructures │ ├── Hanoi.java │ ├── HuffmanET.java │ ├── PostFixEvaluator.java │ ├── PostFixEvaluator2.java │ └── Sorting │ │ ├── Generator.java │ │ ├── Heapsort.java │ │ ├── Quicksort.java │ │ ├── Reverser.java │ │ └── readme.txt └── RTOS │ └── Arduino │ ├── fan │ └── fan.ino │ ├── i2c.py │ ├── i2cscript.py │ ├── rawdata.ino │ └── rawdata.ino.ino │ ├── simpletest.py │ ├── sketch_feb09a │ └── sketch_feb09a.ino │ └── tempsensor │ └── tempsensor.ino ├── resources ├── IndieSec.csv ├── README.md ├── SecurityBookmarks.html ├── burpconfig-projectoptions.json ├── burpconfig-useroptions.json ├── indiesec │ ├── indiesec-batch-5-1-2024.csv │ ├── indiesec-completelist.csv │ └── readme.md ├── nessus-weapon-inventory ├── shellsharks-blogroll.opml ├── shellsharks-feedly-rss.opml ├── terminatorconfig ├── trike-actor-asset-action-matrix.xlsx └── trike-risk-calculator.xlsx ├── shellsharks ├── S3.py ├── YEAR-MONTH-DAY-draft-article-name.md └── tm-rsrc │ ├── attack-tree-extra.drawio │ ├── attack-tree.drawio │ ├── data-flow-diagram.drawio │ ├── diamond-model.drawio │ ├── id3.drawio │ ├── iddilatc.drawio │ ├── nist-threat-model-process-flow.drawio │ ├── octave-phases.drawio │ ├── owasp-threat-modeling-process.drawio │ ├── pasta-threat-model.drawio │ ├── qtmm-htmm-process-flow.drawio │ ├── security-cards.drawio │ ├── tara-assessment-workflow.drawio │ └── threatmodel.drawio └── storage ├── Vlc.zip └── video.ty+ /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .DS_Store 3 | secret* 4 | local* 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # assorted -------------------------------------------------------------------------------- /apis/auth_library/appscan-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/auth_library/appscan-auth.py -------------------------------------------------------------------------------- /apis/auth_library/feedly-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/auth_library/feedly-auth.py -------------------------------------------------------------------------------- /apis/auth_library/tenable_io-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/auth_library/tenable_io-auth.py -------------------------------------------------------------------------------- /apis/auth_library/tenable_securitycenter-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/auth_library/tenable_securitycenter-auth.py -------------------------------------------------------------------------------- /apis/auth_library/twitter-applicationonly-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/auth_library/twitter-applicationonly-auth.py -------------------------------------------------------------------------------- /apis/auth_library/twitter-oauth-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/auth_library/twitter-oauth-auth.py -------------------------------------------------------------------------------- /apis/feedly/feedly-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/feedly/feedly-config.json -------------------------------------------------------------------------------- /apis/feedly/get-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/feedly/get-list.py -------------------------------------------------------------------------------- /apis/tenable/tenable-automate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/tenable/tenable-automate.py -------------------------------------------------------------------------------- /apis/tenable/tenable-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/tenable/tenable-config.json -------------------------------------------------------------------------------- /apis/twitter/twitter-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/twitter/twitter-config.json -------------------------------------------------------------------------------- /apis/twitter/twitter-follow-manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/twitter/twitter-follow-manager.py -------------------------------------------------------------------------------- /apis/twitter/userlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/apis/twitter/userlist.txt -------------------------------------------------------------------------------- /jhu-code/Algorithms/interleaved/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Algorithms/interleaved/input.txt -------------------------------------------------------------------------------- /jhu-code/Algorithms/interleaved/interleaved.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Algorithms/interleaved/interleaved.java -------------------------------------------------------------------------------- /jhu-code/Algorithms/interleaved/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Algorithms/interleaved/readme.txt -------------------------------------------------------------------------------- /jhu-code/Algorithms/medianofthree/MedianOfThree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Algorithms/medianofthree/MedianOfThree.java -------------------------------------------------------------------------------- /jhu-code/Algorithms/medianofthree/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Algorithms/medianofthree/readme.txt -------------------------------------------------------------------------------- /jhu-code/Algorithms/twoarray/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Algorithms/twoarray/readme.txt -------------------------------------------------------------------------------- /jhu-code/Algorithms/twoarray/twoarray-input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Algorithms/twoarray/twoarray-input -------------------------------------------------------------------------------- /jhu-code/Algorithms/twoarray/twoarray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Algorithms/twoarray/twoarray.java -------------------------------------------------------------------------------- /jhu-code/ComputerOrg/LotteryJackpotOdds-msass.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/ComputerOrg/LotteryJackpotOdds-msass.asm -------------------------------------------------------------------------------- /jhu-code/ComputerOrg/RomeToArabia.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/ComputerOrg/RomeToArabia.asm -------------------------------------------------------------------------------- /jhu-code/Cryptology/ElGamalDecrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/ElGamalDecrypt.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/ElGamalSameK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/ElGamalSameK.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/autokey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/autokey.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/des.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/diffiehellman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/diffiehellman.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/findephemeralkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/findephemeralkey.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/generatorz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/generatorz.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/merklehellman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/merklehellman.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/moduloinversetester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/moduloinversetester.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/problem1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/problem1.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/rsaCommonModulusDecryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/rsaCommonModulusDecryption.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/rsadecrypt6-13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/rsadecrypt6-13.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/squareandmultiply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/squareandmultiply.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/substitution-decrypter/ngramfinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/substitution-decrypter/ngramfinder.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/substitution-decrypter/substitutioncipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/substitution-decrypter/substitutioncipher.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/vigenerehelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/vigenerehelper.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/vigneremod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/vigneremod.py -------------------------------------------------------------------------------- /jhu-code/Cryptology/xeuclid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/Cryptology/xeuclid.py -------------------------------------------------------------------------------- /jhu-code/DataStructures/Hanoi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/DataStructures/Hanoi.java -------------------------------------------------------------------------------- /jhu-code/DataStructures/HuffmanET.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/DataStructures/HuffmanET.java -------------------------------------------------------------------------------- /jhu-code/DataStructures/PostFixEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/DataStructures/PostFixEvaluator.java -------------------------------------------------------------------------------- /jhu-code/DataStructures/PostFixEvaluator2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/DataStructures/PostFixEvaluator2.java -------------------------------------------------------------------------------- /jhu-code/DataStructures/Sorting/Generator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/DataStructures/Sorting/Generator.java -------------------------------------------------------------------------------- /jhu-code/DataStructures/Sorting/Heapsort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/DataStructures/Sorting/Heapsort.java -------------------------------------------------------------------------------- /jhu-code/DataStructures/Sorting/Quicksort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/DataStructures/Sorting/Quicksort.java -------------------------------------------------------------------------------- /jhu-code/DataStructures/Sorting/Reverser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/DataStructures/Sorting/Reverser.java -------------------------------------------------------------------------------- /jhu-code/DataStructures/Sorting/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/DataStructures/Sorting/readme.txt -------------------------------------------------------------------------------- /jhu-code/RTOS/Arduino/fan/fan.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/RTOS/Arduino/fan/fan.ino -------------------------------------------------------------------------------- /jhu-code/RTOS/Arduino/i2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/RTOS/Arduino/i2c.py -------------------------------------------------------------------------------- /jhu-code/RTOS/Arduino/i2cscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/RTOS/Arduino/i2cscript.py -------------------------------------------------------------------------------- /jhu-code/RTOS/Arduino/rawdata.ino/rawdata.ino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/RTOS/Arduino/rawdata.ino/rawdata.ino.ino -------------------------------------------------------------------------------- /jhu-code/RTOS/Arduino/simpletest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/RTOS/Arduino/simpletest.py -------------------------------------------------------------------------------- /jhu-code/RTOS/Arduino/sketch_feb09a/sketch_feb09a.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/RTOS/Arduino/sketch_feb09a/sketch_feb09a.ino -------------------------------------------------------------------------------- /jhu-code/RTOS/Arduino/tempsensor/tempsensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/jhu-code/RTOS/Arduino/tempsensor/tempsensor.ino -------------------------------------------------------------------------------- /resources/IndieSec.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/IndieSec.csv -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/README.md -------------------------------------------------------------------------------- /resources/SecurityBookmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/SecurityBookmarks.html -------------------------------------------------------------------------------- /resources/burpconfig-projectoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/burpconfig-projectoptions.json -------------------------------------------------------------------------------- /resources/burpconfig-useroptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/burpconfig-useroptions.json -------------------------------------------------------------------------------- /resources/indiesec/indiesec-batch-5-1-2024.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/indiesec/indiesec-batch-5-1-2024.csv -------------------------------------------------------------------------------- /resources/indiesec/indiesec-completelist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/indiesec/indiesec-completelist.csv -------------------------------------------------------------------------------- /resources/indiesec/readme.md: -------------------------------------------------------------------------------- 1 | # Indiesec 2 | -------------------------------------------------------------------------------- /resources/nessus-weapon-inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/nessus-weapon-inventory -------------------------------------------------------------------------------- /resources/shellsharks-blogroll.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/shellsharks-blogroll.opml -------------------------------------------------------------------------------- /resources/shellsharks-feedly-rss.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/shellsharks-feedly-rss.opml -------------------------------------------------------------------------------- /resources/terminatorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/terminatorconfig -------------------------------------------------------------------------------- /resources/trike-actor-asset-action-matrix.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/trike-actor-asset-action-matrix.xlsx -------------------------------------------------------------------------------- /resources/trike-risk-calculator.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/resources/trike-risk-calculator.xlsx -------------------------------------------------------------------------------- /shellsharks/S3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/S3.py -------------------------------------------------------------------------------- /shellsharks/YEAR-MONTH-DAY-draft-article-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/YEAR-MONTH-DAY-draft-article-name.md -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/attack-tree-extra.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/attack-tree-extra.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/attack-tree.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/attack-tree.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/data-flow-diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/data-flow-diagram.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/diamond-model.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/diamond-model.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/id3.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/id3.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/iddilatc.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/iddilatc.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/nist-threat-model-process-flow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/nist-threat-model-process-flow.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/octave-phases.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/octave-phases.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/owasp-threat-modeling-process.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/owasp-threat-modeling-process.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/pasta-threat-model.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/pasta-threat-model.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/qtmm-htmm-process-flow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/qtmm-htmm-process-flow.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/security-cards.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/security-cards.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/tara-assessment-workflow.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/tara-assessment-workflow.drawio -------------------------------------------------------------------------------- /shellsharks/tm-rsrc/threatmodel.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/shellsharks/tm-rsrc/threatmodel.drawio -------------------------------------------------------------------------------- /storage/Vlc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/storage/Vlc.zip -------------------------------------------------------------------------------- /storage/video.ty+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellsharks/assorted/HEAD/storage/video.ty+ --------------------------------------------------------------------------------